diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d343b50a5c..22998605be 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -4,3 +4,9 @@ /discord/ext/testing/ @Pycord-Development/maintain-tests /discord/ext/bridge/ @Pycord-Development/maintain-ext-bridge /.github/ @Pycord-Development/project-leads +/docs/locales/ @Pycord-Dvelopment/maintain-translations +/docs/build/locales/ @Pycord-Dvelopment/maintain-translations +/.github/workflows/docs-localization-download.yml @Pycord-Dvelopment/maintain-translations +/.github/workflows/docs-localization-upload.yml @Pycord-Dvelopment/maintain-translations +/crowdin.yml @Pycord-Dvelopment/maintain-translations +/requirements/_locale.txt @Pycord-Dvelopment/maintain-translations diff --git a/.github/workflows/docs-localization-download.yml b/.github/workflows/docs-localization-download.yml new file mode 100644 index 0000000000..b6621c68d6 --- /dev/null +++ b/.github/workflows/docs-localization-download.yml @@ -0,0 +1,54 @@ +name: Multilingual Docs Download + +on: + workflow_dispatch: + +jobs: + localizse: + permissions: write-all + name: "Localisize Docs" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: "Install Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/_locale.txt" + - name: "Install Dependencies" + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements/_locale.txt + pip install .[speed,voice,docs] + - name: "Get locales" + run: | + make html + sphinx-build -b gettext . ./build/locales + working-directory: ./docs + - name: "Build locales" + run: + sphinx-intl update -p ./build/locales -l de -l ja -l de -l ja -l fr -l it -l + hi -l ko -l pt -l es -l zh + working-directory: ./docs + - name: "Crowdin" + uses: crowdin/github-action@v2 + with: + upload_sources: false + upload_translations: false + download_translations: false + download_bundle: ${{ secrets.CROWDIN_BUNDLE_ID }} + localization_branch_name: l10n_master + create_pull_request: true + pull_request_title: "New Crowdin Translations" + pull_request_body: + "New Crowdin translations by [Crowdin GH + Action](https://github.com/crowdin/github-action)" + pull_request_base_branch_name: "master" + pull_request_reviewers: "Lulalaby" + config: "crowdin.yml" + base_path: "." + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} diff --git a/.github/workflows/docs-localization-upload.yml b/.github/workflows/docs-localization-upload.yml new file mode 100644 index 0000000000..c332d85267 --- /dev/null +++ b/.github/workflows/docs-localization-upload.yml @@ -0,0 +1,48 @@ +name: Multilingual Docs Upload + +on: + push: + branches: + - master + +jobs: + localizse: + permissions: write-all + name: "Localisize Docs" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: "Install Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/_locale.txt" + - name: "Install Dependencies" + run: | + python -m pip install --upgrade pip setuptools wheel + pip install -r requirements/_locale.txt + pip install .[speed,voice,docs] + - name: "Get locales" + run: | + make html + sphinx-build -b gettext . ./build/locales + working-directory: ./docs + - name: "Build locales" + run: + sphinx-intl update -p ./build/locales -l de -l ja -l de -l ja -l fr -l it -l + hi -l ko -l pt -l es -l zh + working-directory: ./docs + - name: "Crowdin" + uses: crowdin/github-action@v2 + with: + upload_sources: true + upload_translations: false + download_translations: false + localization_branch_name: l10n_master + create_pull_request: false + config: "crowdin.yml" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8daaed7da9..2e442bf523 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,7 +58,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.9" + python-version: "3.12" cache: "pip" cache-dependency-path: "requirements/docs.txt" check-latest: true diff --git a/.github/workflows/todo.yml b/.github/workflows/todo.yml index 08271e51e8..a8cbaf6e17 100644 --- a/.github/workflows/todo.yml +++ b/.github/workflows/todo.yml @@ -13,3 +13,4 @@ jobs: SHA: ${{ github.sha }} REF: ${{ github.ref }} COMMENT_ON_ISSUES: true + EXCLUDE_PATTERN: "\\.(doctree|doctrees|pickle)$" diff --git a/.github/workflows/version-updates.yml b/.github/workflows/version-updates.yml index f98f1f34ed..bc604c0b4e 100644 --- a/.github/workflows/version-updates.yml +++ b/.github/workflows/version-updates.yml @@ -8,7 +8,7 @@ permissions: jobs: auto-merge: runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} + if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'crowdin-bot' }} steps: - run: gh pr review --approve "$PR_URL" env: diff --git a/.gitignore b/.gitignore index f45b1f8803..d6f1a4d460 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,8 @@ __pycache__/ # Distribution / packaging .Python -build/ +./build/ +./_build/ develop-eggs/ dist/ downloads/ @@ -51,10 +52,6 @@ coverage.xml .pytest_cache/ cover/ -# Translations -*.mo -*.pot - # Django stuff: *.log local_settings.py @@ -165,17 +162,16 @@ cython_debug/ *.egg-info .venv/ docs/_build -docs/crowdin.py *.buildinfo -*.mp3 -*.m4a -*.wav -*.mp4 -*.ogg -*.pcm -*.png -*.jpg -*.flac +!*.mp3 +!*.m4a +!*.wav +!*.mp4 +!*.ogg +!*.pcm +!*.png +!*.jpg +!*.flac .vs/ .DS_Store __pycache__ @@ -186,3 +182,12 @@ node_modules/* # changelog is autogenerated from CHANGELOG.md docs/changelog.md + +# Translations +docs/build/html +docs/build/doctrees +!docs/build/locales/* +*.mo +!docs/locales/* +/build/ +/vscode/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ab0e6556f8..fdad35f6b2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -7,7 +7,9 @@ repos: rev: v4.6.0 hooks: - id: trailing-whitespace + exclude: \.(po|pot)$ - id: end-of-file-fixer + exclude: \.(po|pot)$ - repo: https://github.com/PyCQA/autoflake rev: v2.3.1 hooks: @@ -19,19 +21,21 @@ repos: # - --remove-duplicate-keys # - --remove-unused-variables - repo: https://github.com/asottile/pyupgrade - rev: v3.16.0 + rev: v3.17.0 hooks: - id: pyupgrade - args: [--py38-plus] + exclude: \.(po|pot)$ - repo: https://github.com/PyCQA/isort rev: 5.13.2 hooks: - id: isort + exclude: \.(po|pot)$ - repo: https://github.com/psf/black - rev: 24.4.2 + rev: 24.8.0 hooks: - id: black args: [--safe, --quiet] + exclude: \.(po|pot)$ - repo: https://github.com/Pierre-Sassoulas/black-disable-checker rev: v1.1.3 hooks: @@ -81,10 +85,12 @@ repos: hooks: - id: prettier args: [--prose-wrap=always, --print-width=88] + exclude: \.(po|pot)$ - repo: https://github.com/DanielNoord/pydocstringformatter rev: v0.7.3 hooks: - id: pydocstringformatter + exclude: \.(po|pot)$ args: [ --style=numpydoc, diff --git a/.readthedocs.yml b/.readthedocs.yml index 936af78043..7113eb48e6 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,7 +4,7 @@ formats: [] build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.12" sphinx: configuration: docs/conf.py diff --git a/README.rst b/README.rst index 12df2893f8..6e5f22329f 100644 --- a/README.rst +++ b/README.rst @@ -16,6 +16,9 @@ Pycord .. image:: https://img.shields.io/github/v/release/Pycord-Development/pycord?include_prereleases&label=Latest%20Release&logo=github&sort=semver&style=for-the-badge&logoColor=white :target: https://github.com/Pycord-Development/pycord/releases :alt: Latest release +.. image:: https://badges.crowdin.net/badge/dark/crowdin-on-light.png + :target: https://crowdin.com/?utm_source=badge&utm_medium=referral&utm_campaign=badge-add-on + :alt: Crowdin | Agile localization for tech companies A fork of discord.py. Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. @@ -141,3 +144,9 @@ Useful Links - `Learn how to create Discord bots with Pycord `_ - `Our Official Discord Server `_ - `Official Discord Developers Server `_ + +Translations +------------ + +.. image:: https://badges.awesome-crowdin.com/translation-200034237-5.png + :alt: Translation Status diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 0000000000..1823ae0b61 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,19 @@ +base_path: "docs/build/locales" +base_url: "https://pycord.crowdin.com" + +preserve_hierarchy: true + +commit_message: "docs: Update translations" + +export_languages: ["de", "ja", "fr", "it", "hi", "ko", "pt-BR", "es-ES", "zh-CN"] + +bundles: + - 4 + +files: + [ + { + source: "**/*.pot", + translation: "/docs/locales/%two_letters_code%/LC_MESSAGES/%original_path%/%file_name%.po", + }, + ] diff --git a/discord/audit_logs.py b/discord/audit_logs.py index 5031942e95..7497e8c37a 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -213,7 +213,7 @@ class AuditLogDiff: def __len__(self) -> int: return len(self.__dict__) - def __iter__(self) -> Generator[tuple[str, Any], None, None]: + def __iter__(self) -> Generator[tuple[str, Any]]: yield from self.__dict__.items() def __repr__(self) -> str: diff --git a/discord/bot.py b/discord/bot.py index a81825b494..6ecc921f5c 100644 --- a/discord/bot.py +++ b/discord/bot.py @@ -1051,7 +1051,7 @@ def inner(cls: type[SlashCommandGroup]) -> SlashCommandGroup: slash_group = group - def walk_application_commands(self) -> Generator[ApplicationCommand, None, None]: + def walk_application_commands(self) -> Generator[ApplicationCommand]: """An iterator that recursively walks through all application commands and subcommands. Yields diff --git a/discord/client.py b/discord/client.py index 1fc004f35b..7f13696f6f 100644 --- a/discord/client.py +++ b/discord/client.py @@ -1041,7 +1041,7 @@ def get_poll(self, id: int, /) -> Poll | None: """ return self._connection.get_poll(id) - def get_all_channels(self) -> Generator[GuildChannel, None, None]: + def get_all_channels(self) -> Generator[GuildChannel]: """A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'. This is equivalent to: :: @@ -1065,7 +1065,7 @@ def get_all_channels(self) -> Generator[GuildChannel, None, None]: for guild in self.guilds: yield from guild.channels - def get_all_members(self) -> Generator[Member, None, None]: + def get_all_members(self) -> Generator[Member]: """Returns a generator with every :class:`.Member` the client can see. This is equivalent to: :: diff --git a/discord/cog.py b/discord/cog.py index 4f064edb26..e23def38e2 100644 --- a/discord/cog.py +++ b/discord/cog.py @@ -346,7 +346,7 @@ def description(self) -> str: def description(self, description: str) -> None: self.__cog_description__ = description - def walk_commands(self) -> Generator[ApplicationCommand, None, None]: + def walk_commands(self) -> Generator[ApplicationCommand]: """An iterator that recursively walks through this cog's commands and subcommands. Yields diff --git a/discord/commands/core.py b/discord/commands/core.py index c1093351d9..9212e76bed 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -1513,7 +1513,7 @@ async def call_after_hooks(self, ctx: ApplicationContext) -> None: else: await self._after_invoke(ctx) # type: ignore - def walk_commands(self) -> Generator[SlashCommand | SlashCommandGroup, None, None]: + def walk_commands(self) -> Generator[SlashCommand | SlashCommandGroup]: """An iterator that recursively walks through all slash commands and groups in this group. Yields diff --git a/discord/ext/commands/cog.py b/discord/ext/commands/cog.py index 570609d9a2..871d3e816e 100644 --- a/discord/ext/commands/cog.py +++ b/discord/ext/commands/cog.py @@ -50,7 +50,7 @@ def __new__(cls: type[CogT], *args: Any, **kwargs: Any) -> CogT: # To do this, we need to interfere with the Cog creation process. return super().__new__(cls) - def walk_commands(self) -> Generator[Command, None, None]: + def walk_commands(self) -> Generator[Command]: """An iterator that recursively walks through this cog's commands and subcommands. Yields diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 1f876f175d..992ba05956 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1326,7 +1326,7 @@ def remove_command(self, name: str) -> Command[CogT, Any, Any] | None: self.prefixed_commands[alias] = cmd return command - def walk_commands(self) -> Generator[Command[CogT, Any, Any], None, None]: + def walk_commands(self) -> Generator[Command[CogT, Any, Any]]: """An iterator that recursively walks through all commands and subcommands. .. versionchanged:: 1.4 diff --git a/discord/oggparse.py b/discord/oggparse.py index 9cc0025bf1..4901c38b77 100644 --- a/discord/oggparse.py +++ b/discord/oggparse.py @@ -74,7 +74,7 @@ def __init__(self, stream: IO[bytes]) -> None: except Exception: raise OggError("bad data stream") from None - def iter_packets(self) -> Generator[tuple[bytes, bool], None, None]: + def iter_packets(self) -> Generator[tuple[bytes, bool]]: packetlen = offset = 0 partial = True @@ -106,13 +106,13 @@ def _next_page(self) -> OggPage | None: else: raise OggError("invalid header magic") - def _iter_pages(self) -> Generator[OggPage, None, None]: + def _iter_pages(self) -> Generator[OggPage]: page = self._next_page() while page: yield page page = self._next_page() - def iter_packets(self) -> Generator[bytes, None, None]: + def iter_packets(self) -> Generator[bytes]: partial = b"" for page in self._iter_pages(): for data, complete in page.iter_packets(): diff --git a/docs/Makefile b/docs/Makefile index b46de8d972..3c42e15882 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -5,7 +5,7 @@ SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = -BUILDDIR = _build +BUILDDIR = build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) diff --git a/docs/_static/js/scorer.js b/docs/_static/js/scorer.js deleted file mode 100644 index a0f50cb083..0000000000 --- a/docs/_static/js/scorer.js +++ /dev/null @@ -1,82 +0,0 @@ -"use-strict"; - -let queryBeingDone = null; -let pattern = null; - -const escapedRegex = /[-\/\\^$*+?.()|[\]{}]/g; -function escapeRegex(e) { - return e.replace(escapedRegex, "\\$&"); -} - -// for some reason Sphinx shows some entries twice -// if something has been scored already I'd rather sort it to the bottom -const beenScored = new Set(); - -function __score(haystack, regex) { - let match = regex.exec(haystack); - if (match == null) { - return Number.MAX_VALUE; - } - let subLength = match[0].length; - let start = match.index; - return (subLength * 1000 + start) / 1000.0; -} - -// unused for now -function __cleanNamespaces(query) { - return query.replace(/(discord\.(ext\.)?)?(.+)/, "$3"); -} - -Scorer = { - // Implement the following function to further tweak the score for each result - // The function takes a result array [filename, title, anchor, descr, score] - // and returns the new score. - score: (result) => { - // only inflate the score of things that are actual API reference things - const [, title, , , score] = result; - - if (pattern !== null && title.startsWith("discord.")) { - let _score = __score(title, pattern); - if (_score === Number.MAX_VALUE) { - return score; - } - if (beenScored.has(title)) { - return 0; - } - beenScored.add(title); - let newScore = 100 + queryBeingDone.length - _score; - // console.log(`${title}: ${score} -> ${newScore} (${_score})`); - return newScore; - } - return score; - }, - - // query matches the full name of an object - objNameMatch: 15, - // or matches in the last dotted part of the object name - objPartialMatch: 11, - // Additive scores depending on the priority of the object - objPrio: { - 0: 15, // used to be importantResults - 1: 7, // used to be objectResults - 2: -5, // used to be unimportantResults - }, - // Used when the priority is not in the mapping. - objPrioDefault: 0, - - // query found in title - title: 15, - partialTitle: 7, - // query found in terms - term: 5, - partialTerm: 2, -}; - -document.addEventListener("DOMContentLoaded", () => { - const params = new URLSearchParams(window.location.search); - queryBeingDone = params.get("q"); - if (queryBeingDone) { - let pattern = Array.from(queryBeingDone).map(escapeRegex).join(".*?"); - pattern = new RegExp(pattern, "i"); - } -}); diff --git a/docs/build/locales/.doctrees/api/abcs.doctree b/docs/build/locales/.doctrees/api/abcs.doctree new file mode 100644 index 0000000000..5236a395f6 Binary files /dev/null and b/docs/build/locales/.doctrees/api/abcs.doctree differ diff --git a/docs/build/locales/.doctrees/api/application_commands.doctree b/docs/build/locales/.doctrees/api/application_commands.doctree new file mode 100644 index 0000000000..4defa1948a Binary files /dev/null and b/docs/build/locales/.doctrees/api/application_commands.doctree differ diff --git a/docs/build/locales/.doctrees/api/application_info.doctree b/docs/build/locales/.doctrees/api/application_info.doctree new file mode 100644 index 0000000000..e00baed7f3 Binary files /dev/null and b/docs/build/locales/.doctrees/api/application_info.doctree differ diff --git a/docs/build/locales/.doctrees/api/async_iter.doctree b/docs/build/locales/.doctrees/api/async_iter.doctree new file mode 100644 index 0000000000..d46e0c7089 Binary files /dev/null and b/docs/build/locales/.doctrees/api/async_iter.doctree differ diff --git a/docs/build/locales/.doctrees/api/audit_logs.doctree b/docs/build/locales/.doctrees/api/audit_logs.doctree new file mode 100644 index 0000000000..293307e472 Binary files /dev/null and b/docs/build/locales/.doctrees/api/audit_logs.doctree differ diff --git a/docs/build/locales/.doctrees/api/clients.doctree b/docs/build/locales/.doctrees/api/clients.doctree new file mode 100644 index 0000000000..8541c17476 Binary files /dev/null and b/docs/build/locales/.doctrees/api/clients.doctree differ diff --git a/docs/build/locales/.doctrees/api/cogs.doctree b/docs/build/locales/.doctrees/api/cogs.doctree new file mode 100644 index 0000000000..7b48dfe377 Binary files /dev/null and b/docs/build/locales/.doctrees/api/cogs.doctree differ diff --git a/docs/build/locales/.doctrees/api/data_classes.doctree b/docs/build/locales/.doctrees/api/data_classes.doctree new file mode 100644 index 0000000000..85b242ed30 Binary files /dev/null and b/docs/build/locales/.doctrees/api/data_classes.doctree differ diff --git a/docs/build/locales/.doctrees/api/enums.doctree b/docs/build/locales/.doctrees/api/enums.doctree new file mode 100644 index 0000000000..52bdcda0ae Binary files /dev/null and b/docs/build/locales/.doctrees/api/enums.doctree differ diff --git a/docs/build/locales/.doctrees/api/events.doctree b/docs/build/locales/.doctrees/api/events.doctree new file mode 100644 index 0000000000..775aeacc8d Binary files /dev/null and b/docs/build/locales/.doctrees/api/events.doctree differ diff --git a/docs/build/locales/.doctrees/api/exceptions.doctree b/docs/build/locales/.doctrees/api/exceptions.doctree new file mode 100644 index 0000000000..5a5ba2fac8 Binary files /dev/null and b/docs/build/locales/.doctrees/api/exceptions.doctree differ diff --git a/docs/build/locales/.doctrees/api/index.doctree b/docs/build/locales/.doctrees/api/index.doctree new file mode 100644 index 0000000000..af9de84aae Binary files /dev/null and b/docs/build/locales/.doctrees/api/index.doctree differ diff --git a/docs/build/locales/.doctrees/api/models.doctree b/docs/build/locales/.doctrees/api/models.doctree new file mode 100644 index 0000000000..83bd203039 Binary files /dev/null and b/docs/build/locales/.doctrees/api/models.doctree differ diff --git a/docs/build/locales/.doctrees/api/sinks.doctree b/docs/build/locales/.doctrees/api/sinks.doctree new file mode 100644 index 0000000000..91af5ab04d Binary files /dev/null and b/docs/build/locales/.doctrees/api/sinks.doctree differ diff --git a/docs/build/locales/.doctrees/api/ui_kit.doctree b/docs/build/locales/.doctrees/api/ui_kit.doctree new file mode 100644 index 0000000000..70742488e4 Binary files /dev/null and b/docs/build/locales/.doctrees/api/ui_kit.doctree differ diff --git a/docs/build/locales/.doctrees/api/utils.doctree b/docs/build/locales/.doctrees/api/utils.doctree new file mode 100644 index 0000000000..0ccc2fc710 Binary files /dev/null and b/docs/build/locales/.doctrees/api/utils.doctree differ diff --git a/docs/build/locales/.doctrees/api/version_info.doctree b/docs/build/locales/.doctrees/api/version_info.doctree new file mode 100644 index 0000000000..d071def649 Binary files /dev/null and b/docs/build/locales/.doctrees/api/version_info.doctree differ diff --git a/docs/build/locales/.doctrees/api/voice.doctree b/docs/build/locales/.doctrees/api/voice.doctree new file mode 100644 index 0000000000..f72d8d0c9c Binary files /dev/null and b/docs/build/locales/.doctrees/api/voice.doctree differ diff --git a/docs/build/locales/.doctrees/api/webhooks.doctree b/docs/build/locales/.doctrees/api/webhooks.doctree new file mode 100644 index 0000000000..dc5bce7aad Binary files /dev/null and b/docs/build/locales/.doctrees/api/webhooks.doctree differ diff --git a/docs/build/locales/.doctrees/changelog.doctree b/docs/build/locales/.doctrees/changelog.doctree new file mode 100644 index 0000000000..436474b506 Binary files /dev/null and b/docs/build/locales/.doctrees/changelog.doctree differ diff --git a/docs/build/locales/.doctrees/cogs.doctree b/docs/build/locales/.doctrees/cogs.doctree new file mode 100644 index 0000000000..807deffdf9 Binary files /dev/null and b/docs/build/locales/.doctrees/cogs.doctree differ diff --git a/docs/build/locales/.doctrees/discord.doctree b/docs/build/locales/.doctrees/discord.doctree new file mode 100644 index 0000000000..60f49e24dc Binary files /dev/null and b/docs/build/locales/.doctrees/discord.doctree differ diff --git a/docs/build/locales/.doctrees/environment.pickle b/docs/build/locales/.doctrees/environment.pickle new file mode 100644 index 0000000000..d7f0a37792 Binary files /dev/null and b/docs/build/locales/.doctrees/environment.pickle differ diff --git a/docs/build/locales/.doctrees/ext/bridge/api.doctree b/docs/build/locales/.doctrees/ext/bridge/api.doctree new file mode 100644 index 0000000000..5c50355cd2 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/bridge/api.doctree differ diff --git a/docs/build/locales/.doctrees/ext/bridge/index.doctree b/docs/build/locales/.doctrees/ext/bridge/index.doctree new file mode 100644 index 0000000000..34d8bd94d5 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/bridge/index.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/api.doctree b/docs/build/locales/.doctrees/ext/commands/api.doctree new file mode 100644 index 0000000000..1bf9b4db88 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/commands/api.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/cogs.doctree b/docs/build/locales/.doctrees/ext/commands/cogs.doctree new file mode 100644 index 0000000000..92f4f68e4b Binary files /dev/null and b/docs/build/locales/.doctrees/ext/commands/cogs.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/commands.doctree b/docs/build/locales/.doctrees/ext/commands/commands.doctree new file mode 100644 index 0000000000..fbb6f33018 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/commands/commands.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/extensions.doctree b/docs/build/locales/.doctrees/ext/commands/extensions.doctree new file mode 100644 index 0000000000..20e7f6acc5 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/commands/extensions.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/index.doctree b/docs/build/locales/.doctrees/ext/commands/index.doctree new file mode 100644 index 0000000000..c90b2f955b Binary files /dev/null and b/docs/build/locales/.doctrees/ext/commands/index.doctree differ diff --git a/docs/build/locales/.doctrees/ext/pages/index.doctree b/docs/build/locales/.doctrees/ext/pages/index.doctree new file mode 100644 index 0000000000..55c1405c39 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/pages/index.doctree differ diff --git a/docs/build/locales/.doctrees/ext/tasks/index.doctree b/docs/build/locales/.doctrees/ext/tasks/index.doctree new file mode 100644 index 0000000000..15952c3f47 Binary files /dev/null and b/docs/build/locales/.doctrees/ext/tasks/index.doctree differ diff --git a/docs/build/locales/.doctrees/faq.doctree b/docs/build/locales/.doctrees/faq.doctree new file mode 100644 index 0000000000..e20b52ab84 Binary files /dev/null and b/docs/build/locales/.doctrees/faq.doctree differ diff --git a/docs/build/locales/.doctrees/index.doctree b/docs/build/locales/.doctrees/index.doctree new file mode 100644 index 0000000000..675c05adf3 Binary files /dev/null and b/docs/build/locales/.doctrees/index.doctree differ diff --git a/docs/build/locales/.doctrees/installing.doctree b/docs/build/locales/.doctrees/installing.doctree new file mode 100644 index 0000000000..d25edcff47 Binary files /dev/null and b/docs/build/locales/.doctrees/installing.doctree differ diff --git a/docs/build/locales/.doctrees/intents.doctree b/docs/build/locales/.doctrees/intents.doctree new file mode 100644 index 0000000000..ed9fa4c8e0 Binary files /dev/null and b/docs/build/locales/.doctrees/intents.doctree differ diff --git a/docs/build/locales/.doctrees/logging.doctree b/docs/build/locales/.doctrees/logging.doctree new file mode 100644 index 0000000000..1af0ecacd5 Binary files /dev/null and b/docs/build/locales/.doctrees/logging.doctree differ diff --git a/docs/build/locales/.doctrees/migrating_to_v1.doctree b/docs/build/locales/.doctrees/migrating_to_v1.doctree new file mode 100644 index 0000000000..8aee900061 Binary files /dev/null and b/docs/build/locales/.doctrees/migrating_to_v1.doctree differ diff --git a/docs/build/locales/.doctrees/migrating_to_v2.doctree b/docs/build/locales/.doctrees/migrating_to_v2.doctree new file mode 100644 index 0000000000..292fc63471 Binary files /dev/null and b/docs/build/locales/.doctrees/migrating_to_v2.doctree differ diff --git a/docs/build/locales/.doctrees/old_changelog.doctree b/docs/build/locales/.doctrees/old_changelog.doctree new file mode 100644 index 0000000000..05afa1e9f7 Binary files /dev/null and b/docs/build/locales/.doctrees/old_changelog.doctree differ diff --git a/docs/build/locales/.doctrees/quickstart.doctree b/docs/build/locales/.doctrees/quickstart.doctree new file mode 100644 index 0000000000..89615244de Binary files /dev/null and b/docs/build/locales/.doctrees/quickstart.doctree differ diff --git a/docs/build/locales/.doctrees/version_guarantees.doctree b/docs/build/locales/.doctrees/version_guarantees.doctree new file mode 100644 index 0000000000..be9a157f70 Binary files /dev/null and b/docs/build/locales/.doctrees/version_guarantees.doctree differ diff --git a/docs/build/locales/api/abcs.pot b/docs/build/locales/api/abcs.pot new file mode 100644 index 0000000000..16fbbcab01 --- /dev/null +++ b/docs/build/locales/api/abcs.pot @@ -0,0 +1,1263 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/abcs.rst:4 +#: eba096c79e094bb18465d6e9ff3678cf +msgid "Abstract Base Classes" +msgstr "" + +#: ../../api/abcs.rst:6 +#: ecffa9e27b0648238c9edfe6aa200df6 +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "" + +#: ../../api/abcs.rst:10 +#: bb28999fade743b6a174c2255757b009 +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Snowflake:1 +#: 4741c9654bd94685b8e9999b040bceb8 +msgid "An ABC that details the common operations on a Discord model." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Snowflake:3 +#: 47bea6eba12a4be891c27a511774e540 +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Snowflake:6 +#: 68f54081d0324c8f9a60a03121228419 +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Snowflake:11 +#: b48d28bcb8944448a302ec1728849ca1 +msgid "The model's unique ID." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:0 +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:0 +#: ../../../discord/abc.py:docstring of discord.abc.Snowflake:0 +#: ../../../discord/abc.py:docstring of discord.abc.User:0 +#: 0ee679abcb1c4b25b364befb02132adb +#: 16478c3543f84403bbfebe2cf3bdef50 +#: 066672777afe48e7b6b41fad1a12de64 +#: d8eede98a7ca45ea915927dc318de4d7 +#: f6df80c3f3ae47f7be4d5ada55e8d6dd +#: f85ce9cfcafa43e8b2b80a84c7b8cc6c +#: 0c86631d2d114c45bf1c165d105fb12e +#: d28c40e6890642de932360bf411ac494 +#: 1bafe7fad7964f38b1650c05822ee835 +#: b5cc4d4d66184893b35a75a892c300f0 +msgid "type" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:30 +#: ../../../discord/abc.py:docstring of discord.abc.Snowflake:13 +#: 7d2cfbf10de24809b10f59e074b942c1 +#: 5fae1913d1234d4da3cd77b627a1f629 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:1 +#: f476d58c613c4534abc37bc55a8f9d56 +msgid "An ABC that details the common operations on a Discord user." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Connectable:4 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:3 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:3 +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:3 +#: ../../../discord/abc.py:docstring of discord.abc.User:3 +#: 19e8ddb2cda941c3a30ca8850cb2ede7 +#: fb6cfafebb154551983f5af556cf1207 +#: 8befbe76d57647a3852a44b494c4ab44 +#: aba0180fb52b4fa5a21ed6608a3565a3 +#: 7ab357637db845ee9b87d385a8042b16 +msgid "The following implement this ABC:" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:10 +#: ../../../discord/abc.py:docstring of discord.abc.User:5 +#: 1d9d8cc193684ade90b957be4d0ba02b +#: 868d75a8b3c540dfaeff9ef186445cae +msgid ":class:`~discord.User`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:14 +#: ../../../discord/abc.py:docstring of discord.abc.User:6 +#: f4d5f92d7c904e11abae69a42643ceb9 +#: 206eb8b27cea4ecb9819a39a3e676154 +msgid ":class:`~discord.ClientUser`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:11 +#: ../../../discord/abc.py:docstring of discord.abc.User:7 +#: 3ac169cb9ed249fa97d87f2dda08a310 +#: c347cd4097e847ffbe940543abd9a768 +msgid ":class:`~discord.Member`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:11 +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:8 +#: ../../../discord/abc.py:docstring of discord.abc.User:9 +#: 55dafc24f36c42108379ba9621534719 +#: 8fc2b8cbc76642b594d6aed520962c34 +#: c3f82876a05b42f6b9f142abd42d440c +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:13 +#: 320a5745d7ef4dc3bddc68db57041ebc +msgid "The user's username." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:17 +#: ../../../discord/abc.py:docstring of discord.abc.User:15 +#: ../../../discord/abc.py:docstring of discord.abc.User:25 +#: ../../../discord/abc.py:docstring of discord.abc.User:33 +#: 9d83050e55374544aac91208fd9717c2 +#: 3b698b51590948fa87fc4141683b8fb0 +#: e9af1898d3c64b1f96af932c9b217551 +#: b9a9b156f455466c8b320984644c257e +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:19 +#: e78c45aef3ca431fbf8f309c887fc29f +msgid "The user's discriminator." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:23 +#: 73dd772201aa4748b316068b05957002 +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:29 +#: 62a458c9df53441eb015ac21dbe34fa6 +msgid "The user's global name." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:37 +#: f6f47d554883461dad161445c30916cf +msgid "The avatar asset the user has." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:39 +#: 9c5bd5888cf448da93b8a0153a44b233 +msgid ":class:`~discord.Asset`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User:43 +#: 881d7e60a8f54fbc984f3e9e4b366b02 +msgid "If the user is a bot account." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.can_send:4 +#: ../../../discord/abc.py:docstring of discord.abc.User:45 +#: 6803ab70e67446aba9dc35de91a33f48 +#: 07229964898b4b1e9cefda4c38d26e2b +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User.display_name:1 +#: bef028b1be27469588e3b8c6d6ff28a9 +msgid "Returns the user's display name." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.User.mention:1 +#: f4d6145bdb3f46f0b5b8abe16d25f8cd +msgid "Returns a string that allows you to mention the given user." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:1 +#: 9695a64a7cd84cca8c68f3f8a6e63b4b +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:8 +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:5 +#: f4e761a32f2b4fa293005967bb5b8876 +#: eb3f6696e98746a4b3bb06a7c593f16f +msgid ":class:`~discord.DMChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:9 +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:6 +#: 08b37c00170d4c158d05b2eac6301dc8 +#: 96b1ff47f3f74315b1a978afd462a4ab +msgid ":class:`~discord.GroupChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.PrivateChannel:12 +#: 522ecffdca534152a4deb8b05e5f346d +msgid "The user presenting yourself." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:1 +#: 492a04d7e12c4af4b00be2a3ea5fd3fe +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:5 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:5 +#: 5a75adff819f43ae87cfb42e1805b4a4 +#: c8804dd897f849f48691c36fc620a3ec +msgid ":class:`~discord.TextChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Connectable:6 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:6 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:6 +#: 2ef9d2cfbbc042adaafadf244b6a5b53 +#: c091a21e09614c85820c51243cc2bbd6 +#: a8e12520fc6a4be1bdbb3a81c26f9ee8 +msgid ":class:`~discord.VoiceChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:7 +#: 5da78147f5344fbaad7a4001cc44040d +msgid ":class:`~discord.CategoryChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Connectable:7 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:8 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:7 +#: 5b3700ea3b1849e6a06cf2af4caf90c3 +#: a982e135d8264dd3b151c14dd9a7cba1 +#: 488b0b469a564d86816765265e3b68ee +msgid ":class:`~discord.StageChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:9 +#: 16d6633c0f3542a1a41e7948325fa027 +msgid ":class:`~discord.ForumChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:15 +#: 4448a57c2a004e7d90cb0fdcad86f569 +msgid "The channel name." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:21 +#: 55cf37366ce440999ab4cd6f6581a820 +msgid "The guild the channel belongs to." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:23 +#: e12d19edd0734c218616a4df98ce6504 +msgid ":class:`~discord.Guild`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel:27 +#: ad6bcb47ccfc49a2b921875096d086fc +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.changed_roles:1 +#: 92a7be071e894a5082eb58bd4de4c891 +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.mention:1 +#: 4d559a5b43c34293b208f473e162cd40 +msgid "The string that allows you to mention the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.jump_url:1 +#: 40aba981504d4f568bee500d593152a9 +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.created_at:1 +#: 3b4fdc22e96e4ac39a90773db776db85 +msgid "Returns the channel's creation time in UTC." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites_for:1 +#: a709d1fb206e462c96fcfb98f7b1fabb +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../api/abcs.rst:0 +#: 3b20d94d071448afb0cbcba6c02e4d62 +#: a397ed5dee4e403b968a341016bfaff6 +#: 5e160138a0124ebfb2463589a38c520a +#: d939dcebd14648b9b876851182b079a2 +#: 66c20e4761ee48f487e2336799758e70 +#: 697615a7dc374833a2a4dc54e612d578 +#: ce1db15f4b774f6eb4047d5e0dc10eb7 +#: d0147bebe9a04d399c13c8a22b7256aa +#: f599952a5df34d498f5b7113811451b4 +#: 60a67e189f30413bb931557ae0d677e5 +msgid "Parameters" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites_for:4 +#: 7b5be37d473945f980d080501395944e +msgid "The role or user denoting whose overwrite to get." +msgstr "" + +#: ../../api/abcs.rst:0 +#: c1807c81320a4c4a9eea27db6d535110 +#: 2c633fc68b5748e1adfc9ec3aff4f8ed +#: 1d2679ae9f514304bd3579ef87f81507 +#: 8e507fe851d946d5a39bf30a61c1b560 +#: 8101933b7aca44b491e77ce2b88e718e +#: 65b08451ad3a43d093e03f3f5e7a55c6 +#: ef49855ea26e49d18e9c5f14cd4d5a2b +#: 0becae8c7a3343bfa74ee70d0bcf63fa +#: 66f37f1f6ffc4532b5e7767864a5222b +#: 9a9cab84cf46487ab80637c624490b36 +msgid "Returns" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites_for:8 +#: cbf2b10aa86a450aae949d4afbb72b83 +msgid "The permission overwrites for this object." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../api/abcs.rst:0 +#: bfd321f562164c8592b70e22b870cb1b +#: 6012b511381143e9ab71be1e7d0e2ec6 +#: 0c2690be6dc44bd99487721b1c473943 +#: ae7e9663432d4aa99ce5152a8849b58b +#: 6623b7471154462a8a89a38165cebaac +#: 11a136a4062b498a8539ad8c06771df5 +#: d748e7f595124a2caf29f95f0c884c4e +#: 7bcc922e527d44179d22772f6c16984f +#: 41f62d98c7404eabaebc4820fa6da3e6 +#: f458fbadecb448e38f1f3085d9edc8a6 +#: 65da9d2f771749c6870d5bc0e175f919 +#: 1da797b8dd684105852b0c651b5b1369 +#: 64aa35176668433594fbf6d7bb7a9b57 +#: 37f01e30f738487bbe95997ed7571b62 +msgid "Return type" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites_for:9 +#: e5ea510d86c149fcb18fa591625d5d07 +msgid ":class:`~discord.PermissionOverwrite`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites:1 +#: 90ad1cb5997e40b69c61f7457281e1de +msgid "Returns all of the channel's overwrites." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites:3 +#: 2bf4c5fafdf6429b84330957fb24ab01 +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites:7 +#: f15eda417e19494ea604c6f5770c6a45 +msgid "The channel's permission overwrites." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.overwrites:8 +#: 55f132c1266245bcb389221b13679775 +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.category:1 +#: 1db80abbda8a4911a7711ae56f513ab8 +msgid "The category this channel belongs to." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.category:3 +#: 5bbfc6c0820a44b3a0dd8f1df312d334 +msgid "If there is no category then this is ``None``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_synced:1 +#: eeffa71045734b85965aeb971081f6a3 +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_synced:4 +#: 1171e47cfc5a4f0791d740508bc37158 +msgid "If there is no category then this is ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:1 +#: 4fecc3795fa142dbb33ae3ca2d91327f +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:4 +#: cd4470a1d45d429a999e7b9f6ec55f49 +msgid "This function takes into consideration the following cases:" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:6 +#: 1de0c73c6d9143b9956741d16b697ecd +msgid "Guild owner" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:7 +#: c9503941e19b4afa99e57615839294ca +msgid "Guild roles" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:8 +#: 750911e7b8c44983a5c47f0ac5a700a5 +msgid "Channel overrides" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:9 +#: 528c11379a8d438ebb0b2de3e7891832 +msgid "Member overrides" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:11 +#: fc56ba9a38b84c8a875576b8cd474972 +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:14 +#: 38d1440864c84ffe9afa2a0b241b6135 +msgid "The default role permissions" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:15 +#: b5684951350d41eb8b164a4b8ebd41d9 +msgid "The permissions of the role used as a parameter" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:16 +#: b406f8eb396844c091af41fa29263d3d +msgid "The default role permission overwrites" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:17 +#: 6dfa8f8d44de4c9286669355380503ec +msgid "The permission overwrites of the role used as a parameter" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:19 +#: 8f5ce4ed137b4992bbba7cf650c6a546 +msgid "The object passed in can now be a role object." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:23 +#: 538dd64346cf4fcabbbb3e054d8ae27e +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:28 +#: 2743b663c2604ac99153b71658dd7955 +msgid "The resolved permissions for the member or role." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.permissions_for:29 +#: d160215e8fd0483b803e4feb607722fe +msgid ":class:`~discord.Permissions`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:1 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:1 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:1 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:1 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:1 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:1 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:1 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.pins:1 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:1 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.trigger_typing:1 +#: 5516007d80a04f27b710e8e89440c211 +#: 76535a41a98d42889332c5da6b2421a5 +#: c2c158e15aff478c90ebe68ed8119565 +#: 9321611b3f474e18a58779e48164f1d1 +#: 53afb5db720048589629b816ddb03782 +#: 68a664b278c7485c8e45e152218a4c8e +#: fc11191cacf3443f913a5bd69d919a77 +#: db09d175309e4f788bdd7945b1d9f0c6 +#: 0c2bd17b81764ad9b602a4bcf46e7adb +#: 00f7634217064d6295a6924fadd26f6d +msgid "|coro|" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:3 +#: 8d7099b6e32a4784bfd22162bb7f12a4 +msgid "Deletes the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:5 +#: 9283174a29fe4cd3a999cbe16e91c338 +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:8 +#: c0a16afcdf024c34870bd9610e6ec5a7 +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../api/abcs.rst:0 +#: 72d120a0412a4abc8b158e77726150f2 +#: f18991acfb0a458899f3d2977c2c26ef +#: cb61738138474c3093f076891a253869 +#: 31de3a885a3e42c387e130575ac07bf7 +#: c41fe790e3f04807b5d5eea4918ecbda +#: 0e8239ac7ddc4e048eb60772728e419d +#: c4357f7a3367410786087828206f5204 +#: bc1f6f8dfabf4e2bbd3ad10f31bd169c +#: 5448d7297cf24ec3b2d30012a69f357a +#: c5942183ac1b422d874ef5456324b188 +#: 989d13fe26cf462bafcec9e32b983161 +msgid "Raises" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:12 +#: a49551604bb2441d8e393e9f3af5e9da +msgid "You do not have proper permissions to delete the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:13 +#: 63d9b0eca3194eed86f22730f97e7150 +msgid "The channel was not found or was already deleted." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:14 +#: 9cd0a14d775240ffb2a793071bf27195 +msgid "Deleting the channel failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.delete:16 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:51 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.trigger_typing:8 +#: 1556d0b7324e43e59611bd803079f548 +#: 9208896e58034a57b97105d1329b9793 +#: 2aadba38a10941c69fa83833c49a1a92 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:3 +#: b8f02982c07e44c5bbb8db8be80671cd +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:6 +#: 7dcca40512ec450194ea16cf8c9a7a4b +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:9 +#: 871aaa962e9b4e968d2de6add1cee24c +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:15 +#: c620b3a1289d4243818bf61b2723c7b6 +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:18 +#: 36fce7cdc7e14f338aade9cbe9b4867a +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:22 +#: 6fc26ef2306144f6959be12618f1cd4b +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:25 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:39 +#: b3123c1220764f4a8b84f628beded5d3 +#: 1c3537f7b30748c58ac9d43193c9f927 +msgid "Examples" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:26 +#: 7c968c31b8d04886bfe002b8e3bdae48 +msgid "Setting allow and deny: ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:31 +#: fb8414d061584b7588c4e86d1e578aca +msgid "Deleting overwrites ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:35 +#: 3defedc1bafe4560bc9af54a32898c5d +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:43 +#: 485de860e7344ec187d3a688a62de855 +msgid "The member or role to overwrite permissions for." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:46 +#: 8c40fdfce8134dc59ff5c6679a00d902 +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:50 +#: e7f7d10378184b0aaa47718a1e093c10 +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:53 +#: 939f5bb4041f4e0b9fcdf458e14897dc +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:56 +#: f63a735d3a4d4034b9438307d367dc88 +msgid "You do not have permissions to edit channel specific permissions." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:57 +#: 6c0304de1eeb4b0e81657a73cb4e95a8 +msgid "Editing channel specific permissions failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:58 +#: 494eb950335d4e05a041da8532184f22 +msgid "The role or member being edited is not part of the guild." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.set_permissions:59 +#: 5778c3b54842442fac40cd6ba0c908d4 +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:3 +#: b4e299b0812040b6839744affa65da33 +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:6 +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:7 +#: 2f18c9d119994ab8a883fcf5443ea905 +#: c779e7a36d1843dcbe3974bd0e3a4bdf +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:12 +#: 360c43d24fa74755bda0102e63a76cff +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:16 +#: b2f146eeab2f4f11807d42190f8a89cc +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:19 +#: d367046630b7470d9c8d06bb32180838 +msgid "The channel that was created." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:20 +#: de39b87932bf438db36166200b73139d +msgid ":class:`.abc.GuildChannel`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:22 +#: cb28f80aab9c490187e2c98c048c7820 +msgid "You do not have the proper permissions to create this channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.clone:23 +#: 250258f74b3c4ed08624a53468130d36 +msgid "Creating the channel failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:3 +#: 4773012fadba4dbcb8942054ed8c5ad9 +msgid "A rich interface to help move a channel relative to other channels." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:5 +#: 9c635d863bd24468856063b882cad9c4 +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:12 +#: e2c4c9ea9a9648518842d72f4c9c8dff +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:17 +#: b882cc51a7ad474681af109780a81703 +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:21 +#: f53f0ae69f4e4c8493fb10007349ad2c +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:25 +#: bb849b4f9a6840e1b6342329b8447c97 +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:28 +#: f166889e839547cfaef7ac191f9ebb72 +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:31 +#: 3cb8ec6f605a4b6d8760ec5acaf9e5fe +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:38 +#: 985bb6762b4846608c9fdee1eb2d3130 +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:42 +#: e4f1bd9df7254ee79c53f425e8660c97 +msgid "Whether to sync the permissions with the category (if given)." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:44 +#: acd13dc38b3a4b30bd06f2d26ef753ff +msgid "The reason for the move." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:47 +#: aa669646fb7f4579ab583200bde6fa6d +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:48 +#: 15f0f73fe34443ed9e6d76844242705f +msgid "You do not have permissions to move the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.move:49 +#: a0847e6cc4554dd98733b963fc276acf +msgid "Moving the channel failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:3 +#: f02edcc48c864d91a36b513454558dd6 +msgid "Creates an instant invite from a text or voice channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:5 +#: 34adcc82842045da90a6cfd749c610ea +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:9 +#: 4eb6418694f1494283948d66ac960704 +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:13 +#: 07a8460c4fe9448bb3db83bcb6d018d3 +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:17 +#: 11951229c921453caee1f5675104dcba +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:21 +#: a86de9b685ad42ffa90d9ea0270d6cfd +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:26 +#: 171e94fa826649ab8ad94306ea899c77 +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:29 +#: 12fd38ebd4204bf78f629058406087af +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:29 +#: 15724914e5a945fabdaef1bc755d3124 +msgid "The type of target for the voice channel invite, if any." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:34 +#: fa0b61268b8141998a559ae6c1c0c5f9 +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:34 +#: dc382d48216649049091b622ec2e8f87 +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:40 +#: 1b1964c4a03941e3b7bce3f9c4f06ca3 +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:40 +#: 6ba3482efdb746bca8e28039741a9af2 +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:46 +#: 521736117c4242fba055232291762b15 +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:46 +#: b50d9e6892874d2aa4af1bdee1c3770a +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:49 +#: d7f1b2d7092744cb91950605410cae8e +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:55 +#: c1591d1610d248bd8ea0edea53adc715 +msgid "The invite that was created." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:56 +#: fb13c77b9ff04c5e974244df057a8dd4 +msgid ":class:`~discord.Invite`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:58 +#: 281a37e3d83f4183b84745a5b3b39845 +msgid "Invite creation failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.create_invite:59 +#: 0a2a328e0e6442da8b9d78b0bda608f3 +msgid "The channel that was passed is a category or an invalid channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:3 +#: 3cdf4ff1dff745a9ae74cb84b01e3d21 +msgid "Returns a list of all active instant invites from this channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:5 +#: 871cbc7f5c6549e39dc2d06a60160091 +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:7 +#: 16959e08182541d5868181d88d2d5db9 +msgid "The list of invites that are currently active." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:8 +#: a19e94cde12044ef92a1a1fb63ab75e2 +msgid "List[:class:`~discord.Invite`]" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:10 +#: c7dcbacf8a4f4680867ff28e5816f535 +msgid "You do not have proper permissions to get the information." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.GuildChannel.invites:11 +#: 4be34f522adc4c8896cd32447b209027 +msgid "An error occurred while fetching the information." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:1 +#: dc4c7ad0c8ad4feca3d041e12eb7d777 +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:12 +#: f001d854c2194b5f851170ae75cb56c6 +msgid ":class:`~discord.ext.commands.Context`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:13 +#: d4a798d4e25a4aff902d032b4d6d0f37 +msgid ":class:`~discord.Thread`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable:14 +#: b4dda8ab4def475190eb4024614c47fe +msgid ":class:`~discord.ApplicationContext`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:1 +#: 8d2e215bc6854b1e8881b8e7b0be7886 +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:3 +#: db7fe24b56174ba88b9125364a39bcef +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:6 +#: 3be41d26fe6c4db691d0f996edd896cd +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:11 +#: e0043231e9594810ad87d803a3aff895 +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:16 +#: ff0bf9e08202470aa16b177a95f3b0b4 +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:21 +#: 092c37264fd94af1837bac3590cc8eac +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:28 +#: 4165af23ce0140a68f19a493053730ba +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: 330775df4db2489d90277342ad6022c7 +msgid "Yields" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:32 +#: e35f0d17cb834683a8458b8c6e4114fc +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:34 +#: 8349b412e06c40b48b2c0f6e024d4f2d +msgid "You do not have permissions to get channel message history." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:35 +#: af34c7e456e0477fbca5300f91c8e3e2 +msgid "The request to get message history failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:36 +#: 7ca3e15ee8da46e69208f4ceab5d85f5 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:40 +#: cc41fde924a646b2a66d6e1950f15cde +msgid "Usage ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:47 +#: 8fe09bfbadaa4e0d9f16f3d6de860f92 +msgid "Flattening into a list: ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:52 +#: 62bb3065f7c048abb84b05680ea83ed7 +msgid "All parameters are optional." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:1 +#: 9d11f981eddd4528981b271e6724cdbe +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:3 +#: 1ce571c393ad4909a237f0df41acf5ac +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:9 +#: 6d2c4668d8fc4cfda30eccbf8458acbf +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:12 +#: 05520cdec2f14434a84fe4504e8ae4e3 +msgid "Example Usage: ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:3 +#: 2d718f3d7f8a4088acdd3329b88a90e8 +msgid "Sends a message to the destination with the content given." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:5 +#: 873ac6c9a5b544c691bcf227c6664151 +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:9 +#: 4a6a164da91543aabab378380a1a18dd +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:14 +#: 71df7005611241afb3db54461fcbe060 +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:20 +#: b9ee3ce694294708b4db54d1df7bd691 +msgid "The content of the message to send." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:23 +#: a00789ca06e84d5fa7a73478180f1ef2 +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:26 +#: 906186ab0b7e4bd79159b563a30e5968 +msgid "The rich embed for the content." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:29 +#: fe4e6add04cc42c1bb5d44e2fa610082 +msgid "The file to upload." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:32 +#: a3c6608e1d1942a4b1be5b61abda01bd +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:35 +#: 11b9fd65f5ca4474a330776ef3c6de1a +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:39 +#: 0face4ee444e42a3b407aac7ea0318a4 +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:39 +#: ba5de4a08a864d7984364e85ac5c6fa9 +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:44 +#: 7239324fe23047feaa25e23a03b6521b +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:49 +#: 2c8173bcb34847058431ea4859c49300 +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:49 +#: a0a579827fe147f6a86010948fcf7967 +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:59 +#: 9309ccd20be043ffa5aee6e61d6082ff +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:59 +#: b4916e6a8e914fe9b0f1786b0a5b52df +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:68 +#: 26f39c2265e84ac1853fb843b86d9989 +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:68 +#: 401e6af57ea8422c89021bc656d1b595 +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:73 +#: 10915d3a739946e3a99a0a739b1588de +msgid "A Discord UI View to add to the message." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:76 +#: 8c86dff03f9a4a3fb7f2dcc83c7c6ad4 +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:76 +#: 3910a221735f4f569868b11b1d1a8c98 +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:81 +#: 8235aade03164b52932298971f0f5907 +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:81 +#: 963c1db27b8240dd92f403d36e2a18ba +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:86 +#: f555e2676dea4bbc8de31ebb2fc36278 +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:89 +#: a8ffcca916894215a919fa2c72d7c55d +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:89 +#: 4648ba0d48fc42beb889718460aeeb32 +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:94 +#: fd5dcbe211744affb08358b1a28785bb +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:94 +#: dc470e02b06b4622a2c6fd26976e2906 +msgid "The poll to send." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:99 +#: 59ad41ca439e4131bf64421a1ae40eef +msgid "The message that was sent." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:10 +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:100 +#: 999c449e088140378a9aca3429066337 +#: b2c842a4fe6f435fafe3c2b2a1e47515 +msgid ":class:`~discord.Message`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:102 +#: 8b714ce1774145368992ec4a36dbc6b5 +msgid "Sending the message failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:103 +#: 00e3027c97ff4cba80129df3ba41816f +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.send:104 +#: 5083bf05922c4f949f5e1a47bef0c2f4 +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.trigger_typing:3 +#: d5c9d9a021c946059bda8a05bbe44016 +msgid "Triggers a *typing* indicator to the destination." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.trigger_typing:5 +#: e2b3446f4c904abd9daf0ea1995bbac1 +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:3 +#: 70f06690476641b4908fe5c58523a0ec +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:6 +#: 47f6cd2a5bd6410a98561b8d764e594e +msgid "The message ID to look for." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:9 +#: 335e57a361304f68b36db3f717e341b7 +msgid "The message asked for." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:12 +#: d2feef3e4cfb47b9afc4c248ad2d1891 +msgid "The specified message was not found." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:13 +#: 4da989d152b844d4aff41f6835dda941 +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.fetch_message:14 +#: bd18b40e6eb143dc97a468a9f8ca190a +msgid "Retrieving the message failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.pins:3 +#: 4bbececd17ce4733aa89e7a128cc27cb +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.pins:7 +#: 19f6cad4e0a748608bac294104790fb3 +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.pins:11 +#: 08f13fe21c66434ba1000150fb780040 +msgid "The messages that are currently pinned." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.pins:12 +#: e2d50204039c4ebbb8cb5794d26a930b +msgid "List[:class:`~discord.Message`]" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.pins:14 +#: 4cfb764c52fa4d2da0b34a29ae460acb +msgid "Retrieving the pinned messages failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.can_send:1 +#: 97efca508c8545a0a10cee9651abdf07 +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.can_send:3 +#: 676c249107d744bea35ba99071b98e52 +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.can_send:6 +#: 73bfb2a074b84597bbe6ae500e1f8501 +msgid "An invalid type has been passed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Connectable:1 +#: 207660df821e48deaf1a2c5b1759f812 +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Connectable:11 +#: 53703426ebb74318920660391f075491 +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "" diff --git a/docs/build/locales/api/application_commands.pot b/docs/build/locales/api/application_commands.pot new file mode 100644 index 0000000000..9a3545e580 --- /dev/null +++ b/docs/build/locales/api/application_commands.pot @@ -0,0 +1,1909 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/application_commands.rst:4 +#: b5bef56dc22e4024907f0ad2189496f0 +msgid "Application Commands" +msgstr "" + +#: ../../api/application_commands.rst:8 +#: 963047d00b9c4705b2c508ea059cbc84 +msgid "Command Permission Decorators" +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.default_permissions:1 +#: da8262203adc4a9c9195749e22fca186 +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.default_permissions:4 +#: 797b65f8f8274cc38a258f0e361b6f7e +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.default_permissions:8 +#: 732445569fbe4b5abb9130e40d7fd143 +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "" + +#: ../../api/application_commands.rst:0 +#: aea96c3c11354ac09ca840e760f27c54 +#: 9dfd81ba143848a1a20bebc948d1df16 +#: c14ee1b991e847c999bf9442dbe40e1d +#: eb72f0aca1244dea81410658346315d8 +#: 7226b11745ba4ebd82c9da2a758ffeb5 +#: 54d966885d634d83990edfce5e98bd30 +#: cad84173c056435d98f90e7005c27b55 +#: 0b368aa254aa4b86a89105ba0e327415 +#: 2f82411ffec84c53bcd002c61cacf0de +#: 64675ca2cf37474fb4db23c7d15af9ab +#: 62e059169acd42789ad242cd2083fa36 +#: 36bdb8c4ce3245f58c14273b19fd5d62 +#: 52bf2928121f4472b33d87c293c520da +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: 5d259255b5e84b158b12b09e5b5bd019 +#: 235625d33ce645a7b043c3677e586ff9 +#: 55f70772de854acc8d6d057cbb0f8f21 +#: eba2b806575f46e09f700eed57737af5 +#: 3f296f45a98445549b2c7d2591f5f1f4 +#: c8d2f6b424ea40b796ee426da0da3234 +#: 5114f0ba7d6e4348a888d5d514b1ce3d +#: 1cd33b07806d4804a737dbb923dac8dc +#: 46a50a4147eb4e77b1ae0de308cac5ee +#: a99aebc3608649e3a2f828345d44ae45 +#: 4f780371cc9a4f03a35e177780cbf8af +#: dc86fdded2714700a8fea517ba06c186 +#: 04736647c59b4e3a96e46449e7e5c77c +msgid "Parameters" +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.default_permissions:13 +#: fe3a3eb41ae7453c8c76fe996fa9f277 +msgid "An argument list of permissions to check for." +msgstr "" + +#: ../../api/application_commands.rst:0 +#: 8b31e5c89bc94600b0402b4043851360 +#: 34f6fc248eea4c0486bab68b1ebdd1c5 +#: 53ceb21104a641c484d4b8e7645d7b6d +#: c99f60322d564ed586c09436e487f125 +#: 8f97231c3b074c83a4e0b711360aa13a +#: 10183c9a2d6e45fc9ffd212a67c67ee5 +#: 254924570d314fcfad7eec28414aa754 +#: 9381c2802da0445eb460cb72496ecd58 +#: a2184453371145008ab8edb2bebc1828 +#: c55cfd8217574ea6877c770ca4d590e1 +#: b0facd7208864b9190e27e037ea8aa7b +#: 7bfccaa86ce54a64bf7d92ec6a576066 +#: c8daf70be35f4fcfaafc3aca82447190 +#: 466e0a2592dd47b6a53225e7c79ec12b +#: 661e5de699854673aba3514ac463b12e +#: 96f7f9fedd3e4084838b9340c26d3781 +#: c6ce3ac8bd3f400d9409977714e873b3 +#: b3cd8efec02a48f39bf62cd9f7a16f52 +#: 2f7e67dbd5fb4733a461196f2cd1638c +#: 78df59c2a48944f8a606e2ddee6543ed +#: 0ded2b5fdd0c468d9e64b4f3d0e28717 +#: b3677126abad41359049266d39e3c5f3 +#: 6ce3eb6824af47e8b995511b3f7f2e0c +#: b4541055ead142caaa92694e4fc0c9f7 +#: 8aeb25c91c3040fa8bed102c91628748 +#: aa773a44b082442da00640cf9fba67d4 +#: 44e192c9d3194e3bb02547a3d42b06c3 +msgid "Return type" +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.default_permissions:15 +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.guild_only:4 +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.is_nsfw:7 +#: 2621196e617c4416b2ee3425087fb013 +#: d2975d1552964ea69abf9e2d9f2c34a1 +#: bb593fc55f5845e282c0678c4ca7c3a4 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.default_permissions:18 +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.guild_only:7 +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.is_nsfw:10 +#: 170709aea05e4d6596430ecbcdc6b2ff +#: 56ccd2f7a26a431a88df94847e449b3c +#: 27314595e4ad42478ecac584522b5b5c +msgid "Example" +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.guild_only:1 +#: df97a064550e4e33b11916afeef4ae71 +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.is_nsfw:1 +#: b5580ad100f0493cb5162e2b598e7d5e +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "" + +#: ../../../discord/commands/permissions.py:docstring of discord.commands.permissions.is_nsfw:5 +#: 3b38db1261c540ed9b38b50b257ebf93 +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "" + +#: ../../api/application_commands.rst:21 +#: a725df21cdd34f539047e9536c537892 +msgid "Commands" +msgstr "" + +#: ../../api/application_commands.rst:24 +#: ../../api/application_commands.rst:68 +#: 456c801c48554014be173f2a5a16cbe8 +#: 7f6a87ba8b2c4cb783a577d4adf8ff82 +msgid "Shortcut Decorators" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.application_command:1 +#: 3cb707e319364046ba6f2ef6af0fc306 +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.application_command:13 +#: 82b42afe09934b35b5443bc04a2b2a31 +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.application_command:17 +#: fe1f10e52d624dc9970ec9f9478becb5 +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "" + +#: ../../api/application_commands.rst:0 +#: af727a1e0df74d818b684591442a53cb +#: 1cb924fd415e4ddc9496206f971ced35 +#: be9cd2081e584a819bf1549f7325376d +#: dacfb5c6315c4fd8abe70b44fde4055d +#: e860e3aa9c454db6bed32e3b32b70bf2 +#: 48a171e781d247f4be4cd083cd7b649a +#: 35882ccb7511412fa8a02fe91cb6a83c +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: d2b91ddf551d443299606af43f270971 +#: 3de69d0bb23d41e1bdf1fc7ec71268b0 +#: 51571b876dcd4446b30ec38ef632db2c +#: d645c2efbd384258b09038d1ddfba557 +#: c6b8473c9c164792bf072c253e6d5b17 +#: 59772a8d35dd4ba19066115d6fd04655 +#: 0f8cfe09ee884eaeb4ff8d9250b92c2e +#: 60ef82b3b161467ca8c71b959f5c7256 +#: 4887ed86cda545d4af57e4675837f341 +#: ac47a04b2ffc469593b1a89e7bbf4332 +#: 425335dbf316496eaa25bb00e0dc38cd +msgid "Returns" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.application_command:20 +#: 5de61b114ef1402fa1afc797a823a6b0 +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.application_command:21 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.command:9 +#: 159c15c1b9114f6583215bac45623357 +#: 24179cdfea13469288bbb0caf076a82e +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "" + +#: ../../api/application_commands.rst:0 +#: 85a0b34d9d504b9486cfd759b70a5269 +#: 7c1227bd25ec4399acd53fe97346b37c +#: 31661879ced84eb38fdd4d6a898269f7 +#: 454861253a404ca6bc8c6eaaa62bc4c8 +#: da2632a415b247ba849b48310b8c9939 +#: eced035eda7548f280069c41e933df45 +#: 5e6285c20cb1466dbb2080eda4fac8c0 +#: 9f8c5a00d9b043558bd8f02405d5cd55 +#: 9ddb8f47843842f5a5e86815460c4858 +#: 7bc9e11c8bb14ad7bcc7fe5462edef3c +#: de023a26446f4dd781831c9cdbb6b46c +msgid "Raises" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.application_command:23 +#: a2b10a34bc48445cb7547b3753e2d22d +msgid "If the function is not a coroutine or is already a command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.command:1 +#: ad5e2ce4a65d4cc0a741ef3faa6ffe30 +msgid "An alias for :meth:`application_command`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.command:4 +#: 16ef3af73cd247bb82eab2f0d0a86833 +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.command:8 +#: f5c240410616469db3e29b24ac97bb37 +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.slash_command:1 +#: 8cd0e804deae471a957d22fb730f0d62 +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.slash_command:5 +#: cf83ee0ad1984b10b9a2a1665f3baf2a +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.slash_command:6 +#: 3648e7b30ffa4a508caa6eb5fd8dd3c3 +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.user_command:1 +#: 94a75693b49d4729a08c55224a6635e3 +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.user_command:5 +#: a34c5627137a4a6abbee91d8ef916da5 +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.user_command:6 +#: 1a5230d2f97b4c4088a308912ad57d76 +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.message_command:1 +#: 64dea31eec8149c9bc5aa4611ae732d0 +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.message_command:5 +#: b06aa2c156234565b94cc7a9adc52354 +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.message_command:6 +#: 8fe7341163d9401f8749dbb5d7ed7952 +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "" + +#: ../../api/application_commands.rst:42 +#: ../../api/application_commands.rst:73 +#: 90d12871fc60443cab43a4d2a559062f +#: f29d6e2aba484c70ac570333290b6b69 +msgid "Objects" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.is_on_cooldown:1 +#: e5824d49a8ec4fd58c46756aa4ec9a8c +msgid "Checks whether the command is currently on cooldown." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.get_cooldown_retry_after:5 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.is_on_cooldown:5 +#: 43592460bb624523b6b7dddc218d6418 +#: 22f96d6322cd4a01843b0facf9a060c8 +msgid "This uses the current time instead of the interaction time." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.is_on_cooldown:8 +#: 48c966a97d1e4323aaf2c55e947af55b +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.is_on_cooldown:11 +#: 109268d7b8734d31b6f6a78fc32cc37e +msgid "A boolean indicating if the command is on cooldown." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.is_on_cooldown:12 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:31 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:38 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:58 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:65 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:38 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:45 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:31 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:38 +#: 5f86ec376bce414983af08e853bde10c +#: e46ea6aa9eee426bb7dfc66cd3cba65a +#: 469210f5cf914546997454d384d9029d +#: 6c64647e98224b3580a97a6971e0460f +#: 1d938773f96a4ec29acb39fe95a085e1 +#: 1cd0f7372eb94a76a4c4eb766a807d99 +#: 4b09f5024b9c4f79b0567a857f1c14d0 +#: f174b8a7f5a447f681b56ee23d1c4b67 +#: 281a5d91fc5f4c24808c406b99eab56b +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.reset_cooldown:1 +#: 4865f290a1c34beba2817f93eab500c5 +msgid "Resets the cooldown on this command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.reset_cooldown:4 +#: 53643f7f9ef1492a8092f43b8e5fc523 +msgid "The invocation context to reset the cooldown under." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:14 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.reset_cooldown:7 +#: ea0c376e7639475c96884d6741d8e471 +#: c8c22acd0edf4230bcd59ce97fe0e0bf +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.get_cooldown_retry_after:1 +#: 5786055907dd47e8aa0184ae5d9858cb +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.get_cooldown_retry_after:8 +#: d765407e83ec4b058b4b301fce4072e3 +msgid "The invocation context to retrieve the cooldown from." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.get_cooldown_retry_after:11 +#: 91fcc0e4733b45df860a71abe4390a06 +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.get_cooldown_retry_after:13 +#: e5f76f402c5749b58d8def0d7b027cd7 +msgid ":class:`float`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.error:1 +#: 85341dba3db7499bbc2e89d1674b185a +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.error:3 +#: 989d30b8f9a848129807a4f4a5055d14 +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.error:8 +#: 5fc1de69a66a4f1782fbbda61bfbd616 +msgid "The coroutine to register as the local error handler." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.after_invoke:13 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.before_invoke:13 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.error:11 +#: ee192f4da1984910bb904352619efac9 +#: 69cdb18feeb7405c8d90991e2504ff43 +#: 195c64eb9cf94087be8baf2674ba96a2 +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.has_error_handler:1 +#: 9ccf990d16f34941828a6515cc6f831d +msgid "Checks whether the command has an error handler registered." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.has_error_handler:4 +#: aa27a8c0af014a0d8c7b4f3d6eb24ed9 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.before_invoke:1 +#: 74e0ecf9b20d47e4ae7716f3cf075065 +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.before_invoke:6 +#: 9433b4a378614120ac4f31f90266b22e +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.before_invoke:10 +#: 6b73c4f26de94db6b23222b72e7033a8 +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.after_invoke:1 +#: 9ebaa0682ce8427187430baa7a30a62a +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.after_invoke:6 +#: 8a42dbff4d8c4c50bff5f0d280665b55 +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.ApplicationCommand.after_invoke:10 +#: ff065a961e3349d899a4f61dc14101c1 +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.ApplicationCommand.full_parent_name:1 +#: 38de70f34b1f42c7a6b8db99f5580b96 +msgid "Retrieves the fully qualified parent command name." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.ApplicationCommand.full_parent_name:3 +#: ca09f438cfef40768c157b677b5ac3ac +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.ApplicationCommand.qualified_name:1 +#: 3c6db7d1726b459190301e3810022172 +msgid "Retrieves the fully qualified command name." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.ApplicationCommand.qualified_name:3 +#: ffcb16ee006d4bcda5eb72e7313ac7d9 +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.ApplicationCommand.qualified_id:1 +#: ee3fbd20f3e34193b2f31f0c6570c05e +msgid "Retrieves the fully qualified command ID." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.ApplicationCommand.qualified_id:3 +#: c967bb36bdac4affbd4cb3fa91587415 +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:1 +#: 41fd24c1ab6b4016b6615a8b699a0bb9 +msgid "A class that implements the protocol for a slash command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:3 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:3 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:3 +#: 6bf0393672874d60ace4dad3aeff4e49 +#: bb14163d838f4df5be0e9d0ed62b84d9 +#: 1e29514fc1754ee5b49efc4b1e5aedc5 +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:8 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:10 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:8 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:8 +#: 67aaf53865d34b4eab081611d1af6dda +#: ed6cdb67d88c45f4a8824353790cf8fa +#: 3d0e2ed16525455d96c8cb1edadb5bc9 +#: 6d065097b4844f45a82be91dd3333c54 +msgid "The name of the command." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:0 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:0 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:0 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:0 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:0 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:0 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:0 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:0 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.option:0 +#: a1abbc14d2b2467da83e741de3dfdf76 +#: 69ca3d2c2367457d80020171f7956f20 +#: d346586079e040aeaa3ce95efc7de925 +#: 82d9281a794342ca80ecedb36ce845e8 +#: 7e705d84c94d4d27988a51bd99c66d40 +#: b880b344500049db96d5e21f275c6531 +#: 8d8e59d3422e4073b73af34dec59df56 +#: f2e9e70af4b14850a489ad1bc26923a7 +#: f4d4ca31df8b4d2196f56fbf4bb71e61 +#: 1d48447ce4dd4b40b0a9168a6c0a741d +#: a2e513d5b07b4dfaaa4d578776fe3d5b +#: da86647139e241c9b5091ecda8d8a7a3 +#: 105bde31bfd1417f987e4b7508657466 +#: b458a250a6b34994b97107d1e2913f34 +#: fe884d1963e24986a26db506c9fe20dd +#: cc22d99cfe4343559ceb67784268ad07 +#: 65589f4eefce486783298b62563c29e6 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: 90b11fa54ccf460eb6ef527c265a5be3 +#: 2942f73e141945c5b9e84e3edfe83610 +#: fa5207c6c9a346c4a604a81b19fa4efc +#: b033a7a3b7224e2ca5d25b6b39f19909 +#: 94eb1b4764b941a09dbf0a90e5abab6d +#: 78fbd9eecfff4a74921c5676a3badb3f +#: 596eaab5c9b44f7b966904a10dd285a1 +#: 55edae3110864faaa4f01ec37013384d +#: 126aeaeefbb74756bd0d4c3712f68106 +#: 4f19817a7d6541e3ac62dfb873551675 +#: 32ab576baabd4da4aa50f054bac960fa +#: f422915c4028467f9272f041e90ac356 +#: eeebdfc3417a45ddb0d2eca099679021 +#: 9ee5d52e5ef44212b63ead93ba778d30 +#: 6fef1040501d4606b401938d7b20d3d5 +#: 4305140bcdcc451380a5fa7b3337caa6 +#: 30b8f6abd3ec4a73804a20961695280d +#: 07a65b46f9bb400c9fde6bedbdf9bece +#: 64078dfb5b0249a18bedfec426d70ae6 +#: ba046de2b2a340e2b11beb275b5eeec1 +#: cbe094cfaf9947d080f7386a64ab0f8f +#: 2ba74b8ff9d34c98a16b28e10a8110f4 +#: 22467c09aa194499b7098e589a5ef142 +#: 62a3c63da1b34615a2a612e8a244421b +#: 1ece09d009324375a4d887bae80fbb7a +#: bc9bcb492adb41a88224befa11abd930 +#: 31f250e3d8cf494a86e868b202541b7f +#: a9c2414a2a734add8e5a36feee27284c +#: 3afc50472809487dbad8cd85a1507406 +#: fee9ae0ea9e340a9a213db446b262306 +#: d7f61dde91fa4cd9b3e9ac395d0c992c +#: 756ec092ebaf4907b08a46110b80862b +#: f988ce8ce74a41a298dd7c9cfda39fe6 +#: 604c1652fc9a4088a51e4563b35b2e34 +#: 7cf2d8f67f05430a83632f519f6c85e6 +#: 3da17161fe4f4530b8f2d3c4403837d9 +#: 58526253406040d48cdc0713c4f5a8b2 +#: 329c5b14ab0044e6bdf7afc0afc258c6 +#: c92ede53dab04f138a4eb71cd9a8608c +#: 94544fd954e94907bc9ba3c57a77854d +#: 5875a055431f4e6aa71f8dbe92dc583a +#: b90304d20456414b9b2a136a3e6ee88b +#: 8550929b3b6943dc92d66e621e603469 +#: 4db87a35a7b4400d8779539f0d81b16e +#: fbe3235893854d249eb9c229ffaf5810 +#: 87089ec1de784899891c8e09fd4485ab +#: 4b01d85010d843feb38ae9f358216c0c +#: f2872309127f47f9bbf393e013670fc3 +#: 1bc3b8c17a69474aa542dcea608c2f66 +#: 07a25a408c5f4cc3992a39503812870a +#: 54808a0f595e473cb2edf69697936ddd +#: 41190dd2cbf14e71aecd87a2cbdd81e2 +#: 4eb3385b9b584693b12218107457bc2f +#: 6df70c21130b4412be26149fc5c81954 +#: 29b95f3a9bf0414aad9ea4c11594acf8 +#: c59f126f8bab400aa9b24e63603f4f48 +#: a1733c635ea54650a699bdf40857dc12 +#: e4b7931ef92442e08d542fc95899f60f +#: 49bd3838ca98448287a22b876d556c69 +#: bb32c9d08d4847fa902efb10014b11b9 +#: fe7162a2110c42058980717feec7c670 +#: 225d03c6c8d64d7e807c5c34e9d083bf +msgid "type" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:10 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:12 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:49 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:10 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:10 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:16 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:9 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.option:10 +#: 49221d04f03b4b12a9d0c0a9c637ef9a +#: e1a8d5b422ad43aa838454c7a548d093 +#: e73d6cccfb5e4378b06a018f2cb3a728 +#: b2ced8f32ef84169b7d0feed3cfdffb8 +#: 29ce8f1db64644d5b6953c99b735e8fe +#: d86932409aa94cd0bfdc89c61324010a +#: 1b4d729c95264ac6a1ffb7c09a1e658c +#: ba38e0e706244b9297603504db49b2d9 +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:14 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:16 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:14 +#: d7c8826678824334acd35d914ce6d3da +#: eb1bd96acf84423f9aeaf5c3aef8d405 +#: 2bbc3df033884fa1b46a994d242f7584 +msgid "The coroutine that is executed when the command is called." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:16 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:18 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:16 +#: 94656ea4509f484995757bcea3759b36 +#: 7a48bea72ed14e6ca0b55c39805de1e2 +#: 85ea2fef9d7f4c9b834f066ec737bc16 +msgid ":ref:`coroutine `" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:22 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:14 +#: ca717fd502eb4d4eb6bcad8d95da302c +#: a1a8e38c697444e686ead501a98d1164 +msgid "The description for the command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:24 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:16 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:23 +#: 219ed0b9b95f4158a6f0a49a5ce2decb +#: 4c502354c8d74bf7b7c8f98c11b6a5bd +#: 457e3625a42542f28892b83df6b3d440 +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:20 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:28 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:20 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:20 +#: d206fd0ddbb94163a1152cfc1c826c06 +#: 64a250a8f0ac40d4aecc323b2ac9a050 +#: 77e0016800534470945d60987fed7899 +#: 6a8c3daa16c14b13a92327aa2454445e +msgid "The ids of the guilds where this command will be registered." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:22 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:30 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:22 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:22 +#: c586c88145e24838a7a0f08feae5b3db +#: a8524dff9e6d4ac8a3a4b6229ad12e63 +#: 2b5abad428324601971b5a7d306bdc79 +#: 1d303cd972f14fdeaed647cb416dc65a +msgid "Optional[List[:class:`int`]]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:34 +#: c8c15229d16d4fc89b3f7e19cf7180b6 +msgid "The parameters for this command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:36 +#: 75862e9bf0b84d2897d613fc7e3fe683 +msgid "List[:class:`Option`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:40 +#: fa69b266672c4ec99ee70ac16be2a608 +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:43 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:29 +#: b2cb8c97a7a84023a2de84bcf4d91e50 +#: 66350ee1c0624f379d399a081ac541e8 +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:47 +#: b3c411e124ea4def938df41c39d0adac +msgid "Returns a string that allows you to mention the slash command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:26 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:53 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:33 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:13 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:26 +#: aedee1abd900459caa0824d9395135f2 +#: 90c2f3e57f6b4b12a2db96f0229f59a6 +#: 243e82cb8df04a368273abf6f3e337e6 +#: fe40b49ec6f643979b0a4dc4f8f53c79 +#: 51661a7929c847838757391d6b95a24a +msgid "Whether the command should only be usable inside a guild." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:55 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:35 +#: 3083ae8030e942ea85aab949de3ad70d +#: 04acf48e5dc641f2b7369a4dc4d0eb3c +msgid "Use the :attr:`contexts` parameter instead." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:35 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:62 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:42 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:15 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:35 +#: a1c4ecc9455b4ba4bf4c25be0df33521 +#: 3f98034506304fa5adcbcb706311be39 +#: c1b7134cf52d42c2950bd14e6152aed8 +#: 6d50a38d0a17491a8badbba7e2e94860 +#: a5ffc9fa956048978cf667d3bb43faad +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:42 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:69 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:49 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:18 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:42 +#: 6b3bc7e04f3640fbbc49a1f5f1444291 +#: 4093e966648f402ab9e9a3821479bc17 +#: d0cf02f6c33d40f480e6dcdfa59e5bed +#: 59b49969a86549fe97fef27fa01c037d +#: 3583ae818d1643f8aee392befe3b564c +msgid "The default permissions a member needs to be able to run the command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:44 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:71 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:51 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:44 +#: 128da93392f74a34b75d9da47a07e5d3 +#: c8f15213fe404ecc80f0efbad85ce25f +#: 5fd417671e594f12bbdb4eebee581649 +#: 062cae8785054f6fbd733b6467bc9615 +msgid ":class:`~discord.Permissions`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:48 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:75 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:48 +#: bd5e5e0d5f4b411c8e40eab4878085bc +#: 5f2fbe31f5d74ba7a5419816d2ee36a0 +#: 001a7741b18e4cf6b34a196268dd8f37 +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:50 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:77 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:50 +#: aa48e1fdf4ed4288b34a01330ba573c1 +#: b34d5a804a5b4cf6afadd914bfc11a59 +#: d44eb81247ab41bb857b223e14faaaba +msgid "Optional[:class:`Cog`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:54 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:81 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:55 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:20 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:54 +#: 99e057769f604564828ec66970d09051 +#: 0b88f443adf9434cab24c10d11dd4d90 +#: 1d352bc3635141cda4848e4fb7e0973e +#: d9d5c1770b794a5aa348922c71a848cd +#: 170a1f227d3c445fb783bc5b468fb260 +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:61 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:88 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:62 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:61 +#: ad45d2349ec14cf6a18c5b8b7dc2a062 +#: ec1f97a3576f474d878bf3caa4bef5f8 +#: 67af798da00f47a391dffbdf1d1b782b +#: 21c2a433d63c44b286c1fd4099a782ed +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:65 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:92 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:65 +#: 1abebabad8514274a040cb70960603ce +#: 1942d1f115bd4ac0a990bf73d0a49126 +#: 0510239b8cb44b39b79b52f22a16159c +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:68 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:95 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:68 +#: 4403e107ddec48139ba57ac55414cb0d +#: 58f857b842d14e26b594f8771048b67f +#: e586cb3f8caf45a1af37de97c615659b +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:72 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:99 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:66 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:27 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:72 +#: 4c7491a6786349beb7d12103568687d9 +#: 6e99029583a841a9ab1d74653b3b85ac +#: 21ed930c27b2453195f0faa34f14457e +#: 808dd134efa0495ea9b213fcf9b366a3 +#: 8aeea10a4b16406bb4fabc8f5e266f29 +#: 83a1ac6615bc4b0b8187940a72a2e955 +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:75 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:102 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:109 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:69 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:76 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:75 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:99 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:106 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:22 +#: 7f013ded205c49e4a449eb1a8356e3b8 +#: 023e1e7e67f84b929dedc87e98bf488f +#: 94ef4db9991241619146371c2d241eec +#: 9fb8440c83b64b5da889a607e563f44c +#: 7897fe9f532240669b41fd64f8d327df +#: 290bf037573b44a4a53b7e81218fbe15 +#: 0e945616becb4bc381cf17c323759ff3 +#: 5fc064c7e15740f7a2d64997db897d50 +#: 64d6d1a8fe904e5e83b52db695e1656d +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:106 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:73 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:30 +#: 9f23516b8763437599e6707336f93a13 +#: 465be0fc2ca64e46ab11324883be8c39 +#: 232bbcc643034214afd2c8bf7793034c +#: b589efc99cfc492e9e2d1b0070562e2c +msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:113 +#: ../../../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." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:81 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:117 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:84 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:81 +#: bde9fd66a882485c806403a935a2799b +#: 667c0fef77a5473cb31b94fd02113660 +#: 6eb640cae00c453a89aab91f7b489f5b +#: 5b9d7f82861d4dcc8bd2fe71465061aa +msgid "Set[:class:`IntegrationType`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:121 +#: 69dad4ce1f7b4caab795a3f006adcd96 +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:87 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand:123 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:90 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:87 +#: 5f7622e9d98e4fa78b9fdc2edd148970 +#: e4cf9dee7685447693343bc155de82b8 +#: fca44b50de0b4821acb8f06f88efc30b +#: d8fa88e31f634d63abb28aa971fde67d +msgid "Set[:class:`InteractionContextType`]" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand.copy:1 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand.copy:1 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand.copy:1 +#: e09041a18e2048f885c27f005740a3b7 +#: 31d87139a8b540bc9e1c77b8b1829f09 +#: 33befa53cfaa4b72af12546603aa9307 +msgid "Creates a copy of this command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand.copy:3 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand.copy:3 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand.copy:3 +#: a8105025c5e2494aa3f98b742ce48850 +#: be0630b9503f4c4fa51e83cc51cb43de +#: 7848e836a6104ccfb683087d78355479 +msgid "A new instance of this command." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommand.copy:4 +#: 0be8c140c01d413fa23ff654727f9145 +msgid ":class:`SlashCommand`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:1 +#: 3926a5a0cdd54defa1b2dcae0f38112e +msgid "A class that implements the protocol for a slash command group." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:3 +#: 86b3efd9357249c382571006517aadb2 +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup:26 +#: 1ba00e6c6a9c4381845f27b44a09f0a3 +msgid "The parent group that this group belongs to. ``None`` if there isn't one." +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." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:1 +#: 7a10b1d79da74255bdd7a7e59b681aa6 +msgid "Creates a new subgroup for this SlashCommandGroup." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:4 +#: f0a5c570cc0640daaab5e1d358b07b15 +msgid "The name of the group to create." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:7 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.subgroup:10 +#: e19cf1315db44335b86b91dc9de63e5b +#: 03f96678c3fe4b73a5300b9b76942114 +msgid "The description of the group to create." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:10 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.subgroup:13 +#: e16839754dd74ff0b55c2565c7a3bbfb +#: 07c545d36d2845a09d3492826661765e +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:34 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.subgroup:17 +#: 50bd9f43948a48cda18b0348eeacf075 +#: 0097a80d2c364ccea8530212bdc8538a +msgid "The slash command group that was created." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.subgroup:1 +#: 110713e4d85d40cd8deed214a911e308 +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.subgroup:7 +#: ad149ced4c7d487494e7d269414157b3 +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.walk_commands:1 +#: 9c71c512414541089ea38638c3dde77f +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.walk_commands:0 +#: 7d6810cb23814948bfd06437dddc2d2a +msgid "Yields" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.walk_commands:3 +#: 626e588005a54eccbe4bbd0263385625 +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.walk_commands:6 +#: f6e8962cb2454c9b87070024b1c3e008 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.copy:1 +#: 2030810b53b74013855efa8e43381af4 +msgid "Creates a copy of this command group." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.copy:3 +#: a0a6be77abba47a6afbd4561554df107 +msgid "A new instance of this command group." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.copy:4 +#: dc5f23a83726415ca441522fcf41075c +msgid ":class:`SlashCommandGroup`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:1 +#: 86543ac679bf4bb992a6ca78b1197fda +msgid "A class that implements the protocol for user context menu commands." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:28 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:28 +#: f5cc870407294386a12e5e92859cf1ba +#: c7d2829643f24511968817261046a622 +msgid "Use the ``contexts`` parameter instead." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:79 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:79 +#: e5ac68f43e54493b955c34ffa4045d84 +#: 4cf87d23d5074594a4416310cb39d1eb +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 +#: 35a84349ad164546b485fdaf2b34b5a9 +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 +#: 0d24d6d88aa94aa59018232cc846f80a +msgid ":class:`UserCommand`" +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:1 +#: 3a43c2f228a14e06a35102516117c170 +msgid "A class that implements the protocol for message context menu commands." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand.copy:4 +#: 1e28dc4b29a24786a69df8ff2df47b97 +msgid ":class:`MessageCommand`" +msgstr "" + +#: ../../api/application_commands.rst:65 +#: 0d9d93397a80433d9df6280b37e9cf0b +msgid "Options" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.option:1 +#: 0130075e1ddf4a318c804b668301c131 +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.option:7 +#: c2a9f34a52a64a518c507218e1d9de01 +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:1 +#: 1e9056c43c884b5199898e497949e25d +msgid "Represents a selectable option for a slash command." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:5 +#: 75bfc064c11744c99eac785fa3f2ff23 +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:9 +#: 593026b5a1fc40e4a80311b243cb7877 +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:13 +#: c8d02ef8523442db84373cc1d2e0f28a +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:20 +#: 3259bdeac333496c8faa60dc608eb5bb +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:27 +#: 8e4ceb8ea36443469f1f85747c903c87 +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:31 +#: fe9b03d557c84b05b541b96464195697 +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:35 +#: 2e528dec6b9b4726961a48ce6fe92acc +msgid "Whether this option is required." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:37 +#: 000b0bda94bd42cfb1633ef646d23a12 +msgid "Optional[:class:`bool`]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:41 +#: a02cb6965835437f949bf2191a6fb459 +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:43 +#: 7d22d3c43d274365972d6535159232dc +msgid "Optional[:class:`Any`]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:47 +#: a47d1621967a4f648c720a1a3111eccc +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:50 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:57 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:64 +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:71 +#: 08ccceedd6f14b3f8c7d1509b11157a9 +#: 19c584eeab5844f4bdd5cede3b82dff9 +#: f734be10dc854fdb98237d2dd1d2d70a +#: ba574579dd45454bbcff4815dcce400a +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:54 +#: 31ea4924990843f8adfbf6e88a51d7fd +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:61 +#: db3a329f3a3f417ba0ae05f79aeade46 +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:68 +#: fe01838097b34805b0b2a859034446dd +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:75 +#: b16be74fd64a4d818577dc51a2d75445 +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:82 +#: 96075db6b84448e8ae59a0aaf54aa561 +msgid "Does not validate the input value against the autocomplete results." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:84 +#: 6b97e34cbdd640fc848c3a62b0ce3ea3 +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:88 +#: efe2d8d761e245b5b1cbca504fe5a3b6 +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:92 +#: 3895aa7de025406b82492d8871b80352 +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:96 +#: dbae42fcf31241ada80858c6674efcfc +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:103 +#: 3d90448f536f49ed990f5e5cb38b5f0a +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:109 +#: 73185a2e6c6e4d739ed5f24132cf9742 +msgid "Examples" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:110 +#: cc7ba7cb42254be2b8f3f28c2631f7b6 +msgid "Basic usage: ::" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.ThreadOption:1 +#: 058fb547f7e048828c72114ef59e3b91 +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.ThreadOption:6 +#: 11b1db26d5f242b89c1358190f5c8a6b +msgid "The thread type to expect for this options input." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:1 +#: 032809522c5048eb89074eb12f49ebc8 +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:7 +#: bd518b6ccee34ebe9742c780738d2419 +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:13 +#: a2f07edb1eef44989abe7094570a69dc +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:15 +#: 3e81a8bc741042d78ff4dbbe111b99d1 +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "" + +#: ../../../discord/commands/options.py:docstring of discord.commands.options.OptionChoice:19 +#: 2ded24f7f3464286b1bdeb7668a8d8ac +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "" + +#: ../../api/application_commands.rst:89 +#: 1532468326964e3a8f4778fffa6157f9 +msgid "Context Objects" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:1 +#: 615595b5b70b452096a0d3bf17be3fb3 +msgid "Represents a Discord application command interaction context." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:3 +#: c7eb010280b1438baa0b3bfa57aada25 +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:10 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:9 +#: 735d3b8688e648a5aaf59912c322ab40 +#: f72ead800eaf464eaa2d03c174801e6b +msgid "The bot that the command belongs to." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:12 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:11 +#: 825a171e7cc64dd2a99a0905e70528dc +#: 36e5d14ba72f4c3598db5eec654cf4df +msgid ":class:`.Bot`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:16 +#: 5f80d2b271b94a57ac853c1925574447 +msgid "The interaction object that invoked the command." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:48 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:18 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:17 +#: 3c66cc9483d34081a22536fa12eccf5c +#: 38ff2d92f89246838e966fd79f106c78 +#: d97210a7cb844b6cbf68d7a6e2639509 +msgid ":class:`.Interaction`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:22 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:21 +#: d6f68d1b5a754d4faff41bef78e15ad3 +#: 85232844f6d445569c8324f56c0188c1 +msgid "The command that this context belongs to." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext:24 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:23 +#: 731cda54c14a44f4a88a9bc501f056d7 +#: dcbba37ff4d247d89bb2966c846917f2 +msgid ":class:`.ApplicationCommand`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:1 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:1 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.respond:1 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:1 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:1 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:1 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:1 +#: 68f22a8232be41a3b2b45d850414330f +#: a7ff180cdd2342b1be472e0611e39f66 +#: dd881f72b7ea41568055a12a26d5ea55 +#: dea19320f3f1413e95f68748d7da4393 +#: a4f3b03225cf48eb85af3b7be7242485 +#: 7c979807994841e39ed17fc97345a8ae +#: 670eda9063f2465285c0609ff2fc75ed +msgid "|coro|" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:3 +#: 140199d2d8ca46f49bcf52390154703f +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:9 +#: b49a2bc4dd68462fbb58bfb224685326 +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:16 +#: bfec2e6b68394ab198c335a849c17ba2 +msgid "The command that is going to be called." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:19 +#: 92ab2efc601041a5b5a340bce07ea766 +msgid "The arguments to use." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:21 +#: 777b8be609c64373bbf341f9900b74cb +msgid "The keyword arguments to use." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:23 +#: 438aa440953846879cfbfe87145d195c +msgid "The command argument to invoke is missing." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.invoke:25 +#: 5021455f669a48f38102c39a6acbab6a +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr "" + +#: ../../docstring of discord.ApplicationContext.channel:1 +#: b609dea40cc743b08e49d5c7be8c7bcb +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.channel_id:1 +#: e2e42bf39f034fa09a42af3e0df8cb7b +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.guild:1 +#: 328542dec1c2423f82d4288770e7acfb +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.guild_id:1 +#: 18c9865ad4024501a55ff86619379a13 +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.locale:1 +#: 4d0d154dfb024841ae4273ee278d35cb +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.guild_locale:1 +#: 0f7171062ad34e40ba2a50d12af92493 +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.me:1 +#: fb27d9ced4754e0bba9315eda057f24d +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.message:1 +#: 360aae08d5ec4329a775a2b12cb73428 +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.author:1 +#: ../../docstring of discord.ApplicationContext.user:1 +#: d233902b55f7474383181ef505b0deb0 +#: a7aa96575c074fdc8458ac9b62580e17 +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.voice_client:1 +#: 5e34a6aec3cd404da736946c09eef422 +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "" + +#: ../../docstring of discord.ApplicationContext.response:1 +#: 57de46aa89ee401b90d87d96729b87d8 +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.selected_options:1 +#: b5efacea0c6d490588ed532029be97f3 +msgid "The options and values that were selected by the user when sending the command." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.selected_options:3 +#: 2009dbc6355d49f988849abe62887432 +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.selected_options:6 +#: 8ac4f572c7f54f3181360191f521eb43 +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.unselected_options:1 +#: 29e31a1123c242e1aa2b472c55404b69 +msgid "The options that were not provided by the user when sending the command." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.unselected_options:3 +#: 5eacd869453c4caa94b8f1973d4bd707 +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.unselected_options:5 +#: 55cf6af7b08a4f7c93e92c2ec39a8632 +msgid "Optional[List[:class:`.Option`]]" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_modal:1 +#: fcd8fc00fc3444d4a347984fd3b9ed1d +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_modal:6 +#: 76458eafc6a84b0aaff8d4cd995a9882 +msgid "The modal dialog to display to the user." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_modal:9 +#: d92a2d6d8ca043e8bb5c226c9c62684a +msgid "Sending the modal failed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:33 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_modal:10 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:53 +#: 4b936a2efdbe459c87055d540910dc3b +#: f8cc815412b5412888cc55cb3035e45f +#: c1943375177a4f1d8c7da6b6c9dfc83d +msgid "This interaction has already been responded to before." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.respond:3 +#: f5ed250977d64274ab69f28890c2d5fc +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.respond:6 +#: ab5a3790be0349bab8d2da6a2877c752 +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.respond:7 +#: fadaf0ad570449299f73d46bbc211ff3 +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:3 +#: 088524dc5e4f4da8addf23d2dcc81b09 +msgid "Responds to this interaction by sending a message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:15 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:6 +#: a23bdff51b9347ed9b843ee572eca90a +#: 9c0345306ef9486fbd5eabc902e292fc +msgid "The content of the message to send." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:55 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:9 +#: 4afdc5be01c04197bb07738ff36e4ef3 +#: bd82a376ba024fc5a3f6edf1d1b0a17c +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:51 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:13 +#: e5c93968e5e54442b2c01ffb864b3784 +#: c9cc1ceb24b14397bf1eb3524bd6b2f4 +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:33 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:17 +#: 249a00f69dd7404b8a18dd990aedf15e +#: 99735bcc9a424f849079936b45bf21ac +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:20 +#: 5ee37397dded4a3faf8aa45347f4d3c9 +msgid "The view to send with the message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:23 +#: 19b8764e6eb742cfbd6c211ce6de49cf +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:33 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:28 +#: 88d5f696c2574d0fbd7638e815a9f7cd +#: 3006118b250049cbb5c53de3464cea19 +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:87 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:32 +#: 2d273ae38e5f4004b94c01caa64f2f1a +#: 322077dfa7e04985836eae3461178967 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:36 +#: c26323cc36d2444db93f04f6a16a61f1 +msgid "The file to upload." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:39 +#: 5eb5de67847f4fbe95b625a06067be80 +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:91 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:42 +#: c95324c20b714dce8cea04b4cfa5b6eb +#: e921d0ff68ca40b48b4c0042d25698b7 +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:91 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:42 +#: 4e6235b751b24b81bd560956f1f7cb67 +#: 43c18c14db7947fda6fe189d1fd5c607 +msgid "The poll to send." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:47 +#: 730b8b62d16c46f6aa4792bf63da9bb1 +msgid "The interaction object associated with the sent message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:99 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:50 +#: 551054b03c444d50a2a60ca32e8e9f16 +#: 486fcf02f7c944ebbf9625cf330648b9 +msgid "Sending the message failed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:51 +#: a0f75187304f404fb792a05b68249126 +msgid "You specified both ``embed`` and ``embeds``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:55 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:103 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_response:52 +#: 0a737ffed25c468a8fa88b66f105c037 +#: 1572fb51bb2c43a4bb0f162fb6d6f44a +#: 76fa35e648344516a2977045cfcfc2b2 +msgid "The length of ``embeds`` was invalid." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:3 +#: fd293a3f95634cac801f0b23e274ba24 +msgid "Sends a message using the webhook." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:5 +#: b9d3f9751ae6461e9faa2907517ba730 +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:7 +#: e10e94fd9c024d6a9ac88264447d65fe +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:10 +#: fc47d5f58198427fbec351375429a249 +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:18 +#: be98261f001f4289b337e61c209204d3 +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:24 +#: 0f617a954d2040c4b314ea44e8f86eca +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:28 +#: 9d64c46ae5eb48c283625b543241afcd +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:36 +#: 9e7158552f3945e9aa3eda56703c50f3 +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:36 +#: 507d76c002f74e14b168047e5741ec68 +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:22 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:44 +#: 9da3c6f904e749d2a70116da7b9f91b4 +#: f694dbc86c924f11b9aced8463197b5e +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:25 +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:47 +#: baf2da1b3eea467899a28632a9051c98 +#: 2413f3bcbf9b438e95bccd0325d1a76b +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:59 +#: 1d48d94dfbdf48bc929205a105a85b6e +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:59 +#: 5f0205ad28b04c84be092358d620971f +msgid "Controls the mentions being processed in this message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:64 +#: 11877168a21647ad9d25a5b521cd8e6b +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:64 +#: a12ec104a407447aa3d2cf73b4909fee +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:72 +#: 786aa546c1184b81b7ad96a239797b3a +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:72 +#: 87d19dcf19354880973a710d703a6d4e +msgid "The thread to send this webhook to." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:77 +#: f9beaed2ddb0425fa4072973b6b228ab +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:77 +#: f84ffbc14b01477fbf984092850d7a62 +msgid "The name of the thread to create. Only works for forum channels." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:82 +#: fdd72a094f5141ab94b0a7157efea41a +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:82 +#: dbad2a8ee2cd46f8ac199fdffe2d1b6d +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:96 +#: 8ed2b127aab547adb416b946c1ff5afb +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:97 +#: eb56c247fe6743d79f1325e5cfbecf33 +msgid "Optional[:class:`WebhookMessage`]" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:100 +#: 376082779e6a496a92c04b5372816a43 +msgid "This webhook was not found." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:101 +#: b1376346972d42b1a3c9e82098f6c2ee +msgid "The authorization token for the webhook is incorrect." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:102 +#: c6b8b47999374b87931c77b60a96a2d4 +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.send_followup:104 +#: f003bf666ab2407abfdd4416f87c1363 +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:3 +#: eafc302ded3343bfa7c60d20da0291cb +msgid "Defers the interaction response." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:5 +#: df92e0185cc94f369a94a9f7c3e4d4f4 +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:8 +#: 820010f987a64387a35e5c0080467f76 +msgid "This can only be used with the following interaction types:" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:10 +#: 2178e13bd96246b2b10c95327192cd9d +msgid ":attr:`InteractionType.application_command`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:11 +#: 1456b98d7fe04bd6867edc1cdb4abd0c +msgid ":attr:`InteractionType.component`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:12 +#: 29822a6142e9410ca2d1d9d83a96fd15 +msgid ":attr:`InteractionType.modal_submit`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:15 +#: 14e0ba720bca419b8e522b34e997f1b0 +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:19 +#: f1f0c011e33343a69a5fe55bee726d78 +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:24 +#: d756d7d3612f4083829475d5026de3f2 +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.defer:32 +#: a14d5150e093472dbe422e4c56667fcf +msgid "Deferring the interaction failed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.followup:1 +#: 7cf892fc660444d698051a80c722de6b +msgid "Returns the followup webhook for followup interactions." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:3 +#: 4b5c695549c54ef7ab2bb8aa2415c8f5 +msgid "Deletes the original interaction response message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:5 +#: 282a94146db246ec9bceb2e4b6fefed7 +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:8 +#: 394d4b023ed84168a9f8389747a7b41b +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:11 +#: ea3684f1004940f3b8e8de7102aefd59 +msgid "Deleting the message failed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.delete:12 +#: 6891dda8e4994181b173976f49c55d59 +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:3 +#: 6f30e222be6247b4ace76de5ba0c5b27 +msgid "Edits the original interaction response message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:5 +#: 5c47f45c0da14d5d9d7848955f02fb2f +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:8 +#: 71a97a38704a49a2bec5f4c577e4fcf6 +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:12 +#: f9e671739a04499897ad79ca3d4e41b2 +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:15 +#: 0813010dcf904b128b2dc4d7167b3f0e +msgid "A list of embeds to edit the message with." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:18 +#: c346ef612dc144f8aa1653c2ca3e6c3e +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:29 +#: 8cf7f2b7a8294feabbba1e3be5da1c33 +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:37 +#: 6221bcc307ca47fd83865c20efddaf57 +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:41 +#: 828436be57f74170a414271192eb3539 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:46 +#: cdfc2e90938c457f9ab2737ffab74a5c +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:49 +#: 9a308a4a2c34444995ab4570d2376b10 +msgid "The newly edited message." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:50 +#: 4904bcae5564406d9f48ae6887540994 +msgid ":class:`InteractionMessage`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:52 +#: 332fa654af644c9aafa1d235b4466dec +msgid "Editing the message failed." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:53 +#: 7cd8271b907b4b21854be77974f8ce05 +msgid "Edited a message that is not yours." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:54 +#: 1e9fa9fbd69e4e4cb54484433e9101cf +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.cog:1 +#: ../../../discord/commands/context.py:docstring of discord.AutocompleteContext.cog:1 +#: 6dda90c3ae154814a40ba59bed13deb3 +#: 46774b29ee6b4a7d9ede07c4ce25b00f +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:1 +#: 48def13f6174498892c7611747545cd9 +msgid "Represents context for a slash command's option autocomplete." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:3 +#: d78982df0e9a4cd99797b03021587f19 +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:15 +#: ee98d3f82d63421bb90c23a0c914479a +msgid "The interaction object that invoked the autocomplete." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:27 +#: 59a530105ac6485197b9bf2cefe8e50a +msgid "The option the user is currently typing." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:29 +#: 326327f43433488a8304984c578d455b +msgid ":class:`.Option`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:33 +#: 59f72990e3c14649938ce6341ee0005f +msgid "The content of the focused option." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:35 +#: 58801cfd58d44239a96812222e3aa822 +msgid ":class:`.str`" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:39 +#: 4c4055bc1b5242568ae0246a1a990d13 +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:41 +#: 808133417bf3421090c005298b52fda3 +msgid "Dict[:class:`str`, Any]" +msgstr "" diff --git a/docs/build/locales/api/application_info.pot b/docs/build/locales/api/application_info.pot new file mode 100644 index 0000000000..e3d846ad59 --- /dev/null +++ b/docs/build/locales/api/application_info.pot @@ -0,0 +1,403 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/application_info.rst:4 +#: 74cc9bfd5756481fb562646a5aa70d5d +msgid "Application Info" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:1 +#: 67cc303e9e844f1ca659a36456c444ee +msgid "Represents the application info for the bot provided by Discord." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:5 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:7 +#: 1124ffb2e42b46588081249f2347d068 +#: 1b1d4c131f034b3586d4deae1e0c9601 +msgid "The application ID." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:0 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:0 +#: ../../../discord/team.py:docstring of discord.team.Team:0 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:0 +#: 19576e9482234cf2aa10aee0803837ee +#: eb9e87675d7448bd9c87c88d4a1120fa +#: e5ba1ed92fc74de5a6950d97e6ff1a88 +#: 0beb967a69ef45ceb7763eeb3dc4c123 +#: e8d765c6eae84e9fb157dae64cad6d74 +#: 9f0fc6db0cfd4bc9b00d2518bd3f98a2 +#: 385296ec5bd14426bc90f124bd4e133c +#: 0af3be474a06423e977f2b441f84cd59 +#: 987d58c35c3e4c338a33f6a2fdf5a7ca +#: bf705be8aecf4e6b9dc48e2f7600a388 +#: a92646588c9f4cc0ae6e61772d477ab2 +#: 0674149be2a944ca999ae49f5e601996 +#: cfb243f065514d19b860b62d1ccaa127 +#: e3a96ae485014a2fb9be751474f5fcc2 +#: 92ed3996583c43d59eac823d7dfd43b6 +#: 3f5abcc229fc4eedbbd75cd841d5ffe6 +#: d393db4b36b34bf8b9ccacec2284d786 +#: 7528d93cc1f84431b0810b651a652439 +#: 8a71354038764ef894e1dcc7d9fecd94 +#: 069b37b065144aebb132d31f645d12c2 +#: 5457fab930b0423aae0f654e0c5c4636 +#: 29b3cee3bbe84611b068b6b259bd0580 +#: 7b68c801a7ec4e5789d94ebd2f9141cd +#: 703da5fbb2b64cfabeb8bb91296bf423 +#: 2025f53e11bd4695875937f126fc3d5d +#: 181b416bd32a4c09a0a558bccc6edb1f +#: 8a2bdc95647948cfb921dc46c63ab9c0 +#: 57950b71f84747a1934ec1e67a3b0da6 +#: 013f2f903b8043b7ab1845f5f84bbe26 +#: 21b80740c5a44c28902b1147c2097f18 +#: f36425ac77184829b251c51ecf9fb3bf +#: 6fc93b77dea445ffa9533c19add272e3 +#: 56e392ad0d3243deaf3e3cb944f6c042 +#: 4a30598bc54c4a3aab96264ecd6d8ee9 +#: de414c3332244706ae4557f3a87dfe8c +msgid "type" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:7 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:9 +#: ../../../discord/team.py:docstring of discord.team.Team:7 +#: ../../../discord/team.py:docstring of discord.team.Team:19 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:33 +#: 9e634374a91345b49183cdc6fd9e24f2 +#: 28dcab5434c6413fb97f42588f4f39ea +#: 457812db4b314881a926ee03e86a9898 +#: 3f80eef1cfd346a9bd2e6c43cc081baf +#: fcbc9af0bba843ee8657a882e3a09cd3 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:11 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:13 +#: efd203ceea5943b8b4c6604167817498 +#: bba498da8c0d4d148a5d76b2aa544210 +msgid "The application name." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:13 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:33 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:62 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:71 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:15 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:21 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:34 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:41 +#: ../../../discord/team.py:docstring of discord.team.Team:13 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:27 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:43 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:51 +#: b643514396354533a6acfa1127ad419f +#: ee1525281bc84b7cbe2b2b314f49dace +#: 5d459ea63fdb4d3cac7c675933be4037 +#: a324d24a8b594416aacdaafb5e674459 +#: dca178caa46944bd96eacce75e750097 +#: 326981a57a1e457e8b448cfcfc2ee4a3 +#: 0c48a2fb50114deea8bd0f6949c2c9c2 +#: 979cc869319543979b872a000e8ffe54 +#: 3f30e80dd97841a5b80cbc2f3b87cacd +#: 2cdaedee07e34da18f8d4c3a51981a4e +#: 5db2364da5be4f2281478dcf2be04e23 +#: b18f16bc10504511852b2d398c7332ef +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:17 +#: d723203de31d4393b5d900748a147753 +msgid "The application owner." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:19 +#: b407039bb0ec4c978c9ddba84f0bc8a2 +msgid ":class:`User`" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:23 +#: 44cdbd2ebe8f4f7db3a5643f5659b2d5 +msgid "The application's team." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:27 +#: ea4867fdec25441a8351aefd9d2f5f73 +msgid "Optional[:class:`Team`]" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:31 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:19 +#: 4e8e2eb7fe7d46a49fc65690284ddc64 +#: 897452b1fc6b4b7c8c58a40ad2300f6f +msgid "The application description." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:37 +#: 08f798d700fc429cacbbbe837dac3ec6 +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:40 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:47 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:63 +#: 331891c1013643e99d25bd56396c6484 +#: 4ffdc171660e444d8572edeebb447f76 +#: 749b73d6cbd44f47a2f04fb424d1778b +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:44 +#: d607c73714124830ab4b1beaa5982315 +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:51 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:25 +#: 6101d10d23e2492bb99926518b019347 +#: 23387591c8984590b91cb7eed48d8bdb +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:53 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:27 +#: 7b9060949a424ef68146ea7243a6ae14 +#: fe8d034329534fc9a8b8e5226e7009cf +msgid "Optional[List[:class:`str`]]" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:57 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:31 +#: 2e7625a1090a480e841f2bbf9c2de937 +#: 0a1ea5c4c37743259ba5f6ce858d1720 +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:66 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:38 +#: 25824f9683ad4427b8de0c38d4051a04 +#: c3de806ffd2541109c481affee79c8f8 +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:75 +#: b4b25b0e55f0433e83562bdd22959cd2 +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:80 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:90 +#: ecff4b129f4f45509cc190e1a82c3ce6 +#: d542b7fb344647adabfa084a333ae9c1 +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:84 +#: a16580ffeec747d596b4e9077fe2b2e3 +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:94 +#: 3ea1bf80312b4ed6b5c59a1c5e7dc3c8 +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:99 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:107 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:115 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:47 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:53 +#: ../../../discord/team.py:docstring of discord.team.TeamMember:57 +#: d8ea2bd900a0489684084903b6c36dde +#: d284414d044b4587b7bb242d9468f4c1 +#: 5c5f38add34f465c92bc538636bdadd7 +#: 3e73e9e7460e4b319ed0f37536125521 +#: 9157f2f39f01457387245ac79a958496 +#: 14554aaaeafc4c07887d3af848a4648f +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:103 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:45 +#: 732e1ba0b3de4383a9ef9b83cf245d73 +#: 2acfd418ba5246fcb21ef2b3596edbe6 +msgid "The application's terms of service URL, if set." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.AppInfo:111 +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:51 +#: 645cd576ee2c4680b5a56d946d532840 +#: 658b05ab5b334ae1bb899028050da520 +msgid "The application's privacy policy URL, if set." +msgstr "" + +#: ../../api/application_info.rst:0 +#: e7d8765c380a4c9eb0944c511eed77ab +#: c7cec794944443f5ba534b9bd63acbb7 +#: 0205a0d7e3004bae839d1cc65a73e96a +#: 7c5cc8a7f2c5408bbe7c6be139abb163 +msgid "Parameters" +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.AppInfo.icon:1 +#: ../../../discord/appinfo.py:docstring of discord.PartialAppInfo.icon:1 +#: bff94f7e897b4f60867da6300aa80604 +#: 0ff389dd282443c0a171af3d78775fa8 +msgid "Retrieves the application's icon asset, if any." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.AppInfo.cover_image:1 +#: 7730be7e119d4951b2cf3f0ca8bcda19 +msgid "Retrieves the cover image on a store embed, if any." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.AppInfo.cover_image:3 +#: 5fd587ca1e8e4b848ec3523fdbaf3d20 +msgid "This is only available if the application is a game sold on Discord." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.AppInfo.guild:1 +#: ae938df96b6443e2822efc053c40bdf7 +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "" + +#: ../../../discord/appinfo.py:docstring of discord.appinfo.PartialAppInfo:1 +#: f36a0f6452e24fdc8ed50b109685437f +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.Team:1 +#: 11145d31bf024c7bab80025c64b7c96e +msgid "Represents an application team for a bot provided by Discord." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.Team:5 +#: 6fd71d9ed5b14389a1ae4e17d712b453 +msgid "The team ID." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.Team:11 +#: 28ef979653274e248c6ff0c8a55caf7e +msgid "The team name." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.Team:17 +#: fc41a0ab74f048359f01ba1c0968cb76 +msgid "The team's owner ID." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.Team:23 +#: d9c75b2bebe443d89d306c35b9e84253 +msgid "A list of the members in the team." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.Team:27 +#: 3d9afc4316934f55b07913d7e58251d0 +msgid "List[:class:`TeamMember`]" +msgstr "" + +#: ../../../discord/team.py:docstring of discord.Team.icon:1 +#: 463a76fee53f40b9b2a9609a55b59143 +msgid "Retrieves the team's icon asset, if any." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.Team.owner:1 +#: 63b9080cfbc8482893b8eb12edbf7051 +msgid "The team's owner." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:1 +#: 63ff0073e60346fa9a97204437389398 +msgid "Represents a team member in a team." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:7 +#: e3f7fa8116ac45168cab02e5b26f882c +msgid "Checks if two team members are equal." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:11 +#: f0d991c870f546a6b3319505f2cd0730 +msgid "Checks if two team members are not equal." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:15 +#: 5266854fb4bd43669d9b8e72e938dfd6 +msgid "Return the team member's hash." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:19 +#: 83a317ee5a0b408a9f4758fda47626d8 +msgid "Returns the team member's name with discriminator or global_name." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:25 +#: b01570cd3fef418eb1ce60372ab3dcba +msgid "The team member's username." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:31 +#: 2bb030dc84814e048a006790d4ffaa0f +msgid "The team member's unique ID." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:37 +#: 606ede4553ca4c83abeb3ec166dde072 +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:41 +#: 8cbf4ee534434f2a86504f300e21d3d5 +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:47 +#: c3884e88100b42d7b70c00c9b99fa3ad +msgid "The team member's global name." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:55 +#: 49d9f91963544551be434d0d46347ff3 +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:61 +#: 35c4e103f2254c92b80b8d875089dae3 +msgid "Specifies if the user is a bot account." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:67 +#: fcd21ee7de4e4c99916043f99c1e02f0 +msgid "The team that the member is from." +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:69 +#: fb5cd5a9218c4fce92ea9f2d95ab46fb +msgid ":class:`Team`" +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:73 +#: f5d05cc227b3458a8e126c87397c8666 +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "" + +#: ../../../discord/team.py:docstring of discord.team.TeamMember:75 +#: d7cc240edc334834aedd925553167159 +msgid ":class:`TeamMembershipState`" +msgstr "" diff --git a/docs/build/locales/api/async_iter.pot b/docs/build/locales/api/async_iter.pot new file mode 100644 index 0000000000..e3df9b032e --- /dev/null +++ b/docs/build/locales/api/async_iter.pot @@ -0,0 +1,189 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/async_iter.rst:4 +#: 683210b308c6452eaa81b17e1758cde5 +msgid "Async Iterator" +msgstr "" + +#: ../../api/async_iter.rst:6 +#: 26660b1f875c4116b27b57231b3e326a +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "" + +#: ../../api/async_iter.rst:9 +#: b2a8e2358fff4dee94538dd7db885436 +msgid "These async iterators can be used as follows: ::" +msgstr "" + +#: ../../api/async_iter.rst:14 +#: fedb68a3877f4bf9852c7f4d88ebf653 +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "" + +#: ../../api/async_iter.rst:18 +#: ee607db54b2c48399a3993ad596a5e4e +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "" + +#: ../../api/async_iter.rst:25 +#: ea99bb1f015e4745a085c595d3f45632 +msgid "Iterates over the contents of the async iterator." +msgstr "" + +#: ../../api/async_iter.rst:31 +#: ../../api/async_iter.rst:39 +#: ../../api/async_iter.rst:50 +#: ../../api/async_iter.rst:70 +#: 50240befea20487a938b5c3a1962b897 +#: 88aa64e2c65e49549cc72afb29d11079 +#: 4f95ac8bdd4e4ed5860bb668349643c0 +#: ebb326024af642caa846a9c8d1e5cd22 +msgid "|coro|" +msgstr "" + +#: ../../api/async_iter.rst:33 +#: fc2a0e5b432b46688ed1bfe2e81923ba +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "" + +#: ../../api/async_iter.rst:41 +#: 8e78bfd5f23e4fa78ed058d83f803620 +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "" + +#: ../../api/async_iter.rst:43 +#: cebb25e3e89a40a8a9feb2e09df074b5 +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "" + +#: ../../api/async_iter.rst:52 +#: bba5fc8cdec74acdbdf398084ae65c71 +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "" + +#: ../../api/async_iter.rst:54 +#: d800ba8608e54e989bb3ad7e8402e459 +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "" + +#: ../../api/async_iter.rst:57 +#: 7b251694963241aaae3bed1c7d8cbc4d +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "" + +#: ../../api/async_iter.rst:0 +#: 5e49651663164532b4c188e7f9394698 +#: 06e87b915f3e4228881a5514b6a00865 +#: 71a78339b59244759117eab739d2bf8d +#: 647540de23184651ae6d19f426de83ae +msgid "Parameters" +msgstr "" + +#: ../../api/async_iter.rst:64 +#: 980baa97820542859943b5e915b7291e +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "" + +#: ../../api/async_iter.rst:0 +#: 2211459cc06e4959a9d358fbf30fb169 +#: e96973ea3d57420497cbef89229b1b1b +msgid "Returns" +msgstr "" + +#: ../../api/async_iter.rst:65 +#: fd39c8efddfb48dabbe8042c515512b5 +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "" + +#: ../../api/async_iter.rst:72 +#: 9515f54767c5484bba41645724d6e70d +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "" + +#: ../../api/async_iter.rst:74 +#: b8db6657e3ba49f1a150adf43bd3441e +msgid "A list of every element in the async iterator." +msgstr "" + +#: ../../api/async_iter.rst:0 +#: d1d2046aaf5c4fd69ff7ef7375d0b3d2 +#: 8d1fdc4db23d471aa821ca1ace2f2cbe +#: aab818990f18433e93d0cb25aaab6308 +#: ffef918ac0614e37ae24ac20c9915dca +msgid "Return type" +msgstr "" + +#: ../../api/async_iter.rst:79 +#: 5074748f45454936b9d1cfe063527db2 +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "" + +#: ../../api/async_iter.rst:85 +#: 6393efcbcb3f47d38f1d9a3e5cd573e8 +msgid "Collecting groups of users: ::" +msgstr "" + +#: ../../api/async_iter.rst:92 +#: 717925fddfaa4df2bd9630eae0a2648c +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "" + +#: ../../api/async_iter.rst:94 +#: add0fdb0c5ff469aae610f6c9c8325bd +msgid "The size of individual chunks." +msgstr "" + +#: ../../api/async_iter.rst:95 +#: ../../api/async_iter.rst:113 +#: ../../api/async_iter.rst:130 +#: d482560e0a4b46a792f1cbeaa515857c +#: 7774370fc45f4f54b7e247891786b2af +#: c6022e74eeaf41deabfef4ae43c8f694 +msgid ":class:`AsyncIterator`" +msgstr "" + +#: ../../api/async_iter.rst:99 +#: 064e5dad853e44059d92e277ce556721 +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "" + +#: ../../api/async_iter.rst:104 +#: a29ba78bc12347d6a668a329ef6012da +msgid "Creating a content iterator: ::" +msgstr "" + +#: ../../api/async_iter.rst:112 +#: 5a0baeb5df5d452591bafc3d4262eb82 +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "" + +#: ../../api/async_iter.rst:117 +#: 8093476ff4f941168ba84770614e0bed +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "" + +#: ../../api/async_iter.rst:121 +#: ff128eb38e014fb7ab8d315b033fb599 +msgid "Getting messages by non-bot accounts: ::" +msgstr "" + +#: ../../api/async_iter.rst:129 +#: 0218f7cdb3cc48bc8cdc637c9302b0ee +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "" diff --git a/docs/build/locales/api/audit_logs.pot b/docs/build/locales/api/audit_logs.pot new file mode 100644 index 0000000000..efa74ad104 --- /dev/null +++ b/docs/build/locales/api/audit_logs.pot @@ -0,0 +1,996 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/audit_logs.rst:6 +#: c15e7cd810f943f28c384477750f4f15 +msgid "Audit Log Data" +msgstr "" + +#: ../../api/audit_logs.rst:8 +#: b0e7037de5f546648bf72d690c1ded4a +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:1 +#: c16e0a4155244540969a7ad0dbbb4106 +msgid "Represents an Audit Log entry." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:3 +#: 37848f380eba497886afcb59340fa3ff +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:9 +#: 01d8023134d6484b904d45265e979c57 +msgid "Checks if two entries are equal." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:13 +#: cefb6c8408f94b1f9c157fb84ac1bd04 +msgid "Checks if two entries are not equal." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:17 +#: 75e42cbd096245d3ac7fae79dadf793a +msgid "Returns the entry's hash." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:19 +#: b9c1b72d908a4400a3263cf3f638c8b3 +msgid "Audit log entries are now comparable and hashable." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:24 +#: fdc08052c4c940a1b7e0a45a4e86e46f +msgid "The action that was done." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:0 +#: ../../api/audit_logs.rst:0 +#: 77fc83cde9ff4a79b7698efcbf4442c7 +#: c3d2889d125c481ebd191ec6a179c253 +#: d2a278e08dde4150b5dcd92ddb321dcf +#: 3c577c20e66c4e9c8d87d90f55396906 +#: 83c485385fe3478290a0e78dedcf9cb2 +#: d4d94dd92843423db8465de85409e5bf +#: 9edb5cae872e4dd3877591d5a7001b92 +#: 6f39b2f108094f9381a9a3838f656705 +#: ea85bad4af264314aa2c7ec6e16d1e53 +#: 888211cdb8ab46758cfb862cc4a3d5bd +#: 5873a38c4b474eb49674201367bc55e7 +#: 14d7b570aa5440ac91af03d9d8ddc1ce +#: cbac2288ff274b719bdcf57f8b9661fb +#: 0e91bcd374344924b95f83fbe77acdc7 +#: ed7384c9d8d6407eb8b0b145cd1b0a43 +#: 12669c582e7f45689043622ba5bd5b40 +#: 52630aeafd804fa999184290dcdd066e +#: 4d2c80465b854d4d80922e7e5ca5a332 +#: f840f1761b5a4a508ba57b2113a897a9 +#: 1b29fadde7984fd8b4998aaaad2f28e8 +#: 619d10656cab4f38a8f13dd01055559a +#: 72a4088527df4f81954a2771767fc5d7 +#: c60356036ca745f4b40fed50de3b3474 +#: ce2b8b2a277d418c8ffd666502e64697 +#: 93fafdc3767245c1b52628509caf0af2 +#: 74d33a3f44e64e60a33e576170b5aa76 +#: 3b08ecbcedce4e1e8f7d65b0166100fe +#: 20f20240e73442398f90c533449c5b62 +#: 626724f8358847c199a526221635442c +#: f1b22b933ffd4502ae08190e61ab1dd3 +#: a5e79d2bf9b0440abeb92e949a5878a6 +#: 3165fb299696495fbf798eff6314b71b +#: 54c6f9deb1f74456aab58fa1853da21c +#: 83b846ddac2a43d3939bd1f1847b5ef1 +#: 34a455ed93514bab850d4f8a8b31fb79 +#: f93ebef541414ae4a422ba3257083910 +#: c57b847ed99d48408e23d66e88a31c68 +#: 5af4849d13ad467c9c761975b562b685 +#: fb0c7fd0eed34636a9a0c40ae5cc04c5 +#: 6299ba933ef74274a75ee97287374ad5 +#: 018838c92cf443998e3528806f535ef1 +#: 7962ad5ea3f8408995139fc1864a0906 +#: f719b0f52c4349f7a1114e8c16abd49e +#: 287eae04e8bc4c0b8bc2f459950882e6 +#: 88015128497741aaa3336ce4accd8cd3 +#: 25e96b71d7d84bceabf66ebd3ff12b25 +#: f6dc9c09512e4f42875d84f023641208 +#: c49d2a0985e145e7a383f0123dc1ff52 +#: 99df7c68d5f24841a158b287d5cc41df +#: 31de64c8a9ef44bb90b82785f4a755c2 +#: f8c4ba816552415482b1c2d63e8f4a14 +#: dd73304f0e1a477799a52784017c8a51 +#: f7a45a775bde4406bea1e457c7060dea +#: 07ec8ed57b334e898b2027ce9a23f533 +#: 8b1ecea53f54442eb26246fcc07156f7 +#: 0a9a730958434cb6b48de053b91f207f +#: b78a900781d64dfb8728cde0bc78ff60 +#: 7095e060ff754284a061d7debf035204 +#: f4b0051464374dffbab9e489460a9e4a +#: 9e1f7ebe763c4148acace5eaffee8b7d +#: cdbfcba6d6cb422084edcdfc438027f0 +#: ae9ec0bda90b41c1804663b15d03ff46 +#: 9167517e1b4440e488acc02f4d53b6dd +#: 1b2f941479d9453db940b802623e13ed +msgid "type" +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:26 +#: eb1bb86761ed47aa9289333648a2f29c +msgid ":class:`AuditLogAction`" +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:30 +#: 066412f2b2574cd89fc465846f4a13c3 +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:33 +#: b35aa754f9f648fba64070e2a6494f49 +msgid "Optional[:class:`abc.User`]" +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:37 +#: 32ae59d50cad4b0186310a8e7eadd72d +msgid "The entry ID." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:39 +#: ../../api/audit_logs.rst:171 +#: ../../api/audit_logs.rst:177 +#: ../../api/audit_logs.rst:222 +#: ../../api/audit_logs.rst:236 +#: ../../api/audit_logs.rst:258 +#: ../../api/audit_logs.rst:376 +#: ../../api/audit_logs.rst:384 +#: ../../api/audit_logs.rst:392 +#: ../../api/audit_logs.rst:413 +#: ../../api/audit_logs.rst:430 +#: ../../api/audit_logs.rst:499 +#: ../../api/audit_logs.rst:505 +#: ../../api/audit_logs.rst:517 +#: 77f9a261fe6a44be9899d99d86a3eb8d +#: efae14602d334dc6af7f23da6d78cf2e +#: b19f850def9247d191d5a1f6f0ef6c51 +#: 711f82da8b154c25827aca6f3e1bdf44 +#: 3a3211324625490bb19bcb97d023071c +#: c51f09691c8f4659a5cddce1f4e07943 +#: efceb465209a4a239309f1b5d1afe3de +#: 4c3c46c457d945369a3529520a9d230a +#: 6200ce13167d41ccbf154adf09263591 +#: 033ec36b1cc443ce925d8006608c9306 +#: 119dcd786d094e9fa3d9f9355d2acdcc +#: 56703ed09270429582f88902d4dcbfc1 +#: 9cd5338801f9430abae7be7fe8f678fa +#: 4b30306c6a9742db97a87c0642f0b06b +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:43 +#: c524a8a01fb44a2f83e94cb40e722a2e +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:46 +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:61 +#: 63c82e15ae6c4b81b56c84ed06a65f35 +#: d765c3c8a02c4108b5f0d7fa50a155cf +msgid "Any" +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:50 +#: c4f3e86c1f3445358a51a82414495e6b +msgid "The reason this action was done." +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:52 +#: ../../api/audit_logs.rst:294 +#: 8552845caae447a6a93c291d3468bc18 +#: ab1fd845cf7847fdb5f84ece35f22c4a +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/audit_logs.py:docstring of discord.audit_logs.AuditLogEntry:56 +#: 1fafdfdb8be5486fb6c469d4a8e9ccdf +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "" + +#: ../../api/audit_logs.rst:0 +#: c08175ab86fd405fb649cf0d0c775b14 +msgid "Parameters" +msgstr "" + +#: ../../docstring of discord.AuditLogEntry.created_at:1 +#: 35c34734a85b4772ab44cafcdb0c1487 +msgid "Returns the entry's creation time in UTC." +msgstr "" + +#: ../../docstring of discord.AuditLogEntry.category:1 +#: 42a54accd66e4774b590c0e2c23cef74 +msgid "The category of the action, if applicable." +msgstr "" + +#: ../../docstring of discord.AuditLogEntry.changes:1 +#: 3f099394b54d4de38f2c30f64db98003 +msgid "The list of changes this entry has." +msgstr "" + +#: ../../docstring of discord.AuditLogEntry.before:1 +#: 413918f132a3422e93b9002da753ffe3 +msgid "The target's prior state." +msgstr "" + +#: ../../docstring of discord.AuditLogEntry.after:1 +#: 3a963ab211594298b7dce384b294f823 +msgid "The target's subsequent state." +msgstr "" + +#: ../../api/audit_logs.rst:21 +#: 9c34e793cb5f4b34a8d6cd512b05b6d4 +msgid "An audit log change set." +msgstr "" + +#: ../../api/audit_logs.rst:25 +#: 648cb0d7d9424adb89c8770d0b186cac +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "" + +#: ../../api/audit_logs.rst:27 +#: ../../api/audit_logs.rst:47 +#: 22738dc254a74ae8affa4e1f1f8070c5 +#: e75457782a604b12aeb144f622cfe39b +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "" + +#: ../../api/audit_logs.rst:32 +#: ../../api/audit_logs.rst:52 +#: 379adfee54274485af0b1e0f7dc23210 +#: fcd3038e483a44f9a03e061bbd948a64 +msgid "Category" +msgstr "" + +#: ../../api/audit_logs.rst:32 +#: ../../api/audit_logs.rst:52 +#: 7bd15b04a76e4179b168c633efa30f9e +#: b05a2b6a3b6f475982250fadc236f33a +msgid "Description" +msgstr "" + +#: ../../api/audit_logs.rst:34 +#: ../../api/audit_logs.rst:54 +#: 902907e14ba441e68b97aef85eb47f72 +#: f2d6dd2b9e4b4d6b88069f0cdb91faa6 +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr "" + +#: ../../api/audit_logs.rst:34 +#: 96aae1a9c95142c7849d54db6879d73f +msgid "All attributes are set to ``None``." +msgstr "" + +#: ../../api/audit_logs.rst:36 +#: ../../api/audit_logs.rst:56 +#: 525ec285c87441b886ce406e12a9d4d6 +#: 4d9f86b779414b2bb942360ba5e35da7 +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr "" + +#: ../../api/audit_logs.rst:36 +#: 5480a9ad1e824c3099b5563be257c2b3 +msgid "All attributes are set the value before deletion." +msgstr "" + +#: ../../api/audit_logs.rst:38 +#: ../../api/audit_logs.rst:58 +#: 739dd30af79f4035b167f2cc35db3041 +#: 0373be925ad74c8691a4b7b06d0a7d89 +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr "" + +#: ../../api/audit_logs.rst:38 +#: df09ff4f27d34aa185e94b1c06d9dfae +msgid "All attributes are set the value before updating." +msgstr "" + +#: ../../api/audit_logs.rst:40 +#: ../../api/audit_logs.rst:60 +#: 52b5f385907040839f5868a9d4477e32 +#: 7a9cdb005dbe4e89a838c79fd69c1a7f +msgid "``None``" +msgstr "" + +#: ../../api/audit_logs.rst:40 +#: ../../api/audit_logs.rst:60 +#: 111233d756ec4cf1bfd5cef5cff6cf04 +#: 6c7e921e96c94a3e854950a8c6b146ba +msgid "No attributes are set." +msgstr "" + +#: ../../api/audit_logs.rst:45 +#: edb4a55e3e5f4caabff853f3be4b798e +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "" + +#: ../../api/audit_logs.rst:54 +#: 89f9d7137cb44ab792b4337fbf783706 +msgid "All attributes are set to the created value" +msgstr "" + +#: ../../api/audit_logs.rst:56 +#: 70697ea9742a4aa89cc8b3753ad0b492 +msgid "All attributes are set to ``None``" +msgstr "" + +#: ../../api/audit_logs.rst:58 +#: 63982e1978f84b79bf1b5f1ea26e542f +msgid "All attributes are set the value after updating." +msgstr "" + +#: ../../api/audit_logs.rst:67 +#: 2bdd655c0b224e57ab49fa7ecdd5f9f9 +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "" + +#: ../../api/audit_logs.rst:71 +#: 64e739ada7d84c9ab9329fdec9e293ef +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "" + +#: ../../api/audit_logs.rst:74 +#: ea2b849865ee43b2b21ed87142d49b37 +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "" + +#: ../../api/audit_logs.rst:83 +#: ef597c9d783f40568dc26ac23521500b +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "" + +#: ../../api/audit_logs.rst:87 +#: bc618385e5f4451383183bf6a929b942 +msgid "A name of something." +msgstr "" + +#: ../../api/audit_logs.rst:89 +#: ../../api/audit_logs.rst:230 +#: ../../api/audit_logs.rst:250 +#: ../../api/audit_logs.rst:351 +#: ../../api/audit_logs.rst:463 +#: ../../api/audit_logs.rst:471 +#: ../../api/audit_logs.rst:525 +#: ../../api/audit_logs.rst:531 +#: c5c4e0ae4e45496eb32c7907364cb483 +#: 446725aaf65d4ddfb3011dd6c382a9bf +#: d40120b690fa458fb3677608ad3130cb +#: d41973787ca043fe878e0c937df69154 +#: 4b2ddc1049304c70bfa9ea00ac6484df +#: a30eef0197584b019e89d220d779e48a +#: e3f884ad7910494394662d3476eaa4d8 +#: 8d014103b85e4d18bbf90074f7f42db2 +msgid ":class:`str`" +msgstr "" + +#: ../../api/audit_logs.rst:93 +#: 0e63465fd6d14b7d8ce61e59c71f8814 +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "" + +#: ../../api/audit_logs.rst:95 +#: ../../api/audit_logs.rst:101 +#: ../../api/audit_logs.rst:107 +#: ../../api/audit_logs.rst:113 +#: ../../api/audit_logs.rst:421 +#: 4c1306f7d9c04f5fb67d12193248a253 +#: 5c48319392134b6aacddc014c3f33a96 +#: 27f36233f3e748669f14d6b5a674e1aa +#: a8c90701ac52439082d83abf62f9e7ac +#: 2bbdc8f9bd49492ebf765dbefaf45f2f +msgid ":class:`Asset`" +msgstr "" + +#: ../../api/audit_logs.rst:99 +#: 5b303b9cf83c46fca0dba405038b2970 +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "" + +#: ../../api/audit_logs.rst:105 +#: 970bba8b6a354068930ec6c5bf999c14 +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "" + +#: ../../api/audit_logs.rst:111 +#: be8abed6d08947a784fabd6da26d7ae5 +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "" + +#: ../../api/audit_logs.rst:117 +#: bec033ce155d429a831d95885153df21 +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "" + +#: ../../api/audit_logs.rst:119 +#: abf04331146546d7bd6db1c76f3bbcf6 +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "" + +#: ../../api/audit_logs.rst:123 +#: aaccca5628a140a6a100e9ae8ff6e610 +msgid "The guild's AFK channel." +msgstr "" + +#: ../../api/audit_logs.rst:125 +#: ../../api/audit_logs.rst:136 +#: 8aa8716742134fe481fb5a6efa9c8e31 +#: 94a41db4bd5b442caf00ed7897f5f95b +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "" + +#: ../../api/audit_logs.rst:128 +#: dc2ab86efd5a482d896f744e0838bb34 +msgid "See :attr:`Guild.afk_channel`." +msgstr "" + +#: ../../api/audit_logs.rst:130 +#: 5e0504eb0bb24ea0a88e0d59634b71bd +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "" + +#: ../../api/audit_logs.rst:134 +#: e6c5b28e91214bd7b7362d4386242487 +msgid "The guild's system channel." +msgstr "" + +#: ../../api/audit_logs.rst:139 +#: f290a0b588aa450aae75a95c1af3b494 +msgid "See :attr:`Guild.system_channel`." +msgstr "" + +#: ../../api/audit_logs.rst:141 +#: ../../api/audit_logs.rst:153 +#: ../../api/audit_logs.rst:165 +#: ../../api/audit_logs.rst:192 +#: ede7bc22df7845f8ae20d1d1831204b4 +#: 752da77502a64b3f80cda3b10ece282d +#: 75f60680df544cd6bd165b17b47dcae0 +#: 4f3c183d07a647a68232bc6f960e39dc +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "" + +#: ../../api/audit_logs.rst:146 +#: 8faef8366bdb43a58ffe62635a483aef +msgid "The guild's rules channel." +msgstr "" + +#: ../../api/audit_logs.rst:148 +#: ../../api/audit_logs.rst:160 +#: ../../api/audit_logs.rst:189 +#: 96ccebfcd99048b8b8f130eddd487b0f +#: d70c738ba4ed464387fe8d9dd4469707 +#: 7668ff4c498d417094db3a518125a694 +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "" + +#: ../../api/audit_logs.rst:151 +#: 2be308fc4ff24d44a416b91c21c36c0b +msgid "See :attr:`Guild.rules_channel`." +msgstr "" + +#: ../../api/audit_logs.rst:158 +#: bfff8d711723497783a47ebed12b641a +msgid "The guild's public updates channel." +msgstr "" + +#: ../../api/audit_logs.rst:163 +#: dff462f591124507b6264cdb9b1e7004 +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "" + +#: ../../api/audit_logs.rst:169 +#: 1568138420834f2391b05c079775376b +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "" + +#: ../../api/audit_logs.rst:175 +#: 5287c0b314ec41518facad6060be03a9 +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "" + +#: ../../api/audit_logs.rst:181 +#: 8d14a1e130c7403d9c1a381cb96983c9 +msgid "The guild's widget has been enabled or disabled." +msgstr "" + +#: ../../api/audit_logs.rst:183 +#: ../../api/audit_logs.rst:302 +#: ../../api/audit_logs.rst:310 +#: ../../api/audit_logs.rst:335 +#: ../../api/audit_logs.rst:343 +#: ../../api/audit_logs.rst:400 +#: ../../api/audit_logs.rst:479 +#: ../../api/audit_logs.rst:485 +#: ../../api/audit_logs.rst:491 +#: ../../api/audit_logs.rst:511 +#: da435cbab68b4c9bb613f0a21f9d3e9b +#: 5ea7f3ebf0e3458aab55647bc2b6b207 +#: d354c177497e4afeb2eda288f2c1ed27 +#: aab3070967ec4ba68ad8d040d459b62a +#: 150d6c683e5e43338ea9c52fcb44296e +#: eb1dc1ce86b84aeb9a7498d83da1ed2b +#: b66e3d7285524390ac5536c97ffcb8fa +#: 6d333e9edc9743f889dfaf5c46e70264 +#: 6b1ec8059db9461eba7c85c1813e9749 +#: 41b6b46f42b542cca84e22064c42649d +msgid ":class:`bool`" +msgstr "" + +#: ../../api/audit_logs.rst:187 +#: c39996a2e84747dc93d10ff89e1d686d +msgid "The widget's channel." +msgstr "" + +#: ../../api/audit_logs.rst:196 +#: 801f1f0e800b4c34b11266b369312838 +msgid "The guild's verification level." +msgstr "" + +#: ../../api/audit_logs.rst:198 +#: 5607dd7e4de149f29dc88cfb79f0a564 +msgid "See also :attr:`Guild.verification_level`." +msgstr "" + +#: ../../api/audit_logs.rst:200 +#: 734c187892f04c4fade41a9d6b7864a3 +msgid ":class:`VerificationLevel`" +msgstr "" + +#: ../../api/audit_logs.rst:204 +#: f55da2b798784c2e98ea700f82e4b595 +msgid "The guild's default notification level." +msgstr "" + +#: ../../api/audit_logs.rst:206 +#: 3ddff88f4798418ba297485780c239d3 +msgid "See also :attr:`Guild.default_notifications`." +msgstr "" + +#: ../../api/audit_logs.rst:208 +#: 7d348b8ad0a144738c16a613b907dcdc +msgid ":class:`NotificationLevel`" +msgstr "" + +#: ../../api/audit_logs.rst:212 +#: 4c1a0f78b396443d9aa4acf1b3c39aed +msgid "The guild's content filter." +msgstr "" + +#: ../../api/audit_logs.rst:214 +#: 8979396960e34ebfa8f70c43bbc4fa99 +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "" + +#: ../../api/audit_logs.rst:216 +#: 4034eefe613e4a599556b650983a1b13 +msgid ":class:`ContentFilter`" +msgstr "" + +#: ../../api/audit_logs.rst:220 +#: a27fb3efca7f47a1b55ef70533a61c15 +msgid "The guild's default message notification setting." +msgstr "" + +#: ../../api/audit_logs.rst:226 +#: dd6f3d7094014fb4b57bd573d461ca19 +msgid "The guild's vanity URL." +msgstr "" + +#: ../../api/audit_logs.rst:228 +#: a4f27efea9584e64bc09d1281de74041 +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "" + +#: ../../api/audit_logs.rst:234 +#: cab946ceefb34cbdbb201b6ee9faa4ff +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "" + +#: ../../api/audit_logs.rst:240 +#: cd2b82d9399b4fc1a53bd1faa7ff0a47 +msgid "The type of channel or sticker." +msgstr "" + +#: ../../api/audit_logs.rst:242 +#: 4c4285a9bab749a4a8528ec7d131df5f +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "" + +#: ../../api/audit_logs.rst:246 +#: 60f321ea7cbb469d8d488dc97e96023f +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "" + +#: ../../api/audit_logs.rst:248 +#: 7b27114b6e11464e9f2e37c9017f987a +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "" + +#: ../../api/audit_logs.rst:254 +#: c2672f5fdf1c4c66864f02f146c1a0d7 +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "" + +#: ../../api/audit_logs.rst:256 +#: f4774c7dd9bb4800a5a94a6c67b562f3 +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "" + +#: ../../api/audit_logs.rst:262 +#: a8e6fa9993e84b819491b9ca68fb802e +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "" + +#: ../../api/audit_logs.rst:265 +#: c583fbbb96a1450bac4273b8b018711d +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "" + +#: ../../api/audit_logs.rst:271 +#: cdaab8d4d2bb4c95960cccc87668788d +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "" + +#: ../../api/audit_logs.rst:275 +#: dd4d023a07754d20869e7c45e3045b06 +msgid "The privacy level of the stage instance or scheduled event." +msgstr "" + +#: ../../api/audit_logs.rst:277 +#: 508657738a654db1b7eb6838f21bd0e6 +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "" + +#: ../../api/audit_logs.rst:281 +#: 46995ba9d85c4080af86b7665885f165 +msgid "A list of roles being added or removed from a member." +msgstr "" + +#: ../../api/audit_logs.rst:283 +#: a0e20a7805af4926a3fa92e47895f7f6 +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "" + +#: ../../api/audit_logs.rst:286 +#: f2df3a2b3b1849bbb3878af005243bac +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "" + +#: ../../api/audit_logs.rst:290 +#: 4d70f85ee1ec4a2381d32f10d335eb69 +msgid "The nickname of a member." +msgstr "" + +#: ../../api/audit_logs.rst:292 +#: 16305a55a7c842b188d1ccbd3742c186 +msgid "See also :attr:`Member.nick`" +msgstr "" + +#: ../../api/audit_logs.rst:298 +#: 35419da87a914a11b46ff7fae236ead8 +msgid "Whether the member is being server deafened." +msgstr "" + +#: ../../api/audit_logs.rst:300 +#: 064049dcc09946d394019bdf067049d4 +msgid "See also :attr:`VoiceState.deaf`." +msgstr "" + +#: ../../api/audit_logs.rst:306 +#: d764d48f607042e285298a7b2995279e +msgid "Whether the member is being server muted." +msgstr "" + +#: ../../api/audit_logs.rst:308 +#: 6f2f962dc5e54ccd9062f510af15c64e +msgid "See also :attr:`VoiceState.mute`." +msgstr "" + +#: ../../api/audit_logs.rst:314 +#: fe8687b2538d4db4b0f4aa82a8d0a8c7 +msgid "The permissions of a role." +msgstr "" + +#: ../../api/audit_logs.rst:316 +#: e89aa3f4fab04e3c8b084cf0ca8b29ee +msgid "See also :attr:`Role.permissions`." +msgstr "" + +#: ../../api/audit_logs.rst:318 +#: ../../api/audit_logs.rst:407 +#: b8ee17b89d06486894ada8257b51077a +#: b28c52db483d462d9a4a19cb548cb0a2 +msgid ":class:`Permissions`" +msgstr "" + +#: ../../api/audit_logs.rst:323 +#: 4da7e939e514443c8a9e16bff5eaf851 +msgid "The colour of a role." +msgstr "" + +#: ../../api/audit_logs.rst:325 +#: e2211420ff06488ca4538d66c441b2b4 +msgid "See also :attr:`Role.colour`" +msgstr "" + +#: ../../api/audit_logs.rst:327 +#: 078b52a5307145a5867e268f7dd9c91b +msgid ":class:`Colour`" +msgstr "" + +#: ../../api/audit_logs.rst:331 +#: 18e2a34ffc1243a38abe7abb91ec9011 +msgid "Whether the role is being hoisted or not." +msgstr "" + +#: ../../api/audit_logs.rst:333 +#: 762b47089d634dabbd143aad28ac6b9a +msgid "See also :attr:`Role.hoist`" +msgstr "" + +#: ../../api/audit_logs.rst:339 +#: 22f67e8949e341e9bc501a8058af5e77 +msgid "Whether the role is mentionable or not." +msgstr "" + +#: ../../api/audit_logs.rst:341 +#: 15c7f2a8346848e195fd3b084516f324 +msgid "See also :attr:`Role.mentionable`" +msgstr "" + +#: ../../api/audit_logs.rst:347 +#: 4ef6f0361cb542e7bcb23bc0dd36648e +msgid "The invite's code." +msgstr "" + +#: ../../api/audit_logs.rst:349 +#: ad1db9cf2cc04650a0c4fa67e0b2605c +msgid "See also :attr:`Invite.code`" +msgstr "" + +#: ../../api/audit_logs.rst:355 +#: 49f35564ce96413196fb574cea5bbeb8 +msgid "A guild channel." +msgstr "" + +#: ../../api/audit_logs.rst:357 +#: dee6f7b2ca214481bf352411a4127029 +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "" + +#: ../../api/audit_logs.rst:360 +#: b5c18089d22443fdb6744b7e54265149 +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "" + +#: ../../api/audit_logs.rst:364 +#: 4f4f4e2df1884936945c72e140cef320 +msgid "The user who created the invite." +msgstr "" + +#: ../../api/audit_logs.rst:366 +#: 41c0b057932f4fdb831f10a123f4f5cd +msgid "See also :attr:`Invite.inviter`." +msgstr "" + +#: ../../api/audit_logs.rst:368 +#: 9c3d05e61e0842d492250cebdc30de68 +msgid "Optional[:class:`User`]" +msgstr "" + +#: ../../api/audit_logs.rst:372 +#: 785fe8eb046342ed8e3d1820b6171fc1 +msgid "The invite's max uses." +msgstr "" + +#: ../../api/audit_logs.rst:374 +#: f23a0ed1b8764469a5363f90e504b0dd +msgid "See also :attr:`Invite.max_uses`." +msgstr "" + +#: ../../api/audit_logs.rst:380 +#: 2f7a9ebe47b24b3289f28a2af2df4064 +msgid "The invite's current uses." +msgstr "" + +#: ../../api/audit_logs.rst:382 +#: 0697b46b1b1a46ff9aa3f95a624a8f53 +msgid "See also :attr:`Invite.uses`." +msgstr "" + +#: ../../api/audit_logs.rst:388 +#: 1ccb1f8f72844dcbb048f17a94ee6a76 +msgid "The invite's max age in seconds." +msgstr "" + +#: ../../api/audit_logs.rst:390 +#: b5d3678b20594a5f815453b4f8518588 +msgid "See also :attr:`Invite.max_age`." +msgstr "" + +#: ../../api/audit_logs.rst:396 +#: ef58ca62545041cca49baa61fb343e9e +msgid "If the invite is a temporary invite." +msgstr "" + +#: ../../api/audit_logs.rst:398 +#: af67554ac8044df4a29aefb2b3401ab4 +msgid "See also :attr:`Invite.temporary`." +msgstr "" + +#: ../../api/audit_logs.rst:405 +#: dc4d674c3f28400e8361fa172b779c7a +msgid "The permissions being allowed or denied." +msgstr "" + +#: ../../api/audit_logs.rst:411 +#: 371791d7ef4e4ecb8d38a07a6070d232 +msgid "The ID of the object being changed." +msgstr "" + +#: ../../api/audit_logs.rst:417 +#: f540f674d6474fb8b63d04b273858111 +msgid "The avatar of a member." +msgstr "" + +#: ../../api/audit_logs.rst:419 +#: b836e98621804b13a085b320db564b6f +msgid "See also :attr:`User.avatar`." +msgstr "" + +#: ../../api/audit_logs.rst:425 +#: 7b62e7346b814745b8c95a4f415c9984 +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "" + +#: ../../api/audit_logs.rst:428 +#: a727ab53b80f41e0a0ff884cbb1769bf +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "" + +#: ../../api/audit_logs.rst:434 +#: 7e8d6adaf21e44bd8b352011f1bbdd86 +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "" + +#: ../../api/audit_logs.rst:437 +#: 5eea22819cb84ace84ff22d4e4eca544 +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "" + +#: ../../api/audit_logs.rst:439 +#: 26a26dcb023b4335a5401b828880afb6 +msgid ":class:`VoiceRegion`" +msgstr "" + +#: ../../api/audit_logs.rst:443 +#: aa13a908998247d5a5c6b4f1105db8d3 +msgid "The camera video quality for the voice channel's participants." +msgstr "" + +#: ../../api/audit_logs.rst:445 +#: 2f820e9c62fd44d7b4f1d67638eb6ca4 +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "" + +#: ../../api/audit_logs.rst:447 +#: 69066d43b5f045e49a33eec9ff6d02b6 +msgid ":class:`VideoQualityMode`" +msgstr "" + +#: ../../api/audit_logs.rst:451 +#: fcf66655ea9f426f9fb75681433021dd +msgid "The format type of a sticker being changed." +msgstr "" + +#: ../../api/audit_logs.rst:453 +#: bac989ca498044eba06367ab7dfa6634 +msgid "See also :attr:`GuildSticker.format`" +msgstr "" + +#: ../../api/audit_logs.rst:455 +#: 4bab0c4f82da46b0a6db49bff1ccf5cd +msgid ":class:`StickerFormatType`" +msgstr "" + +#: ../../api/audit_logs.rst:459 +#: b8ae93cb7b2d4d74af69a82dbdecd356 +msgid "The name of the emoji that represents a sticker being changed." +msgstr "" + +#: ../../api/audit_logs.rst:461 +#: 1781bca470444de9a4d6b7ab31571a47 +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "" + +#: ../../api/audit_logs.rst:467 +#: f4aabbb068064df8af5244ad049889c8 +msgid "The description of a sticker being changed." +msgstr "" + +#: ../../api/audit_logs.rst:469 +#: 13447d39e8f74a369753ce9b67583f77 +msgid "See also :attr:`GuildSticker.description`" +msgstr "" + +#: ../../api/audit_logs.rst:475 +#: 3a82a86af6b84b5f9083e815345ec579 +msgid "The availability of a sticker being changed." +msgstr "" + +#: ../../api/audit_logs.rst:477 +#: 334832529c474126b92c8c76bf7f94cc +msgid "See also :attr:`GuildSticker.available`" +msgstr "" + +#: ../../api/audit_logs.rst:483 +#: e429e343ee4040fb978dd3ace51dfd41 +msgid "The thread is now archived." +msgstr "" + +#: ../../api/audit_logs.rst:489 +#: 3624467b8c544d64929c19e279917797 +msgid "The thread is being locked or unlocked." +msgstr "" + +#: ../../api/audit_logs.rst:495 +#: 40135d8e19024baf9e887b135810e19c +msgid "The thread's auto archive duration being changed." +msgstr "" + +#: ../../api/audit_logs.rst:497 +#: 6e370527751f40e8a0852525260dcb09 +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "" + +#: ../../api/audit_logs.rst:503 +#: 49a68128a1c8419eae71d41acf3ddb55 +msgid "The default auto archive duration for newly created threads being changed." +msgstr "" + +#: ../../api/audit_logs.rst:509 +#: af1fc2690db941d7be6015fbdec83129 +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "" + +#: ../../api/audit_logs.rst:515 +#: 92b70a2eafdd47af9ae03b88a54a908a +msgid "This command's permissions were updated." +msgstr "" + +#: ../../api/audit_logs.rst:521 +#: b8dde8324c9845ac910a7aa80ee6d36b +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "" + +#: ../../api/audit_logs.rst:523 +#: c7e2046260194accae7da7099026c93e +msgid "See also :attr:`VoiceChannel.status`." +msgstr "" + +#: ../../api/audit_logs.rst:529 +#: 1028bd2d6f464ae48a24408209380e30 +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "" diff --git a/docs/build/locales/api/clients.pot b/docs/build/locales/api/clients.pot new file mode 100644 index 0000000000..180aafe6e2 --- /dev/null +++ b/docs/build/locales/api/clients.pot @@ -0,0 +1,3959 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/clients.rst:4 +#: 723ac37bda644d2181cb3df9c4c833f9 +msgid "Client Objects" +msgstr "" + +#: ../../api/clients.rst:7 +#: f5a4ed36d6a84272acf23c5afab0c592 +msgid "Bots" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:1 +#: 8400a3a76ec1437498368512f2bcd8e6 +msgid "Represents a discord bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:3 +#: 5c56ee85934b4790b06f26caec909ed9 +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:7 +#: 241bd5c3a34e4392b8a6581c2767d0a3 +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:14 +#: 76747a81bf1d4154946509eeddff1408 +msgid "The content prefixed into the default help message." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.store_url:0 +#: ../../../discord/bot.py:docstring of discord.bot.Bot:0 +#: ../../../discord/client.py:docstring of discord.Client.store_url:0 +#: ../../../discord/client.py:docstring of discord.client.Client:0 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:0 +#: 560eb5d041474f8b93073a52bae970da +#: 5b8e12be2e2244f2b1f628987c52633e +#: 82dc8e078ca8440b98e99a943f7ad1ee +#: 5f2243a92d4c43f28cb1a2e4daf1c0c6 +#: 4b9ecfa5eb284deeb0548250176a4191 +#: 306f1e629eb74fb8897156f57deef766 +#: 7d1a0d003e9a4f24bc90817b46fa956b +#: fda9202ed81f4662b3410aefa9fee419 +#: bfad4152b6654d87b3506b23ca0ca1a8 +#: eaa7f8f7e18945ea99556d3a0b40fed4 +#: 8114137706544f19ad6b7667ab35fee6 +msgid "type" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.store_url:5 +#: ../../../discord/bot.py:docstring of discord.bot.Bot:16 +#: ../../../discord/client.py:docstring of discord.Client.store_url:5 +#: 4ba364e8ffa94975b363bbe62943da28 +#: ba970c9790144df49b7b45acd8f64d8f +#: e1daef67201b414bb42b8069f7ec7194 +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:20 +#: f0a6d897b9a74825856b3ed0d0bdf075 +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:24 +#: 28670aa78ebf4c3895e10886d6316c0e +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:28 +#: dc016a35e8654b73b6546b2366030431 +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:36 +#: 7a7751b24b674cfeb944b5d46e42d6d6 +msgid "Optional[Collection[:class:`int`]]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:40 +#: 45a36a811f6a45e184e6cc9343cf8dc3 +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:45 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:25 +#: 78e894745191469fb6df43ad5513b831 +#: 8634aab7c85847109ab9f0cddc8753e7 +msgid "Optional[List[:class:`int`]]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:49 +#: c0b305ec45b44c44834fc2584f057881 +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:54 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:18 +#: b45762ac677e4ede8a83b12bd8bcedc0 +#: 374d768efc3849968fe9c8d012de6b22 +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:58 +#: c00ff4be197447e3964bbc0d13cb246b +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:64 +#: 1851a493f6f14c01ac9393ca67e53686 +msgid "Collection[:class:`InteractionContextType`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:68 +#: 55913631ea9743b8a11dd7c19978ef24 +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.Bot:73 +#: 0f9f34c953de411c945a851f32bc0ec7 +msgid "Collection[:class:`IntegrationType`]]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.command:1 +#: ede0ee8579c24e949538216bce9a910e +msgid "An alias for :meth:`application_command`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.command:5 +#: abc8f0b084cd401aacc2646108465bdc +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:0 +#: ../../api/clients.rst:0 +#: ad2dc10d548c40968eb973127142a32b +#: cd605e7e5962488ab3e2441535990042 +#: d26b63e1b0dd4241989d229e204c2df0 +#: 3cb58a3abe1b42c1819b2852310d653a +#: 383b7b70518e4373a487cda57b5af7e9 +#: 894ca1b95aa546fa989ebc8cdeba861f +#: 76dd9328c31b4a4f950ccd0e3951a95b +#: 50b3f627d64d43968598406f8a54b014 +#: 96723fb434f94be5a857bec15ed52438 +#: cd623e270a47436b8f61ff60505e83cf +#: 29c266428c724030856e400f0321170c +#: c846f5d2939f47388cb6d8ca7e75a1a5 +#: c938d82420ef4100a294a971ae9ed880 +#: fd85f38bdfd648178e90d9d7b75e359b +#: 59323c4d26924524b3f0a37f55605994 +#: e9d1b7d02e6341219d94f03c85af5364 +#: 8dcb3fd905cc4640a1d94643105dd392 +#: b147c7c183114833a614aa7b243e3b87 +#: e6969df24be54c1da77efc157913d736 +#: e93403a910dc4626bba9fb32741c8826 +#: 3157343eb8dc43c38f49f7485b6f3d24 +#: 54efaf79f48a481191c6c2ef7a886625 +#: 7a83a9a6026f4952ac18057feeedb044 +#: a2a19ee71307460f80ae4578c4f898de +#: ec2f88c1b04a431b919f2c01623a7ceb +#: 6c5dd05f8355405694fbe5caef91d952 +#: 7021a46711cf48be81a448cf99bcc300 +#: a992274a962d49b3adbed01c08305bc3 +#: 505eba02bdac40fa8c6939460ddea2db +#: ec75313d2fad433688bb875739cf6d7a +#: 1e50c06626664dd08e180ce2955084c0 +#: 5673023f14b44b36bb7fac32b389ad45 +#: 97550b4584b74d1e9783d96d7875f522 +#: 7b275bcdc8824baf9d004fec6a402927 +#: 7f1c51a5cc4c4c2796e15a859b6285db +#: 06c8b2622dd442c09e0031e5559ffed9 +#: b9370b37d8e645559aa91ca09575bfb0 +#: 6e4228b8637c4bbdb95f961ff728b5b9 +#: acb479130c6c4c4fa24e3ac9a459b0b0 +#: fcd4c918263c4ac38b6da29d9300e600 +#: e5f8ffadc716437a9cd23f89854f5552 +#: fd8c7252279e4d0e87cbdae1c51f4138 +#: a07b10a2b17e4c239bc0aedc5812efb5 +#: a2d866b2ea2e4c71a66f8ac6995548d1 +#: 25d6527aa9924cb3a76aa4eafb2f4b7d +#: a9eae85fe0ae47e6820bb3c64a52847a +#: 927d4def3d134ab0964b4a75b65cfb45 +#: b904b232086d4a538782517a0ed2f2c4 +#: beb68282cac74211922acbd18f8f1518 +#: ee953e8f018642689e6214524a6e81a7 +#: 88e1862d242a4a25b71a9be0f312b398 +#: d5bff679a6f44712a51a51efc1b52ec9 +#: b2c46fc5cc974d7bbb26de75cab0fc44 +#: 86f701ec5df341db9c16576c019a5adc +#: ab586c5a25de46ad95f31d7932fa193a +#: 7b36bf2fbe3b4ca09b2275fbfe911178 +#: 732ea301d61e4e4eac4956b9863943df +#: 848439c75ed04f11ae69dfe536c0af84 +#: 2f95791bad804502ab41d84e11174228 +#: 4a550f3e39764ad191a79b792f96368d +#: 48751aba4f864130bdd3f4ae79529334 +#: 717af0cacac54b2ab0c701da28608172 +#: d442aa3704a24c1aa6a8222025029ac0 +#: e05214ca95aa40a1a802f38701dfdfdb +#: 33fc961f8a614163a6dbf83c846b8426 +#: 54c712e4666a427e89e123b963c0ff1d +#: aa170a708a2748799b64e1d6e92be480 +#: 6707eb4053824ac7899660b3e5ec810d +#: 258fa6bd8ecf4bba9fc03f5881f90c62 +#: e0f6f617681043f796f22dae5afb1682 +#: 25c9ad0bb8bb4d6c801b600b90c22080 +#: 37a5ce03d24b4b1abad9fbdd9e6b126b +#: 7ff5b03cbdea4d9bb79adaa7dad08d37 +#: cdfa2d8bae6049e1b80a42885c189af7 +#: 12de9b8c375340afa46f1fa6ed553cc2 +msgid "Returns" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.application_command:6 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.command:9 +#: 1dac05e697c7439aacc0f377b675f758 +#: 3ac657fe5790429d993c8722d4db5e8d +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:0 +#: ../../api/clients.rst:0 +#: b5a22ed2f79040b2a8deb95f91416849 +#: d13af68c11444be193cc57060b9a1dd7 +#: a135a1aad44744079848b59aa8959a9b +#: fef47654c88e403dad85dc4284b5a5ab +#: 554f6802f4174ca49a08c4f404762728 +#: 49511cb9a7ad486a880ef83bf2b1b2e5 +#: 6587a9a35be04d6ebd805391f1cfaeae +#: 679603f71c3842ceb9ab9301877e0a68 +#: 755dcc201bf14875a0f66b9268ab8006 +#: d70f77a306c44a01b87030581102cfb4 +#: 80db389f7eb84893ab0b237312ef5b00 +#: 5572b6fc69b947b6b4a38b5a3a0919fd +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: 94fb92d7017746558cdd49a5591ea65f +#: 065b24140ad64f89bb8aebb7cbaaab81 +#: 1e47d1137dd948f7a4766ae5501226cd +#: ecaa6e582e60430db9758f5ad91318c7 +#: 169835626ad247a4bcc302daabf74f2b +#: 00df3d9a2f42415fb50effb3dcc752e2 +#: 804ec08a0674477f81206af58d000d7a +#: 87d6c1142b8d4e4f84dbc4462fa8af12 +#: d01fd2e5a7ce4d7c8e3c738e2769c0b3 +#: 6a5cda973d654ea292590a860372879c +#: 47506201077a4cf2a2d31c3225e7f066 +#: 5dc7f8a955dc46239ce157d05489e188 +#: 211c294473a74b80966d5142f36889f0 +#: 655d0d4943ab4822aa21d4e4a750d74b +#: 3f756d9875684a0ebe2664b9ca14132a +#: b7ac4b96f8d2402ba0daae8c56c55910 +#: ab9ba099fcf94cbb9bb79464abb21fa8 +#: 30cedd7bc2524dcd8393358dc4220ba0 +#: 8df350c04c424a6ba39097fe0b5f8a9c +#: 802bd62917a4494ba82f62bcf514d251 +#: c813b855074d4004962e777b87bdb92b +#: 026a834fb831418abc59198052da3f3d +#: 9ea4f8399da44aaea81fb23e3636094a +#: ff2fb46d9b514c9db7c97625b6860b5f +#: c776ad51021d4b88a50e1e87662bf4a5 +#: debdd6040ed54284b88a03af08565e89 +#: a790a13a3b374ccfa6539df0da75ab14 +#: af518dff3a924c3692ddb1727631c81a +#: 964fd3d72f8a4638a2cd1aa6eba8e90d +#: a39ed20e35f6497cbebf8dd51db83282 +#: 0318902c412842688fcc7601eca20120 +#: c242929a185d4df6bf8e611b2503ad35 +#: 0b07ec28ffa74b5e943e3960efb05f46 +#: 3c762db1c73744bf9263f420b2d0fd13 +#: c8bff2129ef94c92b91c2684b455fb49 +#: 16d43023a6a94a47b5b56f57af1febcd +#: a2c09b8f20574ab79a747329d3503ce3 +#: 4460b1afe4114b72829010eb59eafd57 +#: 102f02ec514e40c6a9abc6ea7cc5c0a9 +#: 3f0de5426516441c99db34593b7e76bd +#: fdf1e9a2279d4eb58248039fe85a12b5 +#: a36820dac60442efadd03945a9e6409c +#: 4d2be1ab62704a58b2282edcaba56fd6 +#: 61f62503ff3d47988c9c3b73b4fd67a6 +#: f627f1de504a4f858c9fc9c0bb7765b5 +#: 8a4790df119448958f55375ae269bd91 +#: da174cc48e5f42449dc0e38a760562d4 +#: ab271bb8eaa64c84bfbf8fc4a5f04c85 +#: ea9b5165364344309fd46a0b8964f658 +#: 1879c2ee176041a0a33adfa857e07a65 +#: b8b05edb8fd84b0186997f8774607629 +#: 089db70b582e4143a51cd8bca63a5c70 +#: 94216295287f411db45f9d97669c31e8 +#: 01ccba7a53d3449a80fef398feca1744 +#: 3d46b24131da4d71baa1a403351a13f2 +#: 71a39f6f6b5f4081ba8f012baa01467c +#: c0a0a5aed8fc41da88cf79e8b6e25ff5 +#: a3202959866146a0aff38d6c12f11dea +#: 07247ddef85646b09f31f869456d229e +#: 880c1f374e41407ba3b1835749059571 +#: 5d764859d6374b26893675bd081a52a0 +#: 840944f5f14845dc875b17a65737415d +#: d2d1ebd66a394386a1f2a9a9e67f8971 +#: 9d1772a439e74c9e806e5f5bfeffcced +#: e61d862bd02448e98559cdc62cc79a80 +#: a80bb9f4d5aa4efd8a8e32a143d1e2b8 +#: 77716d47efb34628a3324f87821da31a +#: d05485c3b7814dd2895479ebf7aec378 +#: 2f1e5b9cadcc4e6f8181348f30f18041 +#: f70d2082f0cd41b787b6b74910715194 +#: ffc6e8dfb789431a9e07b950d4425493 +#: ec487369222e4fca9c3158f3caec9ae7 +#: badba9b8478e49008827b8dd0498d9ff +#: c1f096be4fd2457681e9a05d99c4eaa0 +#: 4c7f3a57f1bd4d358c1452f99a26112b +#: 7c160114763646f2911f5650769bcd44 +#: 92509cd4a5ea48a1a8f3652933a1f50c +#: b01c77ea9fa3442f89076d81af2e4827 +#: 924082c6d3a14e7a827ff7d41096fb7d +#: 27ce0d1faae44f67b52ec5fe02ef48d2 +#: 99e552d6bb834842b984939e413e839e +#: 2fe16feb6e224953a79569ca72f083c9 +#: f9b414072cad4a8f9d240e959829f272 +#: a634831de2b64b5ea7cb0824b4f39c0d +#: 53d3e38998374a1490a28102fa247da7 +#: de31d614a334434db6fca7659aef782c +#: 93cba6b90f3d4245aafe5267c0fef2bf +#: 169fa44fbc374bba9738a7092242bf8b +#: 3b5bd87be16b4e00babc89f6dedc7785 +#: 1964b28d4c46484697f52e43a3640e3d +#: 5ce2894ffbb24f84aff58ca6067faaf2 +#: cc1701003dd0416f8b21bec3209c1965 +#: 2461fc8f93224b9794dd6a4847b7cdc0 +#: 4b2a910c2b0e48f7b0f9c3611abea29b +#: 7b978275810c42b7a93ffd0f46feee19 +#: 2d0d5d612d574fa49434ccc3468dafc5 +#: ac213499d9e74ffaa375ead79237ba66 +#: ee5cb234cfdc4f0bb3a94d07c4f9bf64 +#: 20d9f3bca1dc429abf48d7006eae2851 +#: da79c0cc44da4f92894bcf7811899442 +#: 9ce4dbe4b3e6468f9559c0f3de5e8dca +#: f9418cdab1884f49bec18b5e6965b8b3 +#: 696eee3339444aa98b26aa161f558fde +#: 24552246326b4d1da3a32f205594da36 +#: dc7bc75b877a47b281112181bb3c4f1e +#: f658fc3d91514417a203b9c4121a102e +#: f99a5bcbe9664f2fb61550092dfe42a8 +#: 709dc58325c146ad8a210ad694c05c1d +#: c82622e54cb648629112c8277e6ce928 +#: 691cc94283994261acbbdb685d4648ff +#: aff4a87e8ab24e42a5821a9016ae8c94 +#: 5c69e4444ff14950a6e51e17df0d96a7 +#: 661ae464da8e493ebd3265ad9d14cc99 +#: 1a8107f2039d4b3fb87bf64434d68d29 +#: e28d011acf07437186d5b7f5fdf2c47e +#: 1e41f7ff1200408c98627ca6b0970045 +#: 13e6658a246543729d4837668974417c +#: 9612293b8f1e424cb1ae7b35279d676e +#: 606afb97d6624f858e67593ee96461ba +#: be8a500b69c2437a9e6f654900273468 +#: 0bc17ef066fa4ac1bdf2f2626d59f721 +#: 7bfcc2a229054ab7bffff34c8c11146a +msgid "Return type" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.application_command:8 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.command:11 +#: 345ed55a66c44c4983a66090789aecc8 +#: 474ab42ae6e948239450d90239bdcbf9 +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:1 +#: 441663afc2e74b37a0ddd0c6805b8773 +#: 35cfe3da5dfe44d2995bf87aeb1a214e +msgid "A decorator that registers an event to listen to." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:3 +#: c6dc5e087bec4eac9b921c9a20528fad +#: 7d5f8e58c1464f75826c12241640cae5 +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:5 +#: b90fa4213ca24bf38c3510fa7c307036 +#: 58aa1c39e6954e56ba22f92148d0d097 +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:9 +#: e29528c36b9b4f09937e3c217970dacc +#: c1c2cb3ef1b0421ab29258750cf15303 +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:0 +#: ../../api/clients.rst:0 +#: be57f62d640d498db3acc576e8c69090 +#: 853e4bafa2c8478789b84f073f328614 +#: ad56de6ed3ee40d4b537dfd9f8bcc2c4 +#: 6ab72d7126304941a2843cd3f79e15bc +#: 4727e7dbff374a62b8a56c79dc66082d +#: 6dcc2de71d1343bc93b3f0bca6661072 +#: f7d3143efeea400d85cc0fcf45b1e15b +#: 3888f66b0d7d4eb7bfc805f9807a41d7 +#: b4b22e18c1bf40269e3dcfbaec8aae03 +#: efa73facdf57418f9086572e7be0917d +#: d365fec41ab64fd19b3077f49a1088a4 +#: 9dddf4f4551d4eb09d25088e95eed7b5 +#: 00e6bd39c7fa4184844b6f7e7afcc5ef +#: b897a699a6ae41eb83dee4e67d3b0f4a +#: e4def2a95d484a9584fa73e8d26c4d1b +#: 93af98486bf7445e9912df5e0da0b0ea +#: 6c9daf6bb4464e6cbc2c184b3ccea998 +#: 0a5f7aa535f24ca794e3c8734d4caf5f +#: 5333ac2171494bb08f73a1fad01039bf +#: cab1be0a9d7a4ab18612dc4bdf535020 +#: 378fed9230884b5e9680753fe70c3989 +#: 51511a34fb6745aab1ca324ba180e340 +#: 5dedee9ffe954a98b442886bf9d3ad82 +#: 2bb0d55c9f1e4b3489bd47b620ca3883 +#: e83bdfd3d60a4138a597146189b7446c +#: 2666501d112943b8b6641e0ee36d76ed +#: 2dedf3a6f1dc49659f49c24c160668c1 +#: 030c800da6fe4125a6793dac77090d13 +#: 464d20a47b214cafad7bb287a9170959 +#: 0a10d9431b554d73a537dfd8562a4c2a +#: 7a001b252eae49a9bb203933c0f86d61 +#: bef5a653ffcb49058581e91179132959 +#: a4b77c72d7304faf95f607d29c420265 +#: 682b417abdc24a17b5707893afe48ce7 +#: bf0470379b8448ff913202bb3e5e482a +#: 672ac979dea24ee2967990b7c6876087 +#: 6f7439d05fe74134a3cba76c45f1feb0 +#: d2979170ff9a4e38a342022eee855ac7 +#: 9792f6926b8c4136b9e0d9a88349b0fd +#: 327a1c7ff82245eda15614c4c6772fe2 +#: b7b872c56d8549acab254047c73e59b4 +#: dbced7c8cab84f3cb5d4868eb76f02be +#: 57317a5b8b1d41caa56327ef0b005efa +#: 0675e68d9cfb4f5484bd40cde18d62e8 +#: 2da51d64fd8b41e184cea90ea5127bdb +#: 45404c1729cb4c77b240153091f44b39 +#: 652a3602dcf643ad95baca0999d75a1d +#: 4780abb167544ca39f591e7e3ee7f177 +#: 61167c3aa5714ab8bdf7e8d16f766c32 +#: 0b882eea1eb24a4ba037ef4c661677ab +#: 5fe56a006d574708abe19ebbaf839261 +#: 989cb3e7316f411684a2f2f71df57cee +#: 8d6f5f8a307743b08180ebbd41ad6a65 +#: 923b691c5eda4326a0fe4609ae128330 +#: 7a986e19f5234dbfa252d048b6caec32 +#: 9a962e3cc5b446f19fe2060b94c3ef7c +#: 638c26c0971d460a88da17c4913716d7 +#: ce67fd07db6c4cb2be8130214f54f17b +#: ee9588b74f8c4c8c853afcf7757ae542 +msgid "Raises" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:19 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:18 +#: ../../../discord/client.py:docstring of discord.client.Client.event:13 +#: a11c6d8215d44d1b970f9f4eec435480 +#: dac8224ddbd144bc80991d9f8509ae1b +#: abc0b29447334a61ab35f241b27c1a3b +#: baba393bb0ae49f19ceb10505a6118f6 +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check:12 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:18 +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:15 +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:16 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:15 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:16 +#: ../../../discord/client.py:docstring of discord.client.Client.event:16 +#: ../../../discord/client.py:docstring of discord.client.Client.listen:11 +#: 40c782af18fa4b6d95ff04ed328711de +#: 4b54c577282844ab83de80cfe4c6af2e +#: 24b2a7241cb049de8a09e3130bf59982 +#: 8afe70b1dc3e415bbcb3587ae113f646 +#: ba886c1958ae47468695dc36cd20fa30 +#: 833994483f0d48bcb79e761846317133 +#: 2d6af0e10e374eb2848aaf6af07794ca +#: f7de44b1ef2a4b67a251df6e6af58ff3 +#: a3b23a83636e4ff0884ee5aa3fa28ef8 +#: b9d54dd7bf244706a4965777dc689eab +msgid "Example" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:0 +#: ../../api/clients.rst:0 +#: 197545f9c6ed4c5da3e235134e4fe25a +#: 3200a85e4002416db55ed3790af21f4e +#: ff5108bb0b184c7082382a51ee4ba248 +#: 17352eb8d90a471c86796deec5f40361 +#: 3a0cbb5f03924ae4b02a402fe8156523 +#: 3c6cba4ba69e43249df187fcaeb5f207 +#: 8bf1ef24b9714c1c8e0436865b442e9a +#: a03bb4ec204c4867b740eb2c4bc3d398 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: 0a0a385dda714190bf496404866e2af0 +#: db76e6d208474bfc84b77836563a197a +#: 1c0e015c47964f358c1c5adc8047b7c2 +#: 53782ddd4eb34037ad076fa1e2cdfa2e +#: c0bb632d73734973a0c9803a773856c4 +#: 76ebe78f49d5406b8bcff947b1188cda +#: b9c75f273aa84490bb67b9aacb293eb7 +#: d374bb7d88ff4ad88004319adbe16e45 +#: da55697a42454226914e63e848802002 +#: d569963daf604dc0929b2cc260f6e425 +#: 27e559c2588446bfb64518202432bf28 +#: 340efc183485425687d5238c1b4e8ee3 +#: f95bc5d223ff4f8ead1fe5ba86b4fd3a +#: cc185377777045ed8cae6a6f8d16080f +#: 566abd84b14f427a9dbe20726cd99445 +#: 029cc544048741f8a32c92d8ea711013 +#: 1995e834bfa04ce98aa43f02bd2745a4 +#: 9fd02f2306464787b89f67ed08c49f2a +#: cab4484c55b54eacba7c50e15f403e73 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 6f62c3e4126e4f1d9ac1632fc0c3171a +#: ffedb47fd77f4ebdb1c99090a0b02e34 +#: 27f71253914a40edba4d77094cfe7dec +#: e9ead5736af7495ba221a2d1992672cd +#: 12749535ff49481182da2a2ec34b9cbf +#: da97a67fe9994fe0b94255df49a75ed4 +#: 3a1fbb9de2374039a8ff52fcf12e996a +#: a438a50bf66a4cfaa5e55132f98f73e4 +#: af2aec7258344ad9821d8c9c8259d262 +#: 31e5a0f0b18c4af7a2cc48e41e074ee7 +#: 38874805f6fd45a883ba429c2a56ad94 +#: d88e8f9f91bb4bde8abccb335b2cde80 +#: 8e8c5f82562e4f3b9c1d49482ad89eb3 +#: 47a5091f766b451ba33af11fc227084d +#: 42ff24e5f86b4c29b20eeed05c9650e4 +#: 6df14924c0eb46a58ee315215fba3920 +#: 432763572a054d7bb7fb8230f90cc48b +#: 6fd754899db947a4b47f1b9b7ecd8ee0 +#: 433ff478012f400db72e7311e175e2a3 +#: 3edf86adf5184a6db314e6d2839705ee +#: 46267cc2cb3d486c80898b630547f2b3 +#: 16286c4e9d50448e8d3cccff73312869 +#: f5ba6997cc1b4f94bde267310393f0fe +#: 4131e1a412cc4ae1829327f279db52b2 +#: 1a8e598de55d4d8fb95493a9a7d5cdfa +#: adbb7a12e2be46b684ccaf3937f59030 +#: 126bab5d28df4076945e353f8cc66265 +#: 4d185c8addc74c73953c4d8cdb7a5b85 +#: 635d299c487c4fd09e46c7ea8bebecb1 +#: b310b635f7104b079d66c699e5b1670d +#: b09e7584c7924b8c878f3b38d8698fbe +#: d014102ef5c04d42b619ab47b561aa7b +#: 5c7bc37965884f06a01efded890a005c +#: f2d022183498401eb01e39e25ae37983 +#: 886abef879ea43abaa6d54261cfb65db +#: 6e64558dbd6343cf82de7adaf453c3ee +#: 3b144b522d85406fa87597b741bc92e6 +#: c5cebf3e015c41fbaeb471c479f80940 +#: 0b2c8ae345374cd5ad92cb2d7c3e4c23 +#: 61bdd2138a7145e49fcfbb06c5819cdc +#: f99bb94969c84b0f99d1d3c39e0713e9 +#: c07496ecf5294daf943152162082dc9b +#: 944756aa81e34907af880c9ea3ddd943 +#: 147cca0786d54eb69d945b63207b3745 +#: 766edd8512fe4da1b373f69daada2d18 +#: ec1a4eac600947e687e4425c1282b47c +#: f4a8c85f5dc64e909e5a91702c370f9f +#: 46c0ae7b19ec48b0a912ca69c5aadacd +#: 989285389886409c8f586c58b6fe0289 +#: d2d62c9970654ee69a7e17de1eb2bbf9 +#: f8266b4b91944b22bae1eac1a3158267 +#: fedcb4d1a60a4c289e4ce817db897b82 +#: 5ebd23eef5514c248000d3ffc204f705 +#: f9d0fca45ae84f75bab0aba914ab1748 +#: fe70f059854b4d858ed68d0d755c7481 +#: 41199ef869074e3799085a543cdd33be +#: b032e9295e8b4ac6b54d798c14528454 +#: 8ee6fd501abc4565b862958d5ea68f37 +#: ae5e698cae5348f69edbc9f8c0206b3b +#: efcdaec772a34acea7a7ff2cc9a8b8e7 +#: 080b97188f5a44679891cfb716d50114 +#: 531d98130fa640628418465734b04948 +#: bb7b87c5533e47abae22a1a467045355 +#: 4c1d59b060c14828bb288a9d9bee7fa4 +#: d1a485d3d5f74fba92eb13b8822cb24c +#: 30f14682942d41f2bd2f5be46214835e +#: f68ce3e250504f88a824be11b48f8b19 +#: 8e0965c64ae5468da1307dc14ff5a65a +#: 4efb3a1a17574ccf93828edac73a671e +#: affbe6440cd94dd58feadbc9f23454da +#: b83bbaea7aba4c25ba84d6a4e738cc7b +#: 6cd3e47c071e4b888f11df9e47d726bf +#: a32d372fc9f34a179efb70f960db2fcd +#: 930c99067f4d4e18b32760c013f09ed6 +#: 2cfcfdc4cee548bc9de54b20d5f7a07b +#: f3f070a5df9e4529a8188975d95a68af +#: 6ca27af7f6a44eb090306905a05e852a +#: 6d3464f160a64ef68ca38de871dc28bd +#: da4483a3d8e4455983851fabc0f7dd02 +#: 090b5d14104b4a8ea1a57f292fa2e91c +#: 911388eab6284c94bf9dd20715497a43 +#: 2f3ea52112814b0f9ac99c61e56465e6 +msgid "Parameters" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:25 +#: a4d2aa79666649ca85e4e8832e7231b4 +#: 92a9bc95fa124cc2a6481b3544402054 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.message_command:1 +#: 368652e3c875428c9e7ed908c22e2bbb +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.message_command:7 +#: 230957d3b00d465ba1057bb8dde0375d +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.message_command:9 +#: 446d89e18a984c0899a05c5dae9c9d25 +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.slash_command:1 +#: a72b3011a0c2494e95b73c91ef1bc5d8 +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.slash_command:7 +#: fa51a00b24dc4eb8b85cb16e577cd0cb +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.slash_command:9 +#: 8cb4f64fc9b842e99f656c4edc427b1c +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.user_command:1 +#: d09c64206574417eaa7824f3ba7b7070 +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.user_command:7 +#: 2a5a5484ad2640a090cb56f82cfed16f +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.user_command:9 +#: 47980633a0e74e72af51935d418cd0e5 +msgid "Callable[..., :class:`UserCommand`]" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:1 +#: 9048c5a633c04c42af7a06b523435b08 +#: b990261ea99f4f60a22b8c2f020d9aeb +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:5 +#: 5c8494eb3a3847a28ea86a13f622b0ca +#: 28112742cc894834a4199c50514e92b9 +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:7 +#: 62d1c8d54d9e4c5f8dd4f61219b254f1 +#: 7d847ee8a4554a5da695f22ce3d5313c +msgid "The function being listened to is not a coroutine." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:11 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:11 +#: ../../../discord/client.py:docstring of discord.client.Client.listen:8 +#: 05065b5c67e1401295e5b37bd9a647ce +#: eefde4a89ebe4183b4d58c68754a33a3 +#: 0b4f57fc36b548dc991b0b9d9359c3db +#: 176d61be271e4a91a68e8a2183190329 +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:29 +#: f2f041a61e2c4d96ae51fe3d10cfbc89 +#: 467abba7c2824825bf9ac0b065144559 +msgid "Would print one and two in an unspecified order." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:35 +#: 1ad893ae6d404e859a724d1384c3e12a +#: d3c9f02c02b647ffab3f8609f92bef67 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.activity:1 +#: ../../../discord/client.py:docstring of discord.Client.activity:1 +#: 6fab55fc960c41ab9946f4589469eba9 +#: e0fb8761f68647b98e67aaf36915f6df +msgid "The activity being used upon logging in." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.activity:3 +#: ../../../discord/client.py:docstring of discord.Client.activity:3 +#: a411bbe5b00c45c7a62f7f721f3d5fdd +#: 07fab2799a934430abec2938a4bcf215 +msgid "Optional[:class:`.BaseActivity`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:1 +#: 1c8bb7dda2c643708eff19f7c8e760ba +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:3 +#: 96cc010f3bdb49578bdc4e547b0bc6cc +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:9 +#: bafc9036dfbf4fae92be90bb73f90d70 +msgid "The command to add." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:12 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:10 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:26 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:55 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.add_check:10 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.on_application_command_error:14 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.remove_check:12 +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:12 +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:20 +#: ../../../discord/bot.py:docstring of discord.client.Client.before_identify_hook:18 +#: ../../../discord/bot.py:docstring of discord.client.Client.clear:8 +#: ../../../discord/bot.py:docstring of discord.client.Client.close:6 +#: ../../../discord/bot.py:docstring of discord.client.Client.connect:18 +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:16 +#: ../../../discord/bot.py:docstring of discord.client.Client.login:14 +#: ../../../discord/bot.py:docstring of discord.client.Client.on_error:15 +#: ../../../discord/bot.py:docstring of discord.client.Client.remove_listener:10 +#: ../../../discord/bot.py:docstring of discord.client.Client.run:28 +#: ../../../discord/bot.py:docstring of discord.client.Client.start:11 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_until_ready:6 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:24 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:26 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:27 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:12 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:20 +#: ../../../discord/client.py:docstring of discord.client.Client.before_identify_hook:18 +#: ../../../discord/client.py:docstring of discord.client.Client.clear:8 +#: ../../../discord/client.py:docstring of discord.client.Client.close:6 +#: ../../../discord/client.py:docstring of discord.client.Client.connect:18 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:16 +#: ../../../discord/client.py:docstring of discord.client.Client.login:14 +#: ../../../discord/client.py:docstring of discord.client.Client.on_error:15 +#: ../../../discord/client.py:docstring of discord.client.Client.remove_listener:10 +#: ../../../discord/client.py:docstring of discord.client.Client.run:28 +#: ../../../discord/client.py:docstring of discord.client.Client.start:11 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_until_ready:6 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:28 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.close:6 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:18 +#: e593feebb1924681b8862ef74835f00c +#: 396fefe4d32b423d959c3f887cbca407 +#: f96cd92a798a4613a4949f67c608e4ba +#: 410ed683533f4e69b309b898a2e56c7d +#: 4e36c2c3e0ae4be2ba520d3da81da7b8 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: af1fa242a1ce4af9a40dba844bc2afb3 +#: 020ff49101bb40e38da9f516406c9bb9 +#: aeaa8913e17b4c6094e865bc4eb2758f +#: f1b8003468d840da8d87720db56a2d49 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 5092aef21ed04ac0a53ce01638c8dbeb +#: 1650afc076de4977b48fde4ee813a4a4 +#: 9e633b862c4649929de4453d9bad722e +#: 01c462225adb4cb4b13fc7032f16e557 +#: f3a57d3708d041b7a08b91f3ea9ca622 +#: 5a2ccd2edddd4ac4b00cf3fba72d6654 +#: 39d4afaebac24131a46f6098c5c58f09 +#: 7701245bf3df4b31b76db46e70b876b3 +#: d893fa3cfb00417cb55d8a13aaa6ae7d +#: 40a10565c47e428783ba0ea80c1dd7df +#: 22e11d6921c449e4a282d4e6cecffca2 +#: a82c72e18e4f4a0698fcf91710484de3 +#: b3431cf7df38407a8c52ad667f884829 +#: b612f982e21d4c8991792b7bd14d5052 +#: 307ff7a1145140b3a2ee8c4e76a523a7 +#: 4af94ee1f29d445f96c987f1dbc0425e +#: 30d25bd2c028485f8f97cede1b03fb69 +#: e58f53d3374643a298dea9d2633f3945 +#: 67072d527a8749d5b3944df61ef219d7 +#: 83b2892626554fc598ad77afe00dbd7d +#: 1db8857732b04df28af09ffedc5ebe1b +#: 88c3ad85bb944f3da68503ca6321c03e +#: 4b3c254d53434673a7b6aea9f3a2a2e4 +#: 90a5d20f94fd4706af268419a555f337 +#: 66c3687dd6914a5a8f9e909edb1bfbd5 +#: 21c2bc0f542a4a3aa5994723dde6521c +#: edc9fffdc5ad4ce99edeeb7be1213bcd +#: b625287bbd8b4b449aca6b82f3d4735f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.add_check:1 +#: 4676b197eaa64f3c8557578155cb0212 +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.add_check:5 +#: 1c565c3a3b6e4e609c1d3fef171ba6aa +msgid "The function that was used as a global check." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.add_check:7 +#: 383356d72dc04d609b99e2a0d22194d5 +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:1 +#: 469c368d1b3e4018a39712ff4c210d82 +msgid "Adds a \"cog\" to the bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:3 +#: 01d697723a104b94a08803b7def2ef43 +msgid "A cog is a class that has its own event listeners and commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:7 +#: 058f78a5848240a4a363d75624ed841a +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:11 +#: 694b2692377043a5b06d75034db6aa97 +msgid "The cog to register to the bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:14 +#: cdf4075cfc104eb0970e8eb045d4b797 +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:14 +#: a8747915f97546c7a620d5cf9b8de8b4 +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:20 +#: 4cbbee08205341f39663cc6867ed645b +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:21 +#: c646093fb86146849becfbcaad49ea63 +msgid "An error happened during loading." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.add_cog:22 +#: 841c388e38ef4bf5bce9805ddc53a54b +msgid "A cog with the same name is already loaded." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:1 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:1 +#: 88e689f9afc241369d6babb194fc1a03 +#: 4b214f203e12429ba249629d5b435fb9 +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:4 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:4 +#: a0730900749a47e2bdda31ad8ba3f0dc +#: 9bdb658ed327483d848cf491f8b3bbb8 +msgid "The function to call." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:7 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:7 +#: c7ea41591aab47898209118e9d6aada0 +#: a4fcf86c7d864ec6867029102373ac9d +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_listener:10 +#: ../../../discord/client.py:docstring of discord.client.Client.add_listener:10 +#: ba943995cd6f4f42838a634814e22ca1 +#: a2f5ee9251644bfd97d947e158ad4764 +msgid "The ``func`` parameter is not a coroutine function." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:1 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:1 +#: 8fdde2412a434bc889eb2470635efba6 +#: 5bfee65c9551403997926307bfac288b +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:3 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:3 +#: 184b080c1ff64b3c92c2733aa9df8c75 +#: a51b4f92d6494f518fa69f07e378bc51 +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:9 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:9 +#: 00b0dfac3aad46efa3411ccc01fbdf2f +#: a403d4bd52ef4a1a8ab3a5f9c7f787f0 +msgid "The view to register for dispatching." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:12 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:12 +#: 0516f38c619c48ae8fb7173ca478d0ef +#: 46830f4ca2de4aa788ccf77849200801 +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:17 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:17 +#: 4c66a1b617434ebea41a052d24391a33 +#: ab74c62568f741c08aa18e7010c55481 +msgid "A view was not passed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.add_view:18 +#: ../../../discord/client.py:docstring of discord.client.Client.add_view:18 +#: 648db641fb244b8a97a98f317abbd5e4 +#: 375d822827c74905bc6957583aa1a261 +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:1 +#: 65f44d7ffe264126a3533d77b1464e65 +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:9 +#: 4781d1ab818644d08703f1bed8ce105c +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:16 +#: 93110892f84044658ef3957825682406 +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.allowed_mentions:1 +#: ../../../discord/client.py:docstring of discord.Client.allowed_mentions:1 +#: 2b6755c1d276469ab419792ac6020ccf +#: d3a62f27dcc644f29fae06b98d24599f +msgid "The allowed mention configuration." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.application_command:1 +#: 3a6bb0789c0c46faa50beb35215a0bb9 +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.application_flags:1 +#: ../../../discord/client.py:docstring of discord.Client.application_flags:1 +#: 8b07e863b4da42b087185fe66a4e4782 +#: dfae6e3bc62e49a09c2ee43781c23646 +msgid "The client's application flags." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.application_id:1 +#: ../../../discord/client.py:docstring of discord.Client.application_id:1 +#: ../../../discord/client.py:docstring of discord.client.Client:27 +#: 7b81e6817aa3453dadfa039d5908f380 +#: ae7d062cf9c948289a20102ae95031b7 +#: eee3342a379449d5a4d5e777fde6ff85 +msgid "The client's application ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.application_id:3 +#: ../../../discord/client.py:docstring of discord.Client.application_id:3 +#: 7d1d35144ab143c89844f2eeda5ca458 +#: 21ef281dd8344c15a68e36bf70c236bd +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:1 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:1 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:1 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.on_application_command_error:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.application_info:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.before_identify_hook:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.close:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.connect:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.create_dm:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_skus:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_sticker:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_or_fetch_user:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.login:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.on_error:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.start:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_until_ready:1 +#: ../../../discord/client.py:docstring of discord.client.Client.application_info:1 +#: ../../../discord/client.py:docstring of discord.client.Client.before_identify_hook:1 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:1 +#: ../../../discord/client.py:docstring of discord.client.Client.close:1 +#: ../../../discord/client.py:docstring of discord.client.Client.connect:1 +#: ../../../discord/client.py:docstring of discord.client.Client.create_dm:1 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:1 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_premium_sticker_packs:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_skus:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_sticker:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_or_fetch_user:1 +#: ../../../discord/client.py:docstring of discord.client.Client.login:1 +#: ../../../discord/client.py:docstring of discord.client.Client.on_error:1 +#: ../../../discord/client.py:docstring of discord.client.Client.start:1 +#: ../../../discord/client.py:docstring of discord.client.Client.update_role_connection_metadata_records:1 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:1 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_until_ready:1 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:1 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.close:1 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:1 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 75a3908583e246ddaee8b2ab99d5b21e +#: 3796d6049f614d1a81a2102b543cdc5f +#: 8952c3a11462457c9c94503c0a1e46ce +#: e907813498d04ca58b7d80979f4f9b91 +#: cf33128256c04cc8962a75390c1ef183 +#: 9e27094ebf5a426bb1e75e62e5daa1c4 +#: b7be03d2394446469f0739f4abb91781 +#: cd4b7ea72a3442768f7f021733e96924 +#: bfcc3ff6e8824dab8f98475203a002f1 +#: 8686465f1a3d4950be5a71debbfd3d52 +#: 6bc3c19c9696465ca3f9cb5f44d223ad +#: beba0dc76f904c399cbc6333f2245f8a +#: 409b33c5bd944e0f83d05534e795141a +#: d319b5d28ca048509d872555d49cb491 +#: d393bc2fe41b44338c0bcde410e9c1eb +#: a0ccfe1ca31e44379b769024cd71c09d +#: d132c2ca5f21423d8bb2a18353e56149 +#: 5b0142abd63a4172ba647e87dbb900bb +#: 7c618e26033b4d08a8e0f007cb393a95 +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: 55517ed8ac2a4335b028c0d3287ab602 +#: 3b02c5d5217a4399b0efaa60fa233800 +#: dd7766df155949ef833986acacc9bd1e +#: e2011cef6d5d48198898cc84ce3ff034 +#: bd98759df051486cb438e08eb1353981 +#: 432d6a40c1d8432ab8b7d40f0925725f +#: b574c040aab6434e8e9117cb173e66e7 +#: b3532cf121b048eda5c36ea5dadf2bb7 +#: c4c7e645c2774285a372c4191c123972 +#: fd122fbfac7745088650c30d135140a3 +#: 2d0b4575f5b040baa11ffcb94a4e88cb +#: eec22e8a76bc44d98f5118ef6cd98ff1 +#: 1b95069e19e14336b3df83578d283d60 +#: 808e1806c6b64e51bbba91d90528ed54 +#: 5ab820a2a5724771b52a98096065421a +#: e9e4fce13fd64ac1a57abcff389058fe +#: d9eb2e4a9e234e37b248d23a246f8522 +#: 719a4db8fcd9422eb5232e3c1b4c357a +#: a5d9fab4197945fa9a7158d33a5137fe +#: 1db50c6e137845b68b570df104e74d4b +#: 060f832aac614ca48a7c773f89519a83 +#: 4f72411b8a1b45f9a0f1e0155a4987af +#: 138156b76de74091aa74c5f5b5aaf106 +#: 1e80aee9d81c41f8abbadc462fca85f0 +#: 76c40f929b5e47f08b6895e78e2531f4 +#: 4aa232af85d24e47b196f1d03fb8c965 +#: b0e2190a391943a88710db164c51ea2d +#: 12331234d4e147d09a057d4ced81b548 +#: dbbbf2ea2f0d4034acd3fd68b36a511d +#: f362cfb38ba64c25820b87958f908366 +#: a758685e247a4a2c9ae1999cd7b5963c +#: ccd605c5d9d84aba8066fff3131b2ec1 +#: 559372b5f25f4d5da50bfcab9f964aa8 +#: b6cddb5f035547169e68076acd704440 +#: a553c8ecfc5f4b4c92aa936b1a15fe86 +#: 68a03b482db94fea9cc73b0149866502 +#: 7e4ec6a324584821a4fe4a9d04be87df +#: 9023f922e3924c4dae0ada2a128df325 +#: b7fcec43206241f0b472224bb3a511b8 +#: 31ddc274e500488eb01c3384ffaf177d +#: 2e37d50ed6d941628859bdb728912aae +#: 5e5a0800f28e4dbc82f8a6408045d878 +#: ebe1545e79644680970a631afbad7cde +#: be42f0e9c3b8494db485613495915cde +#: aada61b19de44e4cbf5de51c0d7e11e9 +#: 1fbac3dec83b4eea94e1a26b34208243 +msgid "|coro|" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.application_info:3 +#: ../../../discord/client.py:docstring of discord.client.Client.application_info:3 +#: 5983dcd0486b4523ae227931a10b1302 +#: 47b37eeb523444a7aaecac9c8064ced9 +msgid "Retrieves the bot's application information." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.application_info:5 +#: ../../../discord/client.py:docstring of discord.client.Client.application_info:5 +#: 507ab57eb4464568979b8f115e241575 +#: 4bb7ac9a133a472bb6a3b9126cebda75 +msgid "The bot's application information." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.application_info:6 +#: ../../../discord/client.py:docstring of discord.client.Client.application_info:6 +#: 0101829855214ceca48fda193d62fa4a +#: 0abb1cb53f1d41c38d3ba45f1d0d3a03 +msgid ":class:`.AppInfo`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.application_info:8 +#: ../../../discord/client.py:docstring of discord.client.Client.application_info:8 +#: 3aa370c5983e445f88dd18e9eadbd873 +#: 60dcff8b7cff446797963d62c8f9728b +msgid "Retrieving the information failed somehow." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.before_identify_hook:3 +#: ../../../discord/client.py:docstring of discord.client.Client.before_identify_hook:3 +#: 70cb703484a24211b5f015b6c98489ed +#: 3e6d7812bab8419d863e5278f50532a6 +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.before_identify_hook:7 +#: ../../../discord/client.py:docstring of discord.client.Client.before_identify_hook:7 +#: e8ac04bf158e41c38b39991bab6fb822 +#: 345f1f0857334a8486719a08ce7b4812 +msgid "The default implementation sleeps for 5 seconds." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.before_identify_hook:12 +#: ../../../discord/client.py:docstring of discord.client.Client.before_identify_hook:12 +#: 0b6319a9e67d414e87249e03d6d63397 +#: 8445119bcdba4f689bdc7ce8bc1d16ef +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.before_identify_hook:15 +#: ../../../discord/client.py:docstring of discord.client.Client.before_identify_hook:15 +#: 2301c3d3f9404ea495a8d7650bf54425 +#: b5e6a835da3141a995d994af7efdd383 +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:1 +#: b720eb9a67e44dce8da52c580e698881 +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:9 +#: 6c74a036308e4868b73dcbcf6c9c4f50 +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:15 +#: fad163555b174a4d8feb1bffef917e2a +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.cached_messages:1 +#: ../../../discord/client.py:docstring of discord.Client.cached_messages:1 +#: cba36eb2890e435fa097ddab61040300 +#: 26517c7b15d54b3f8695eb62fbc85109 +msgid "Read-only list of messages the connected client has cached." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:3 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:3 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:3 +#: d2e7ed1bee18473c8ed6a983e8028076 +#: 6114d56696924f85a50ec7eab18cea6d +#: 88e009e009734cf6ae3bc3145c4d8f88 +msgid "Changes the client's presence." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:6 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:6 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:14 +#: 6c8a13b6a2374d07bde689acfab480b4 +#: a5872f2048ac46379625289291357eca +#: f5d41bec41dc44e9bc527b986be506ef +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:9 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:9 +#: 3abff02da97142be826bc2c4e6ca6170 +#: 6b8aeda786a9403b9d499b77b41b85d7 +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:13 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:13 +#: 135d8da50bfe441ba19fe730e3461b60 +#: 84986619916e40e88957ed778fedf574 +msgid "If the ``activity`` parameter is not the proper type." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.change_presence:22 +#: ../../../discord/client.py:docstring of discord.client.Client.change_presence:22 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:10 +#: 39e909d604eb4a8c8eae94680b0f85d5 +#: 54b695951125498384300fe6b62bdf48 +#: fb21c4dfd460428fb9985ab358ae38bf +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check:1 +#: e46f439b7bf0448db055239476cd073e +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check:7 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:13 +#: 142d9d49796c4a5db2c6a4d717820700 +#: d1fddb994e6d4505b2c2a6138a60f1db +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:1 +#: 2a09dda9c7114ea5a974ce9692e8315e +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:8 +#: 0832766348084620af8c98ac13ee77ed +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.clear:1 +#: ../../../discord/client.py:docstring of discord.client.Client.clear:1 +#: 46113f3b59ba48888dae66daa428f6a2 +#: 664b2b67ec6147ed94b53e0140acb9ef +msgid "Clears the internal state of the bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.clear:3 +#: ../../../discord/client.py:docstring of discord.client.Client.clear:3 +#: b2e236d83dc34d8bb26a73a49b01369e +#: a37bc673a1b54d709b8017883bfa408f +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.close:3 +#: ../../../discord/client.py:docstring of discord.client.Client.close:3 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.close:3 +#: 78ac357893eb41058d331fbd7e21f8bf +#: 67affa321575466d843d881e79ff9660 +#: 19cb2651d3ce4866a46f8995db1f0f47 +msgid "Closes the connection to Discord." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.cogs:1 +#: 66c2406b4f2349e896b65819340190d4 +msgid "A read-only mapping of cog name to cog." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.connect:3 +#: ../../../discord/client.py:docstring of discord.client.Client.connect:3 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:3 +#: 9b1145547fdc4c8b85b1fdffccd05849 +#: 2e2b4b77bc7549c0a05965d9694ef840 +#: 384d32602e464416870ad53b753b79d7 +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.connect:9 +#: ../../../discord/client.py:docstring of discord.client.Client.connect:9 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:9 +#: 6baf64d2338545519040319cd1847544 +#: 01fe01284ae748c8b1eddfddd1d73e21 +#: 4c2538926ef24f4d9288918238a79d80 +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.connect:15 +#: ../../../discord/client.py:docstring of discord.client.Client.connect:15 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:15 +#: 4f24dc57384346d0856e8fdac0a91c7a +#: e065be27c22342a28fae8bfee39dc5f6 +#: 99080bf0c1b348c2ab66dea5a37fdbe0 +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.connect:16 +#: ../../../discord/client.py:docstring of discord.client.Client.connect:16 +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:16 +#: 1656a53ca10c491688df2509c3c5ff71 +#: c36b8e522ef8432ab9d32865a6f89cda +#: 7b20b4aa50464febb02f71ad5672cde4 +msgid "The WebSocket connection has been terminated." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_dm:3 +#: ../../../discord/client.py:docstring of discord.client.Client.create_dm:3 +#: eaa633504af044fbbae0c5fff1734c12 +#: 4887cc26c4f94834bd314c9ad7887166 +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_dm:5 +#: ../../../discord/client.py:docstring of discord.client.Client.create_dm:5 +#: 0be38552dc6d4508b568215162fbc247 +#: 11ed5a01e6a345a0acea5e61f04b1b7b +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_dm:11 +#: ../../../discord/client.py:docstring of discord.client.Client.create_dm:11 +#: 5a3111fd82194cd2885d84958fca1132 +#: 3b1a1bf113d64c288b8703c0fdc99381 +msgid "The user to create a DM with." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_dm:14 +#: ../../../discord/client.py:docstring of discord.client.Client.create_dm:14 +#: d6fa64d947654bf7becf7fad301f0fb9 +#: 3b137326256c433f88b79dd49a47e72f +msgid "The channel that was created." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_dm:15 +#: ../../../discord/client.py:docstring of discord.client.Client.create_dm:15 +#: 4ee54b2c76694caabfe0fde5d1cd1696 +#: 78267be3de4d4d789cc656e991f10e17 +msgid ":class:`.DMChannel`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:1 +#: a20efe6647144d72911f1a64c5ddacdc +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:7 +#: 5c2158acc4a543b1b66b07320a0f767f +msgid "The name of the group to create." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:10 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:10 +#: 69af3206fe804f5ea844fa3e65c9cb7c +#: a58e962af7324b1b9e2e450d359efb44 +#: 073ea72132d541e0bfe3ef3266ca89e1 +msgid "The description of the group to create." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:13 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:13 +#: 017330dc607446c2a51ad9824d9b6642 +#: 1013a998dd0644bf8b8ed20ec4161d3f +#: 498bcc4fbd754314aa14a09cb65b95db +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:17 +#: 84480e59ac654759925cb9bf3400c84a +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:19 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:17 +#: fffbb1f76152417080d7db49ca8e4c85 +#: b8bf3f05b8b94e4fae6fc0fad6b15b09 +#: 6ca16325d33d44e9a097277415d8529b +msgid "The slash command group that was created." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:3 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:3 +#: 3b97fc8c08714dc0bf7cbe2a88d0fcab +#: 7f4f1601e15941c49368490691cf3ea6 +msgid "Creates a :class:`.Guild`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:5 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:5 +#: 8524eb9f26414048b1952e19fc192260 +#: 1ac9ef86b0a64b3ab8e6552798c01c97 +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:8 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:8 +#: bfd43e9bd0f34e918327fc339e37937b +#: 4b2cb528eb144e2cba9fd35944489929 +msgid "The name of the guild." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:11 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:11 +#: 62b9a65381f34c1bac438c5fd2c7ba6f +#: a9d50329ac804b2697f42d86f92f69d1 +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:15 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:15 +#: 0722a839383b4001aa95fb0d76912f04 +#: ae0f886a88eb4404898545bc4dda335e +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:15 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:15 +#: 352fe566629842ad9d6ff7432397522e +#: ac7b94c2d4aa41c4804843187d78a126 +msgid "The code for a template to create the guild with." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:20 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:20 +#: ef6b2cc2844948a6afac53df0c6c4c71 +#: 13d1e2ac49db416db0205889ed95c259 +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:22 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:26 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:22 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:26 +#: ac312b1700ba40e3ab5989b9c39cdc00 +#: a4b211d860344b6bab78f4760535fb4d +#: d09eadf06e9343dd83a47871e2abc31f +#: 96dd37df88464c8a87fc52b0bb725013 +msgid ":class:`.Guild`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:24 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:24 +#: 6fa7e508b0cf4b958775cf91dac4ba35 +#: 7b2526fdc6744cc4856f38309c4dbc4a +msgid "Guild creation failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:25 +#: ../../../discord/client.py:docstring of discord.client.Client.create_guild:25 +#: 2d01c286352d4eeba440b3662378cc26 +#: 6a0a9f3ed5d14cd1b00a6fef49d5debe +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:3 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:3 +#: 8689a2f7442c4748b0aeb3620d9cf09c +#: 10f6f332803e43be874d5efeaf273bd7 +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:5 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:5 +#: 7e2f44aeac5741c9a5a08f2da76920ba +#: 2ecfe47925ea4c04b95937a66956301a +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:9 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:9 +#: 98207a40e1a94e19afe49b181675d48a +#: 94aa506a7985410497bded0263cb03f9 +msgid "The invite to revoke." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:12 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:12 +#: d5b48d7d2a60458e8a2839ed8faa7b5d +#: 5e90c550889a4b5d9c88e6d7d7dd19bf +msgid "You do not have permissions to revoke invites." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:13 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:13 +#: 34eee7d0a7914a7a9232644c1582c652 +#: 391ab3e72dfe4609ba4322872c6ccae2 +msgid "The invite is invalid or expired." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_invite:14 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_invite:14 +#: e12571e8018b4226a23231a3d292f435 +#: 770d782d0e98456da7aa346f121d5ae6 +msgid "Revoking the invite failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.emojis:1 +#: ../../../discord/client.py:docstring of discord.Client.emojis:1 +#: da199159cd414e03aa393a6e7fceb015 +#: 00169447c6a94a4b82f049cb27a56946 +msgid "The emojis that the connected client has." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:1 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:1 +#: 7a582bcb64fe4e77b22294e3d86b3458 +#: 78892bf021d04c6fba29337b575b8b71 +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:6 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:6 +#: 523b5670abb24b5e88f9d7f04d5a0a9f +#: 823cffd519a2414baf1d8eb638b8a867 +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:9 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:9 +#: 47234f44f4bd4ceeb41bdc775a227c15 +#: 550d4974d8b243fcaf206b620c8a2a2f +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:12 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:12 +#: 0326acb773754d438a4581ed32136b6d +#: 66467d911b6945b5b419601784c046ee +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:17 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:17 +#: 830e0935ff744a0ea9a2a540a4a27ed3 +#: a3655982943348cc9975a45469537b6c +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:22 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:22 +#: 98a71d0d914f4fe8b2324c24a917aa28 +#: f84cf2f0b1844efc9fd51c33a704cf0e +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:27 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:27 +#: c9ef4370de624686b6d2148b7bb52dbc +#: 2effddfbbd1e45178440ec2b43ef9195 +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:30 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:30 +#: e475177db885429080f0ae2b78b72aea +#: bb876989f633431e86644669cd8d5fa9 +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:0 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_members:0 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:0 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_members:0 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: c5985cf01b92479d9b571d3d9dc523a8 +#: bed18856144c4cbe822ac5211c71b28a +#: 54235a29e5a84e2a9834d043bae19369 +#: bcd5c40728234ab4800faa2c1b24dbed +#: c0ace545013d4a5d85fbffd98f3685ab +#: 32e1b33c6f5b47e9850f8e4a93674fdf +#: ea66c74fa77c43ca8356d069ebb6264b +#: ccb11b8f3dae49a086ea27b3fe7d3875 +msgid "Yields" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:34 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:34 +#: fd477cb2f68542529b5f28246bd2cddc +#: bba8b3a4dfed4c12acdea2989e9b7777 +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:36 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:36 +#: 2d3a2a0f88ba4346a292f010fcfac590 +#: 54a21db6d48b45ffa3147e2a18bcda3e +msgid "Retrieving the entitlements failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:37 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:37 +#: 862c6912d2294e34a06faddbf7ff0269 +#: 9ab70875d2f847f99751826f9b4fd448 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:40 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:35 +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:42 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:40 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:35 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:42 +#: 7c8cb90e915a42688bb8e0ac08a56b44 +#: 11648d97fb784d6b97497cf45bd7180f +#: f784f833af4f43caa6cf59467766ead4 +#: 460b9f17e1aa48f78b78f8a1e2285bc9 +#: 6af9ebcd9bf64b86979131f025d5c25a +#: 3f83ae3c48874b428420c62e0e8663a8 +msgid "Examples" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:41 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:36 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:41 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:36 +#: 4fcb97767a904beb9ef44f190efbd53a +#: df4744ea792246c2a87e26f7a1105f81 +#: 6a66fb7c4171403a94a25a3808826652 +#: e12b8377901c43faa7bc6978780e0d62 +msgid "Usage ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:46 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:41 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:46 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:41 +#: 5b7cc08b85db4b84ae5e9195194d36ba +#: 3a17f85d5c5540cf8b980d8e82b60252 +#: 0eae2453da7c4316a4e3c6d00c680cb1 +#: 2e1c0d66b41e47e8817d16aee41b61df +msgid "Flattening into a list ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:50 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:46 +#: ../../../discord/client.py:docstring of discord.client.Client.entitlements:50 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:46 +#: ce984edfb81a40f88475e5d768a64ec9 +#: 48fa76c559f4449a95854d789559492f +#: af1413448fd64215ad8a510b736adb91 +#: 4fd9d0b6b55a497898e01359b2454a47 +msgid "All parameters are optional." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.extensions:1 +#: 73e5dfcf598f4b738ff4cb986328a722 +msgid "A read-only mapping of extension name to extension." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_application:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_application:1 +#: c6993c8ace9a402dbd8a19399cff355a +#: aafc1168e05f45dfacd0f151bfd0bd27 +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_application:5 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_application:5 +#: cdfbd078a7e34b39bc30d2f5d3db7fef +#: d7d033a39dcd4afebf9d0f3925cb0e6c +msgid "The application ID to retrieve information from." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_application:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_application:8 +#: 330746db683542c0bf43295ce8a60ecb +#: 3be37066300944489855782f111f4345 +msgid "The application information." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_application:9 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_application:9 +#: 80da38d28f7a4058a9a443c380f15e07 +#: 7529d87e05374082bd884b1d1f4ce463 +msgid ":class:`.PartialAppInfo`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_application:11 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_application:11 +#: fdfab0a8ac644e918e2b868f0b80ea8a +#: 496dda7098054bb98c52eea3c43b204e +msgid "An application with this ID does not exist." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_application:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_application:12 +#: 6f5bdf2b2be6487f8cd5cd5d7201e238 +#: 02d838d2b1364397a167d2f5c970bf0a +msgid "Retrieving the application failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:3 +#: 709c0c6eedd44918b90f6dffa9b47f23 +#: 6a10ca6084f846de8fe3fc9c5f78d62b +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:7 +#: ffeb7dc3d9fe4482ab577068571db8bf +#: 16cdcc9d072042e48f37db5e1ed47d87 +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:11 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:11 +#: a9141c92c30443dab13cd3bfdfb3221b +#: 937ee35401e047a9ab66ca84e1baf254 +msgid "The channel from the ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:12 +#: e0c5c0a3312d4c5bbb8ef19d1e2f15e1 +#: fa37228bc5f741968a08a26bfccb5ca5 +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:14 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:14 +#: 220028234d2c4c72a8866cef69f6cedd +#: a6c6384d2bd8410393e2acd36f1996a9 +msgid "An unknown channel type was received from Discord." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:15 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:15 +#: 7b7c1cd63b90442e9e3e142aff758d8f +#: b2dc27e2311a468fabfd697becfb68c3 +msgid "Retrieving the channel failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:16 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:16 +#: 97eac6521e9a4e9dbc6cc6ecbfb97238 +#: a254f2aa7f5441fca4eb306f79aa1b44 +msgid "Invalid Channel ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_channel:17 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_channel:17 +#: d4920f83bc284b55b50a4c8f62cd4180 +#: 9d2a8c5a46854947a7a140aff9f4179f +msgid "You do not have permission to fetch this channel." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:3 +#: 8e9f4f77bac844f5a9988587c611cb9d +#: 5f3db26c62924650aecbb995c0df0be4 +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:7 +#: fc48643cd30442b68921bd961d8c4ee2 +#: 38f598930b534b0380391fdb0e89e121 +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:12 +#: 232c4e056e1641d2b6f4f6aec6a485ec +#: 84388c342305493e8a6f64446e49d160 +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:15 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:15 +#: 0edc6723fbc942dfba36ab15f4771dc3 +#: 685c61028d2d4cf580d2044aaee592a8 +msgid "The guild's ID to fetch from." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:18 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:18 +#: 3c5f0d5b44a34c12b46639235faa7ad0 +#: db45bb2c4d0a42d584ca6b8133983e77 +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:18 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:18 +#: a4245b805fa0424588c0d476c4087214 +#: 05dbc5f91edd4612b6383868c75a7ac2 +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:25 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:25 +#: 13441326e09f4c41a4b70ace65d3685a +#: 8627931b3a534dbe8c62a4be6ea82790 +msgid "The guild from the ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:28 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:28 +#: 18b98d33672748fab571d1592086006c +#: 7d2046b6b57942f7a30996be5edff639 +msgid "You do not have access to the guild." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guild:29 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guild:29 +#: ab6c8c5386cc4638a941c7e10d2114f6 +#: b5721e89196f4a1eb5342451dbaf3acb +msgid "Getting the guild failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:1 +#: 680b55c43a404490948ccf8c75056fe5 +#: 1747a97606b54d0aa85ee82fec200e5d +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:5 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:5 +#: 6b41ff587fa34dd48f92f8b2adec9ab3 +#: 479b75a91db14e1fbeb7fef18c5a04d7 +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:10 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:10 +#: 7b2ca8d29ccd472dbfe3bb09ee67cd31 +#: deb91710d7c24bc292aab5097f23b501 +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:13 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:13 +#: 656fd5be7efa4693858ddc0bba11b5c9 +#: 105f6a38a2854a7089d696c2c01dc1e1 +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:19 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:19 +#: 2e80267839e44327b92ec76be0aaf427 +#: 88e83fb93ec742deb161d4d5e6ae864b +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:24 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:24 +#: dde1d08cc27a42afa6456baeab1c4824 +#: efa2f8d80de046819cc9326f5bbe892a +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:29 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:29 +#: d8cf0096c4ea46e0ae7da1145a0b557d +#: fc6f82145b034ece99cbf37f683ceff5 +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:31 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:31 +#: 2f4a72e1186a46d9aa54d22b75e640a3 +#: 5803c971ecee4e8385d297fa6b5f134c +msgid "Getting the guilds failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:32 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:32 +#: f8744a77885f4d189fc280ec89e87d2c +#: f43bf45acca54549a46eb8b112d02268 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:3 +#: acc5f4a6a0f647dc9f8b5eaf7c539fdb +#: 8a4dcd58e0b2419aa0e9ecf1b6c7363e +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:7 +#: 163cd0bf1a67459a89e9cdb0c6c757aa +#: 2a76df09c33847cf85e73900aa59ec77 +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:12 +#: 2c47a87fed924f02ba4dbce127a2d89d +#: 116f686fb5054484a467357d6d0a399a +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:15 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:15 +#: 21da813826c74acbb3eedef11175e8f1 +#: cc56d716f1f6424aa05b7d2400368df0 +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:20 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:20 +#: 6f6b0591a01a439e9c26b6ea317b4e85 +#: 3df86f4db6f04bec94f6b943117534c9 +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:20 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:20 +#: 9a1b3e4805b1414ba7f36b8206cc700b +#: 036021a78eea4be980334bcad40f1daa +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:26 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:26 +#: 2cb15eb196524b68889c66edffb272a2 +#: aa755c7bbfc644c8a99a4e7e80d1fc25 +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:26 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:26 +#: 18b09b5aff7a4f39b50d78b9acb653fc +#: 4ffbf97d7865451fa048a6f78af2662b +msgid "The ID of the scheduled event to be associated with the event." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:28 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:28 +#: 5347b95856644909bb7dc80c9155b154 +#: 367a7984086b493ba86e0b98c9e489ec +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:34 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:34 +#: 1c9f38c89b6f4c17aede743f8c65d8aa +#: 9ee1f4aced284d4282048fb76f04f940 +msgid "The invite from the URL/ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:35 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:35 +#: 05420965d65349869d9a3fcceff2515e +#: 33169fa919a54f519ff847e567556f48 +msgid ":class:`.Invite`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:37 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:37 +#: fe1ada1d25bf4ad7bc00b849f6fa88a9 +#: a22701bb7d2f44fca24ebafd0027a019 +msgid "The invite has expired or is invalid." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_invite:38 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_invite:38 +#: a5f9c6c8318341df9f815544e2b2fc05 +#: 7acc4ef8881841d48a95e7b714968280 +msgid "Getting the invite failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_premium_sticker_packs:3 +#: b369cce5013e4d698043f69c944f8a66 +#: 1c2eae88e474467a8ef8fbe7cf172242 +msgid "Retrieves all available premium sticker packs." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_premium_sticker_packs:7 +#: c3ebd2de351c47589c35c91351a05cc8 +#: 4f91c0955a5547a393f8bca43c79326f +msgid "All available premium sticker packs." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_premium_sticker_packs:8 +#: f2c67dc53c534b0aa88697406f41a753 +#: 81d61492868a497f850b5b880d44abe8 +msgid "List[:class:`.StickerPack`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:10 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_premium_sticker_packs:10 +#: baf041eef92145928978a65d22c41d49 +#: ebdff23caff3417faec73021b95e7112 +msgid "Retrieving the sticker packs failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:3 +#: 9424f8645549490aad4b3df67690028b +#: 3f0dc3bdc3194ca39b848651a262fd94 +msgid "Fetches the bot's role connection metadata records." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:7 +#: a739439997df43e7b7db808923acb79d +#: 99df7df48d45437faa412b04790f7587 +msgid "The bot's role connection metadata records." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:8 +#: ../../../discord/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:8 +#: ../../../discord/client.py:docstring of discord.client.Client.update_role_connection_metadata_records:12 +#: ee166a08201f4183bfad8ad88c5fb320 +#: 888fcfea7fa34ba888f8c0857b965c37 +#: 87412648088043feabc25d0a602dc0c3 +#: 6a6e7c19d6fc4cadaa9a4d4afbe179cf +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_skus:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_skus:3 +#: 68218a4bf26b4b38b1c806c7aa61f661 +#: 1a2b6478e8804ba4afc8c56c3c05edb8 +msgid "Fetches the bot's SKUs." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_skus:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_skus:7 +#: 06cf0595cc3f498c8e8f41b354e358d8 +#: fb544d3f176e4037a777cec7dac26453 +msgid "The bot's SKUs." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_skus:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_skus:8 +#: 043327feba3d4c899a4b9e27f3ae1372 +#: b637e44776da4185981f78109a57a53a +msgid "List[:class:`.SKU`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:3 +#: 7a3e45f29a644f32b777d11a18579ede +#: 88b901ccfaa14a67aadcb8840bdee24c +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:8 +#: 69ca285e4a1b4e8797cec962961cc055 +#: 4e6dc6fe1ef94a269f031a4a1e4b99aa +msgid "The stage channel ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:11 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:11 +#: 7c7c97b654ed4a66a971dda8a270dcbf +#: a15055de9ad647d4b7ef7e393ca47f72 +msgid "The stage instance from the stage channel ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:12 +#: 8e0d484c75f44292bf2e50c355f77b5b +#: 87fb14043d8046d19381949784b89592 +msgid ":class:`.StageInstance`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:14 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:14 +#: e5a4d1d3aaf040398c8c0a5ac1e6dc2d +#: 3aee2cbf01044b3f8cc7af5dbe63cf79 +msgid "The stage instance or channel could not be found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_stage_instance:15 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_stage_instance:15 +#: 9be3c4f2f0164f2798360c5e220e7f50 +#: fa0d9d4bc9ec41679170d58e5edf545e +msgid "Getting the stage instance failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_sticker:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_sticker:3 +#: 584ac55387214bf0bc7655da6f2792e0 +#: 958332531bf34b229232649aaad19cef +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_sticker:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_sticker:7 +#: a84b7eec831d41849ecdc43cee32ae28 +#: 1363c215bc8b48139f395e234a2fdcc7 +msgid "The sticker you requested." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_sticker:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_sticker:8 +#: b838a91ed61b4d37be246951b8564208 +#: ee98d910070249a2afbc06c51832ab92 +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_sticker:10 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_sticker:10 +#: 50d8785227d54d73b68c6649c6fc793f +#: a3bd0412032a451d944d5040250df9a4 +msgid "Retrieving the sticker failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_sticker:11 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_sticker:11 +#: a914b8b74dff428b8217376bb44ee280 +#: a5926e5321024d8da72afc86559c5181 +msgid "Invalid sticker ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:3 +#: dbd91692e99f41089c24f3a1b016abe3 +#: daba7a12d12e483dabb22f3082560e2d +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:6 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:6 +#: 9cf7aeba3cf94ddfade1161921136fcd +#: 6c79dbef597949049308831126caf1cb +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:9 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:9 +#: 20002ad14d4a4ebeb50f9d4b42e9bb59 +#: 2177ade0a9194b67b6fd15a61ae13825 +msgid "The template from the URL/code." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:10 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:10 +#: f8e660d6df844ff9b6e8ca42e45a6db4 +#: 25aa61a5f6704f76bd0e63fe07fd5344 +msgid ":class:`.Template`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:12 +#: 35c845de13e349a9bd817308bd8210bb +#: bbb4e3d039e24824b2e96290ede33879 +msgid "The template is invalid." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_template:13 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_template:13 +#: 1e8fc158e4c74b9fa63f4cd6822c9190 +#: de39096b310c4930ba085499cc501be9 +msgid "Getting the template failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:3 +#: fc5e27dfd5df4f1083a2ce78905f137f +#: 6afa0c679eaf409a8736e07f05fb7c6d +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:9 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:9 +#: 88856ef0a1c34816a1b8126d28db55c8 +#: 80beb23cf53c40a194d929ae8c7a2876 +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:13 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:13 +#: 904c1ae5fcc14436b80548bb1f284c43 +#: 13ba7b35bdd343299351ad1b86086580 +msgid "The user's ID to fetch from." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:16 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:16 +#: f331d997dda74b7e9506f9f0858875f4 +#: 4b109491b8d94c648cd2b4a856262356 +msgid "The user you requested." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:17 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:17 +#: 84fbf23886304607b5223e4f3e827432 +#: c58aaed5b9274c23be1a82dd7b9c79c2 +msgid ":class:`~discord.User`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:19 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:19 +#: 1f026a4e35c84df8b91a677e61429aad +#: af069677ce5a4d60af85cdbbc1d89063 +msgid "A user with this ID does not exist." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_user:20 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_user:20 +#: a7894ada30514c09917ba342ff6307bf +#: da95e6f09ace4020ba25d649433bd8e3 +msgid "Fetching the user failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:3 +#: 7b5c3de0d5bc490583eed2148fe3adf2 +#: 449315d17af4479895749d1fc700a3f7 +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:5 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:5 +#: 79ce9e3cdd1f42a0bbdd9b54d0263d2c +#: 3d3b2a928bae48ff9d0ced39413a96a9 +msgid "The webhook you requested." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:6 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:6 +#: 0f9acb4de476421b8b66cafaad9e8d13 +#: c9bfd966d85e4f17a319e5b0e2f717cc +msgid ":class:`.Webhook`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:8 +#: 78c27258634f42bf842727095db62ee5 +#: 9383dddb8c9d4a9c96d2e2bde714702a +msgid "Retrieving the webhook failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:9 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:9 +#: 6c4a19c3d6534ae4849f4b219aab45e7 +#: 1d2f993cc43b4a0985c6521221c59f63 +msgid "Invalid webhook ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_webhook:10 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_webhook:10 +#: 38afa3e69538483c9aa15498beaf378e +#: dc3889164ad64b9b8a46fbe38f466076 +msgid "You do not have permission to fetch this webhook." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:3 +#: 8b4ef3067a554f3dbd79ec87d454e563 +#: c548ce9c4b524c3da67dbf74b4cc39d5 +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:7 +#: f3c9ea1202d04fe98848e776cc633b43 +#: d5625d54302d4637bb3b2b87d4f31e8e +msgid "The guild must have the widget enabled to get this information." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:10 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:10 +#: 81d3c19143e44cf2b6c178fc3d2fcc77 +#: f7f87b3361a641b49965447a1dce4229 +msgid "The ID of the guild." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:13 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:13 +#: 44fbd4d628244841a9214142b84ff39d +#: e741791aa8f74923af5883745587ff8c +msgid "The guild's widget." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:14 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:14 +#: d8bc6239ad544978978964d975b88cf8 +#: e89b25c5d0d24a838d657f9ba08a43b5 +msgid ":class:`.Widget`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:16 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:16 +#: aca5c6cbb697464b90cc953011ed05bc +#: e8fabc52771b436b8e0a6c27db844e38 +msgid "The widget for this guild is disabled." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_widget:17 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_widget:17 +#: 6c887b61d6214bbc89a3071595e17351 +#: 2f27c3a6ee12429694a5b67441deb3bd +msgid "Retrieving the widget failed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:1 +#: b886abcab97a46f3940f4064094180e2 +#: f32d5942653b4aeea1d89478304ac5c4 +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:3 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_members:3 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:3 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_members:3 +#: d5dfb16bdaa1458bb44264187f4ee38c +#: 5004a72d009b4ad48da460e3f0226d5e +#: 56869a85b444444a8ca59b1a7efbb730 +#: c5ee62befce74457992d2467b2b9f126 +msgid "This is equivalent to: ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:8 +#: a0c271f71b8e461094faec00b52b3100 +#: 453e760e4fe949eca74872e9ff2a731f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:13 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:13 +#: 14df624bee0b4d23b1f9088155d3e882 +#: d6b4995ab7fe45328a7aad4f35b7ad0f +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:17 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:17 +#: 5eab19fe94124dbcab31f439d0973160 +#: d019b7030b0d4dd292eef1b2ab8fc23d +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_members:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_members:1 +#: 1e23815e30ed4e7fba2bd525936c0e85 +#: e554ea24c5a54cf7b156cfb2eba089d9 +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_members:9 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_members:9 +#: 71e5351f43c7453b898f2b71db1af20e +#: 798086950e7a4af9a4edd3ca9308d766 +msgid ":class:`.Member` -- A member the client can see." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_members:12 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_members:12 +#: f2fcd09c94c14582973adb76d08cfcfa +#: 40ec435699304262b0a67b66b75f7204 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:1 +#: c0e500eca4654493bcbde640ebc18e15 +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:7 +#: 297eb50180c641ee936301a619fecf81 +msgid "The qualified name of the command to get." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:10 +#: 4e81f4e8177d4f1fabacd1113a61b684 +msgid "The guild ids associated to the command to get." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:13 +#: 7159cb9856244306be63c209b5f0df30 +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:16 +#: c868f574c5674690bd081cabc69cc745 +msgid "The command that was requested. If not found, returns ``None``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:17 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:12 +#: c164f779fe0a43e6a2f6abf608af6f93 +#: 3fd3ea872ab545f980cfe41dcb63ffb9 +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:3 +#: 998de8fc4fc54d12bbfd2d6293de1bee +msgid "Returns the invocation context from the interaction." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:5 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:5 +#: 3614dd7b6e5d41d1b0d77e9c10a3f598 +#: 57dab4e256704319b7e2974e3018f106 +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:9 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:9 +#: 815d098582864c5aa45ebb68a53bc46b +#: 55ef2128a1d34e2bbb6cbbd958bfc6a2 +msgid "The interaction to get the invocation context from." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:12 +#: f445ef6ad23b46aa8c7b978919888cc2 +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:17 +#: 01ec116738e84cb99e4b5d5ce4ffbfcf +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:19 +#: c55b1028898244e59c76268416abbb49 +msgid ":class:`.ApplicationContext`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:3 +#: 537bfa329bc545788890928e4531fa73 +msgid "Returns the autocomplete context from the interaction." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:12 +#: 11b0ecc315564b658e1d489d95e4e02a +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:17 +#: 1bccad822ed94d7889a324aa82d0a214 +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:19 +#: 5f3b2f2fda724232a91fda448c11ca58 +msgid ":class:`.AutocompleteContext`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_channel:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_channel:1 +#: cf283a472c614b6a97c06ca4bc4a33f0 +#: 5508a6586f824d59b8541a888468426a +msgid "Returns a channel or thread with the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_channel:4 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_emoji:4 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_guild:4 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_message:7 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_or_fetch_user:6 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_stage_instance:6 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_user:4 +#: ../../../discord/client.py:docstring of discord.client.Client.get_channel:4 +#: ../../../discord/client.py:docstring of discord.client.Client.get_emoji:4 +#: ../../../discord/client.py:docstring of discord.client.Client.get_guild:4 +#: ../../../discord/client.py:docstring of discord.client.Client.get_message:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_or_fetch_user:6 +#: ../../../discord/client.py:docstring of discord.client.Client.get_stage_instance:6 +#: ../../../discord/client.py:docstring of discord.client.Client.get_user:4 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: aa6f5761e01343dfb5dbd17675e19b1b +#: d2691dfc9a4f459ea548d04f08d31c5d +#: ab8f154034b64ba7b2b43749f6a9fb82 +#: 3d50edd657314501a5c0871876d98665 +#: 53be11771a7b47ae918e85312a251da3 +#: a2cb1d80eec0470195c36400e8e486ec +#: c025ed112232402daf4b8d114ac6241a +#: f32da88b3c8044adbd70a2275ca95824 +#: de2d97cbd9de438996380dd367744796 +#: eb0e5def785c4b72aefc34ed33f5b436 +#: 6efa35eb7e6e4a80a55faf8eb0880c19 +#: cf3701f5d4fc40648e13ec1128cc17be +#: a5352b23d85144febce56eb00c246a6c +msgid "The ID to search for." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_channel:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_channel:7 +#: d9a90139b5c84016a67669abf356d83b +#: da085de929bc448ba7dd85d2f77b82a5 +msgid "The returned channel or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_channel:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_channel:8 +#: de8a5b88032c47fa9f2e41bfa71842c3 +#: 7154e2d4041f4c198d90495266e54a04 +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.get_cog:1 +#: bec15e570fa04a15b83b7ca7e3389216 +msgid "Gets the cog instance requested." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.get_cog:3 +#: 4ae249d6843649ce9819e165b69c78ff +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.get_cog:6 +#: b8d6f18d1d2c44babb0a2315fcf7c1b6 +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.get_cog:11 +#: 412532b7fda248be8233ebf2f47a3c87 +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.get_cog:12 +#: 691b6e2bdebc42878e0d4ca7bde4dfcb +msgid "Optional[:class:`Cog`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.get_command:1 +#: 64b888dc0e0641c0b11a8699ef47d0f7 +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.get_command:4 +#: 090694ded9bb48498938dd4891b64207 +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:3 +#: b1df2b0021b249f6ba711704e20aaf2c +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:7 +#: 4988c5769a7f45b093d66279aa435b31 +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:13 +#: a42aa04f99bd45e2adf79377df0fddf9 +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:16 +#: 004d26c269d948c5b29706eae2d3286e +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:19 +#: b52ea92694dc43888920b021b5ea6887 +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:22 +#: 433de8e824a84596ad4b85e75dddfb58 +msgid "List[Dict[:class:`str`, Any]]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_emoji:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_emoji:1 +#: 9525ca2de02e4964817f1a037363a3a2 +#: fb968314193c41e78ab0cf26347196bb +msgid "Returns an emoji with the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_emoji:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_emoji:7 +#: 9c674dcf871343f694a42135680a1736 +#: a379911a0bc14371859a28e118522ae2 +msgid "The custom emoji or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_emoji:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_emoji:8 +#: 00d7fd8a5ae747b7a60a6c550b8c741d +#: 30af31ca8c6049c48a52915de2031569 +msgid "Optional[:class:`.Emoji`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_guild:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_guild:1 +#: c69d0ea814a84230941d413794f573c9 +#: 3b1ac5e5ae8c4ecc94365b084ae94a35 +msgid "Returns a guild with the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_guild:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_guild:7 +#: e0ee40e0766047a2be7ce2f868ab810b +#: 673107a47b984cadaf646137b3e2eb69 +msgid "The guild or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_guild:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_guild:8 +#: 134847e462854ae78b1f4d67f66abf09 +#: 3900a9e292cb446682330566d630ecde +msgid "Optional[:class:`.Guild`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_message:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_message:1 +#: 181ecf7ccc494ba8b6465d66a0ef5483 +#: 6e64f0c03bd74be7a81dafe3184bfc43 +msgid "Returns a message the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_message:3 +#: ../../../discord/client.py:docstring of discord.client.Client.get_message:3 +#: 4844d10606e145829c103661a39a42a0 +#: fa7aafea81044108bcf968a2f6dfca4c +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_message:10 +#: ../../../discord/client.py:docstring of discord.client.Client.get_message:10 +#: 876b35b70409440bbe9860921ed2bdde +#: d1077bf08ada45c2b805bd410abb9537 +msgid "The returned message or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_message:11 +#: ../../../discord/client.py:docstring of discord.client.Client.get_message:11 +#: 909a4ebed88b418eb3fc8ad783de4fc2 +#: 0594a4a2bf1b41969b935c1ccc68aabe +msgid "Optional[:class:`.Message`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_or_fetch_user:3 +#: ../../../discord/client.py:docstring of discord.client.Client.get_or_fetch_user:3 +#: ef34cecd55904074aadf36c69ae1a3fe +#: f1d9c3116ee04404b5cfce13930eff83 +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_or_fetch_user:9 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_user:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_or_fetch_user:9 +#: ../../../discord/client.py:docstring of discord.client.Client.get_user:7 +#: 7a08fd22da7640b392c99f8c05c6c4e6 +#: 627478a224a3424f9bb5d93e9a6cd528 +#: fe2f9c26926841f5b372a137b8de4013 +#: 4992f0dac1404decae7ee3e813e51270 +msgid "The user or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_or_fetch_user:10 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_user:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_or_fetch_user:10 +#: ../../../discord/client.py:docstring of discord.client.Client.get_user:8 +#: 759defbb355844809d78aa0b07143820 +#: 9ed60c912d854bbc99fe79211535b8c5 +#: d08aefbf201f455e9e303fa4c37d4025 +#: 55ee47d95dde4dd89a96f905414ef5fc +msgid "Optional[:class:`~discord.User`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_partial_messageable:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_partial_messageable:1 +#: 044e87bce77b4fec8f6ad808a56bd064 +#: e139e8083b5a45858a467abf77a39fc6 +msgid "Returns a partial messageable with the given channel ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_partial_messageable:3 +#: ../../../discord/client.py:docstring of discord.client.Client.get_partial_messageable:3 +#: f2ce805dc0414f5a9e5a8755ea1c9643 +#: 9441c560cfd8481d8bbae0dd7ce5fd17 +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_partial_messageable:9 +#: ../../../discord/client.py:docstring of discord.client.Client.get_partial_messageable:9 +#: c8479fc87aa246648dbeeb0dc0bd2523 +#: 5843bce696fc42019278c28ba4ae576b +msgid "The channel ID to create a partial messageable for." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_partial_messageable:12 +#: ../../../discord/client.py:docstring of discord.client.Client.get_partial_messageable:12 +#: 56b0308cd9eb42b28481f6a554cd5570 +#: 641c739d27374b7f849dfebfef428313 +msgid "The underlying channel type for the partial messageable." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_partial_messageable:15 +#: ../../../discord/client.py:docstring of discord.client.Client.get_partial_messageable:15 +#: dcf7536cc4744aa9b4c7648d2327410f +#: b1c7e9712473499cb0d65bd7245e3412 +msgid "The partial messageable" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_partial_messageable:16 +#: ../../../discord/client.py:docstring of discord.client.Client.get_partial_messageable:16 +#: daa543ad6df34e43a2d9864afb81d0d8 +#: ef9d1f64d3c044d98d9febba6ecc477d +msgid ":class:`.PartialMessageable`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_poll:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_poll:1 +#: f33a04665ff84187a4db076f2d509d54 +#: 58ae80d19524436a95761abe104fa3af +msgid "Returns a poll attached to the given message ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_poll:4 +#: ../../../discord/client.py:docstring of discord.client.Client.get_poll:4 +#: fce34a83deb34fb09d2fb065f7e9aabc +#: 26ad6e881f9f486f9b1e52af986c3082 +msgid "The message ID of the poll to search for." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_poll:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_poll:7 +#: 9e724f2a11ec44c4869443876f200c94 +#: 20feac62a3094e08a9fb29a93f5ba5b2 +msgid "The poll or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_poll:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_poll:8 +#: c742fb9939e244578e66f27785b9e0b3 +#: e39d3a6f0d1f47338a56385fc145b6dd +msgid "Optional[:class:`.Poll`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_stage_instance:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_stage_instance:1 +#: 3d786cc212a44afea512d29b0e007d4e +#: ccca77067a1b42199475211ba6e16c68 +msgid "Returns a stage instance with the given stage channel ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_stage_instance:9 +#: ../../../discord/client.py:docstring of discord.client.Client.get_stage_instance:9 +#: d433f0da2b6945b390f4785d5e45686d +#: 24e4d3e8241e46ab8ec4b6033bf7c761 +msgid "The stage instance or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_stage_instance:10 +#: ../../../discord/client.py:docstring of discord.client.Client.get_stage_instance:10 +#: 2c039b3d063d4d5daad23166bc2998bc +#: f182ee3a977e476192e53e36b0fd6311 +msgid "Optional[:class:`.StageInstance`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_sticker:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_sticker:1 +#: f10646f6188b45e79224058f73d2f2a8 +#: 3b8a42c81c074058ba5f7bac4b398156 +msgid "Returns a guild sticker with the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_sticker:7 +#: ../../../discord/client.py:docstring of discord.client.Client.get_sticker:7 +#: c15a89f27028488cb7b2336b8063f854 +#: 20ab5455c5404e18984b4e696b652797 +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_sticker:10 +#: ../../../discord/client.py:docstring of discord.client.Client.get_sticker:10 +#: a8df3300fa7947d1885ff98542d67aeb +#: 7322662df9ea4fb996060efb71bf6513 +msgid "The sticker or ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_sticker:11 +#: ../../../discord/client.py:docstring of discord.client.Client.get_sticker:11 +#: 6340a201b4ee40d08e8349272ea2eb4f +#: be2728359991404a84c574a1e4fa5fba +msgid "Optional[:class:`.GuildSticker`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_user:1 +#: ../../../discord/client.py:docstring of discord.client.Client.get_user:1 +#: ad521edf83024b639b0931097a70fbc6 +#: c6af911fdc7949b39f3c499e45effb7c +msgid "Returns a user with the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:1 +#: 3534240b400047cf99d43a0882749281 +#: 4857181fe5e74fcb9360e150aada34a3 +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:7 +#: 12eda575d2994bb9b8ec76bc781e2b9f +#: 29e956e4b6c547e5a38016662e56675b +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.guilds:1 +#: ../../../discord/client.py:docstring of discord.Client.guilds:1 +#: 2f2a3e8f246c4f30b877af0e3e88001b +#: aa9d5b5e1674421796b825c972c5ab80 +msgid "The guilds that the connected client is a member of." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.intents:1 +#: ../../../discord/client.py:docstring of discord.Client.intents:1 +#: 21faa16203234f99a69b91b463601bd2 +#: 69d37e50e43e4c4ca25bf3f6f5229aed +msgid "The intents configured for this connection." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:3 +#: 0fef6661f4904fc584c2c3c675c11684 +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:7 +#: 10f77b8bbb3042e09dc3daf5dd79b208 +msgid "The invocation context to invoke." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.is_closed:1 +#: ../../../discord/client.py:docstring of discord.client.Client.is_closed:1 +#: 1195a817f20744f69117a573c7f4c5d1 +#: 8561fe440a50492b9878deae73ac0df6 +msgid "Indicates if the WebSocket connection is closed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.is_closed:4 +#: ../../../discord/bot.py:docstring of discord.client.Client.is_ready:4 +#: ../../../discord/client.py:docstring of discord.client.Client.is_closed:4 +#: ../../../discord/client.py:docstring of discord.client.Client.is_ready:4 +#: 1044d7a76781488d8e388f935f5d4867 +#: 5bae7658d8d04f08ba4e087c58f768ee +#: 4675390cbd8e49a485b9994564bbc23e +#: 3a3b142cc4294f76ade57c501fb264ae +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:3 +#: 659c6943644c45f6b44ac33cc1d9896e +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:6 +#: 3e69877b74ed48cab87f6fe3ec2f5bbd +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:9 +#: 6872f8c9608949fab7ac89cb5072f36d +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:14 +#: 784e3a78f66b4c67b2252bda0ab50130 +msgid "The user to check for." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.is_owner:17 +#: af103a9120b341d7ac2dc05f2fc6b7f0 +msgid "Whether the user is the owner." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.is_ready:1 +#: ../../../discord/client.py:docstring of discord.client.Client.is_ready:1 +#: e491ff5681a44d58918b01dea27ff898 +#: 349e1cad1447424e8bd6ebf337f5cfc5 +msgid "Specifies if the client's internal cache is ready for use." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.is_ws_ratelimited:1 +#: ../../../discord/client.py:docstring of discord.client.Client.is_ws_ratelimited:1 +#: 1d19112534464592be462f4549362eed +#: 8ad42b7d89c440729b11cac972973ccc +msgid "Whether the WebSocket is currently rate limited." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.is_ws_ratelimited:3 +#: ../../../discord/client.py:docstring of discord.client.Client.is_ws_ratelimited:3 +#: 62af1fa7dcf84492b242000ea4241503 +#: 04f3a26c21ee4473a2b07d0008b29a0a +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.latency:1 +#: ../../../discord/client.py:docstring of discord.Client.latency:1 +#: ../../../discord/shard.py:docstring of discord.AutoShardedClient.latency:1 +#: c5ab6840e90349f19ce335c373c2303d +#: 7fc9415166914dd490d0fe681b1b7235 +#: 631e9f8e5e5f495087a3bad832be354c +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.latency:3 +#: ../../../discord/client.py:docstring of discord.Client.latency:3 +#: 421f8b497847440fbd6dbe4be0a01720 +#: c29a7ecd61d54dfcacfd68a73ce394c4 +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:1 +#: 026aa7d6f31d4990a7b349b52d1e57ac +msgid "Loads an extension." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:3 +#: 443fb754e9e4450d9ba7b4c49645dd5d +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:6 +#: eb4cd6b235244515b0c8d247f851230e +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:10 +#: e954aa1ba2b04355a43ce15be4b3c1a6 +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:14 +#: b4709a5104a8400c9ac23f133549b6c6 +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:19 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:12 +#: 2fd13f9b72724c3a93c62cbf7ce3e595 +#: d1132fd4f8ad40b192cb8558349a7df4 +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:19 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:12 +#: d98754a427e84ae682ce85cdb8557bec +#: 453661366177409d98ac5a2c9d0be70b +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:27 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:20 +#: 4872f607b11d4176b8657dc8de35a45e +#: cc7e6a282e0c4b9494e3e312a4ce066d +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:27 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:20 +#: 235222cbb8c44095937e8b67a59eba52 +#: 43fdb77d35194ceba81306f5e8f23d5f +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:34 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:27 +#: e1406c82b3ec42d7ba4f1a9a7f0bc9d8 +#: 3fa06603acb34fba88c0645b6cf5bcc0 +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:34 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:27 +#: 287d8e3cd45341309195aa3dd7ab8c94 +#: b2f34dc42af041d8b4ac3c04a3dd3932 +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:45 +#: 099c61d1269b47109fe9e3a1cc10e009 +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:51 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:44 +#: 83832163d58347d7a6e6af84f4c8e4fb +#: 9719ff7b51c74170bbe4452541cf5c12 +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:53 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:22 +#: 85002126743f4f13988ae3b6842068e6 +#: c836be69415a4e9aa0ad9be517cc2f16 +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:54 +#: a5a3724f3d244704959a79b59e34abc0 +msgid "The extension is already loaded." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:55 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:23 +#: 67911d91ed4a43efbe1e31b46fc74e6d +#: 7db0d18ba5814112b94d84cff9733249 +msgid "The extension does not have a setup function." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extension:56 +#: 8f842e56308f4d1c88c47684ea45314f +msgid "The extension or its setup function had an execution error." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:1 +#: a760357f52544ed481412457c04c3803 +msgid "Loads multiple extensions at once." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:3 +#: fdfb6f2448094adf9318c69174beeeea +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:7 +#: f8a0970ba0114e93b9b61f4b6528e11c +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:38 +#: b5fb058740df4f5697c3610201853111 +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:46 +#: bfa57369a86a4cda8d1bd669bb3f567b +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:47 +#: c65a8880c6e24c0ba423274ba3ab9e74 +msgid "A given extension is already loaded." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:48 +#: 066e528badfb4c9081642380ae4c0118 +msgid "A given extension does not have a setup function." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.load_extensions:49 +#: cf251565d0a04577a80b44ef3a0c45ae +msgid "A given extension or its setup function had an execution error." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.login:3 +#: ../../../discord/client.py:docstring of discord.client.Client.login:3 +#: 049a0834b6b047f99314936f2f1163ba +#: 881f8ede0215463c9435a215b8ad1baa +msgid "Logs in the client with the specified credentials." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.login:6 +#: ../../../discord/client.py:docstring of discord.client.Client.login:6 +#: 37485eb978c94d0ab2f8e20f3c9d44f0 +#: cccf92fecca7496a9b0a7b4084434ec0 +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.login:10 +#: ../../../discord/client.py:docstring of discord.client.Client.login:10 +#: 441a4bc07886491dbe40a2d51a9d6027 +#: 479dacc5910743e4ab34eadb1e89cc94 +msgid "The token was in invalid type." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.login:11 +#: ../../../discord/client.py:docstring of discord.client.Client.login:11 +#: e47b353c4c374b69a0516a6c01b5f5db +#: a4dabd304618452d84eaae59ef407bc3 +msgid "The wrong credentials are passed." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.login:12 +#: ../../../discord/client.py:docstring of discord.client.Client.login:12 +#: b7bea11ed3954e4d8bb8ceba44c2c5a3 +#: ef77098375c444cbb2000984eb9a837c +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.on_application_command_error:3 +#: 9bd06ccb118d45cfade916f4c2e9e09d +msgid "The default command error handler provided by the bot." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.on_application_command_error:5 +#: c577795c8bcb40caae05540580226588 +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.on_application_command_error:8 +#: 14d54c8c45da4b1ea8ea9a527ef62098 +msgid "This only fires if you do not specify any listeners for command error." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.on_error:3 +#: ../../../discord/client.py:docstring of discord.client.Client.on_error:3 +#: 57179a6f7b13404b8d698521898a6d9c +#: 546966820d884d0288a378da59dab4a3 +msgid "The default error handler provided by the client." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.on_error:5 +#: ../../../discord/client.py:docstring of discord.client.Client.on_error:5 +#: 58a09ed6103242578e6f09b9c61c0f17 +#: e5ee13e867c44f818e2d97c5b9d7a201 +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.persistent_views:1 +#: ../../../discord/client.py:docstring of discord.Client.persistent_views:1 +#: 0ddbaefb41734b77ad0d3ad0792c3d18 +#: 9568e6a0a03943b2aca1df996317ad5d +msgid "A sequence of persistent views added to the client." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.polls:1 +#: ../../../discord/client.py:docstring of discord.Client.polls:1 +#: 7052b64d58da473a956cb108172efa05 +#: 70cabade8d704caf820fae10ccca2de4 +msgid "The polls that the connected client has." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.private_channels:1 +#: ../../../discord/client.py:docstring of discord.Client.private_channels:1 +#: c2acbbccabb944aeb2cfcdebcfaaa94c +#: 36549ec6731b4140b8765d2abf97b285 +msgid "The private channels that the connected client is participating on." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.private_channels:5 +#: ../../../discord/client.py:docstring of discord.Client.private_channels:5 +#: c9cd8785f1e7403e86e3a939de337f91 +#: 3ef2fdafd219459695673b3b81373844 +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:3 +#: 21363eab134d440382c795173dd057c0 +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:7 +#: b02242879b784c65ac623cbda25aee83 +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:11 +#: 5a7f80f98b7445e0bbe1ffbaf4f75a5c +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:18 +#: 5eba8aff592647dbb428a36b08475afc +msgid "The interaction to process" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:21 +#: 098da280f563492c8010c8ad52ae3b46 +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:3 +#: 6fb0bc75b4244e36896183264590e7f1 +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:7 +#: 4ea2920e2db64df6859efe1b1f524b48 +msgid "The command to register." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:10 +#: 8b8d635e6e8d4e7c8a3aed8d2b2113e4 +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:14 +#: 4da5da38c13c4cce84fa4a5f1324b431 +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:18 +#: 84a8824b3dbc412281a70609fb40e4db +msgid "The command that was registered" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:19 +#: a32da6d17c784b489e12a5b06559a374 +msgid ":class:`~.ApplicationCommand`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:3 +#: fbe13cfdf4c344ce8845196b3c9c308c +msgid "Register a list of commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:8 +#: de60834094264c87b010a83d28ef3a31 +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:11 +#: f7d13a7b72ee45829b22b9d1d4115004 +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:15 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:30 +#: 8033302734aa4ce0a6cb372c445cdb12 +#: a33a45bcc1884eb9868e56e24ecf878c +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:20 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:35 +#: 8faca78fa87f4d3bb12fb70fd01d35e3 +#: c47fe8b3f3974cdfbf1b1d6a522ccc91 +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:24 +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:52 +#: 7a51594d4dce42bc92a656b664696dce +#: c6b87f7c2ff44c25b7f4b139785d8b75 +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:27 +#: 954c934a3ae542bd8e48d65c6872c37f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:1 +#: b99435e52b874c98861200f494f1266a +msgid "Atomically reloads an extension." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:3 +#: eb3fc9d30ad248d59bc53b98fd0a8110 +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:9 +#: 11271e1cdfbf422bb9d35cef4a1a2622 +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:14 +#: f0dc77f6bc6744e08e89bd30c7719544 +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:14 +#: c257e5f934bd4c41ab4bd9003112a5d5 +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:21 +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:25 +#: b2947b8e3f1d42259d4d6afe1406758d +#: 4cb97699dc1f4e5b9f7c75d398086528 +msgid "The extension was not loaded." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.reload_extension:24 +#: a2829fe98fe748338b65015d93fc299a +msgid "The extension setup function had an execution error." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:1 +#: 94d9dca4e09f47bcbb41742185f8a778 +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:7 +#: a272e12723b0440e8cdd4b64dd581be0 +msgid "The command to remove." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:10 +#: 5c3fa5ba0e24446ca0c5d451ab0d7ef3 +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.remove_check:1 +#: 318002b550784a58a407ca8a6ea60975 +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.remove_check:6 +#: ac0f014b030846a4886347653f09eae7 +msgid "The function to remove from the global checks." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.remove_check:8 +#: 5ccca55b893a4ce196b56ac7b4bf3fea +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.remove_cog:1 +#: afc46aa053de44acac79848d8a4d48bd +msgid "Removes a cog from the bot and returns it." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.remove_cog:3 +#: 8760d9d2494745fd8c2bbf789078f622 +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.remove_cog:6 +#: a6da2cef0f344cbc97b69314e265bf25 +msgid "If no cog is found then this method has no effect." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.remove_cog:9 +#: 206390d6458e4be89131c95feaa9c242 +msgid "The name of the cog to remove." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.remove_cog:12 +#: 079d5ea3e3c547edb0104884b59c1d1d +msgid "The cog that was removed. ``None`` if not found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.remove_cog:13 +#: 10349ef7943d47cf9ee8c96d7a3e3f09 +msgid "Optional[:class:`.Cog`]" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.remove_listener:1 +#: ../../../discord/client.py:docstring of discord.client.Client.remove_listener:1 +#: f402b73bece24cc49036238c228a2cf6 +#: 3afa985e90bb447083858f428e726948 +msgid "Removes a listener from the pool of listeners." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.remove_listener:4 +#: ../../../discord/client.py:docstring of discord.client.Client.remove_listener:4 +#: 0ae89918698b491f89b9233a129a1897 +#: 00707111e60e4748b739759550d4b312 +msgid "The function that was used as a listener to remove." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.remove_listener:6 +#: ../../../discord/client.py:docstring of discord.client.Client.remove_listener:6 +#: 515f9c536b89476fba576f7ce5614414 +#: a6f3d8a9797f4eba930d6afae8af07c0 +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.run:1 +#: ../../../discord/client.py:docstring of discord.client.Client.run:1 +#: 571249fef8cd45c2981975498a4e7851 +#: eea185c9a6434d46895e699dc7ba43d1 +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.run:4 +#: ../../../discord/client.py:docstring of discord.client.Client.run:4 +#: 2106434fbe294fed9159326a73846c02 +#: 8100d4183d2f462db06dffe4e4205c62 +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.run:8 +#: ../../../discord/client.py:docstring of discord.client.Client.run:8 +#: bf32743d60dc4a47b2809974b262f96b +#: 248d9d57107e4267bae9d8125afe64dc +msgid "Roughly Equivalent to: ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.run:20 +#: ../../../discord/client.py:docstring of discord.client.Client.run:20 +#: 5068dc186f7d4b5c98caaa8752b6b428 +#: b0b5d69f40b84443b9a2b0ccb0c03ce7 +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.start:3 +#: ../../../discord/client.py:docstring of discord.client.Client.start:3 +#: 904fe45f358146e683fec60eee80c2e5 +#: 0c9244ba088248ab8217849c96b68d6b +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.start:5 +#: ../../../discord/client.py:docstring of discord.client.Client.start:5 +#: 02034fb9cb9c44b7810a0d146353bf07 +#: ff7f80e610de4dba8806a5fd88577b15 +msgid "An unexpected keyword argument was received." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.status:1 +#: ../../../discord/client.py:docstring of discord.Client.status:1 +#: ab9038811b594d4ea2ea96f42440f117 +#: 3bfb74f1e043488aaac746e167c11287 +msgid "The status being used upon logging on to Discord." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.stickers:1 +#: ../../../discord/client.py:docstring of discord.Client.stickers:1 +#: b39bab7b652b4d4f98cf18b2b9db6484 +#: 7f97759ffaa84ee58320cf59751ad3c5 +msgid "The stickers that the connected client has." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.store_url:1 +#: ../../../discord/client.py:docstring of discord.Client.store_url:1 +#: 4a2351568c31486793eb53e153daa658 +#: 668c77f358474bf7913f25d1f50b3093 +msgid "The URL that leads to the application's store page for monetization." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:3 +#: e41ee7cfb81d4efbb82555468a565e3b +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:8 +#: af342759879c41d2b37da067dc43b3fb +msgid "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:" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:20 +#: ee42e6eda6db4919b8cbd51d9980a031 +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:27 +#: d9a16639758842dc8da3fb43f1016194 +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:39 +#: 4e2c5bcbf6fa4e04bb1a21be03790c07 +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:43 +#: c7ee914bd75d468a8a9831931c65076e +msgid "Whether to register guild commands. Defaults to True." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:46 +#: 774275396f9e4845a5555975a19daa76 +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:1 +#: 911175a53ba24fc4a4c0ba2d0cf64aa2 +msgid "Unloads an extension." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:3 +#: be8975adc11947f5a3b07d92c76bc7f5 +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:6 +#: 7d49b0308c7541fb82f6fbecf79a8108 +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:12 +#: 86a50feef9e14adaba9477a06f226bf1 +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:17 +#: c6b000d16a9943f4be19931fa26a7326 +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:17 +#: 323fe63c4de8498e9c77dbd7765d0be5 +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.cog.CogMixin.unload_extension:24 +#: 017dba9563364359a4934fe0a812245f +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:3 +#: ../../../discord/client.py:docstring of discord.client.Client.update_role_connection_metadata_records:3 +#: 6f4ba32dcd474a5bb21ddc0448b64cc8 +#: 523485ced52a43c8aa55e341075eb4ee +msgid "Updates the bot's role connection metadata records." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:8 +#: ../../../discord/client.py:docstring of discord.client.Client.update_role_connection_metadata_records:8 +#: f35e47ae72cb45fbbd43a5849db2f4ed +#: 60183bcf9bfc4118887a2ccd6ff7628d +msgid "The new metadata records to send to Discord." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:11 +#: ../../../discord/client.py:docstring of discord.client.Client.update_role_connection_metadata_records:11 +#: 157edf86c4214bac9cc97778a341cb81 +#: c96f685db8e4412abc5b2eb5516af20d +msgid "The updated role connection metadata records." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.user:1 +#: ../../../discord/client.py:docstring of discord.Client.user:1 +#: a88e758c5a764f1b9008d208a82a5baf +#: 97041bb84e204971be0d4b898b4650b9 +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.users:1 +#: ../../../discord/client.py:docstring of discord.Client.users:1 +#: 6d3be79316ad4aed8e4440853891714e +#: fc93c7b55c98453b8c74c893a94a4d93 +msgid "Returns a list of all the users the bot can see." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.voice_clients:1 +#: ../../../discord/client.py:docstring of discord.Client.voice_clients:1 +#: b67ba7a02b43409aaa2626f955f79fd2 +#: fd4f49159bde43c19e715fb43b528dc2 +msgid "Represents a list of voice connections." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.voice_clients:3 +#: ../../../discord/client.py:docstring of discord.Client.voice_clients:3 +#: 9075a14b38ea45a6b0a11e551ef621f2 +#: bdea0cd5eb8b41c28c3cec1a9909439e +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:3 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:3 +#: 6487197b421c48bba8784b3fa1ff4ac9 +#: f6969d65a8ad4d76a8541c35f987366a +msgid "Waits for a WebSocket event to be dispatched." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:5 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:5 +#: 0b048b61ad98439db8940a4d2d8d3701 +#: 4a77c5e3b9c94a3cbceb1ec2ba32a585 +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:9 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:9 +#: 689487a846eb47e093ba8e1d91517750 +#: 2999411ac0f44d41b0d21aa8b643ceec +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:14 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:14 +#: 0cef96bb40b84218860e67a2b01b3370 +#: ed7edaf423424cceb8a312cd0f2bc274 +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:19 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:19 +#: ee2bd0327d864fb28565cad59831a983 +#: c2b695e438ae4e4f9b49ab270bce5cfd +msgid "This function returns the **first event that meets the requirements**." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:22 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:22 +#: cd139f56acdc485595a3eb1113c5e0ff +#: 62466a8b8b8848b1ac878363c02f83fe +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:26 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:26 +#: 41e9fd8669df481ba87c83815fb92f01 +#: 2e7da0e8cdb443169dd45ad780cde403 +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:30 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:30 +#: b5ccde8f18c74e6e8939f7d64c2241f9 +#: 8e2d13f5ca674b6fb62f9ab43b3c05da +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:34 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:34 +#: ea5b0123a5434897907777cc1da3e32b +#: c7f6e84c6978498893e7e0b14d768782 +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:39 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:39 +#: fe1e49bf56f0410eb7b43d04fc145ddd +#: ba64155f0c544ea6bb114a551d0523e2 +msgid "Raised if a timeout is provided and reached." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:43 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:43 +#: fbf53c322b9b4a2190fb5211f9148bfe +#: d2377c8732a94fd890ed08211bbfe627 +msgid "Waiting for a user reply: ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_for:57 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_for:57 +#: 3f2b62ede5b54e9cadcfbb3edf7e3f81 +#: 4edf14c30f3242f19f5c102a99f06d6b +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.wait_until_ready:3 +#: ../../../discord/client.py:docstring of discord.client.Client.wait_until_ready:3 +#: 374ebcd380c14eaebda917973c9c27a6 +#: 48042bb6d6bc451c8a38933fc1b748f5 +msgid "Waits until the client's internal cache is all ready." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:1 +#: 27b08f7dc25947a086a2feceb0523df6 +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:3 +#: 5492eec6b734488c9e67946a7180b89a +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:6 +#: f25e99257d0a483ebe765fa4ef0fdf7a +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.AutoShardedBot:1 +#: 61133e69adc34f46b680972b64aba970 +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "" + +#: ../../api/clients.rst:39 +#: 9483ed2b1c48482885c0ca1eb34130ec +msgid "Clients" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:1 +#: bf69e7a4021a45c8a77931f74ed76550 +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:4 +#: 5c069020781a42fe96c83e24a1f6c3c4 +msgid "A number of options can be passed to the :class:`Client`." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:6 +#: a05ad8a60fa94a36be6482dc51364684 +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:6 +#: c9df9a316415445bbda61e5dc12eea71 +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:9 +#: c3595a83fa414fa58ebb0c3fe72870c4 +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:13 +#: 6c88dd4b014e4fd68019bf91e0e79449 +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:17 +#: 21cc11771cf14b8482b82ed348a0bcc9 +msgid "The connector to use for connection pooling." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:19 +#: 36e77ef20089453bad2c58061b76319e +msgid "Proxy URL." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:21 +#: 2bca727e64604375afc0316e0da77488 +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:23 +#: 22b22764dfe94753af363b0e2e855b53 +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:25 +#: 2994835195fe455b9ba97aa0bf93c946 +msgid "The total number of shards." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:29 +#: 0cbc330e9f874100a24ecdd7f73bf8bb +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:29 +#: f78cb44c1747402fa0d2daa48076c449 +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:35 +#: d1e04968f26046eb83cc40c32fffbce4 +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:35 +#: 1cf5a217e1c448509380cd0675ac2861 +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:41 +#: 839eb639389f4e90bcaf5390534f7254 +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:41 +#: 4ac529aded574578a8be71ceea066b6d +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:48 +#: ff86deee1e964eff876d58a0c1bf9af1 +msgid "A status to start your presence with upon logging on to Discord." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:50 +#: 595862fc879e41dbbdea585be33d1345 +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:52 +#: faae2eb41a6849ea931db8d8e3b6fd1c +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:52 +#: 58dbe8273cff49848baf5100136b8653 +msgid "Control how the client handles mentions by default on every message sent." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:56 +#: 9ed5eed0c42248ab820b06215b9b5a69 +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:61 +#: 69d65080cec044e7b6455edd4a0c6db6 +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:61 +#: 061fbfc2e3974aefa0e85a933b169164 +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:66 +#: b43e4d9978ea452bad0b3f920634f71a +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:66 +#: 8431257445754fb5ba6f8bd670885610 +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:74 +#: a151867e23f44624b83429102b15a98e +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:74 +#: 70630f12d1544afaa766f261e18e28ac +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:76 +#: 0914818f05e04728aa8d77f5b0d51043 +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:85 +#: c72989c35e494798868c418761624dc3 +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:89 +#: bfdaca2ce94b47c491227ce955d6ef14 +msgid "The event loop that the client uses for asynchronous operations." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:91 +#: 49f2ebafe64e46af80bdc5670f75ec65 +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:1 +#: 3cb35c3f35cd4b2ca42e62e2da4cb21d +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:5 +#: b5375ea69da64b3caa024a700394b923 +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:10 +#: b23af5d33cea44b7a27c7209f321f2b5 +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:13 +#: d4eaadf814124f55ab556462d4fbb97a +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:16 +#: b8867ec06a244683a091e3779cb7d564 +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient:23 +#: 154cb8641e7546fb9fa4fbaf26b840aa +msgid "An optional list of shard_ids to launch the shards with." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.AutoShardedClient.latency:3 +#: 45591084a7f244f081d9f18faeb96673 +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.AutoShardedClient.latencies:1 +#: 619ba050e1e849f6b4c984c0fe32b011 +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.AutoShardedClient.latencies:4 +#: 97f9a62dd3ed4c80a81751723a8c7204 +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.get_shard:1 +#: e94acc6e90f1417a98be41ad60b4db51 +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.get_shard:5 +#: dee98d04bb7d49cc82b8b1641fe586b4 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.AutoShardedClient.shards:1 +#: 7d75d87d0698427b8f520c5d1481e427 +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:5 +#: fe09ce2894fb435bb45e56115918a23c +msgid "Example: ::" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:17 +#: 3804449bf2294064adf9b2e5b242eb29 +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:21 +#: 3d9cee2a830946a296dafe6d7f539aa7 +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.change_presence:26 +#: cec772a3fc134fb7bb636f5854a3cf00 +msgid "If the ``activity`` parameter is not of proper type." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.is_ws_ratelimited:1 +#: c11858bd0a2046e5ac236361b14e3083 +msgid "Whether the websocket is currently rate limited." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.is_ws_ratelimited:3 +#: 771bda0c3a274e548f284047259f561a +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.is_ws_ratelimited:6 +#: af9ce954ce2644af83ba1462c4d8d5a5 +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" diff --git a/docs/build/locales/api/cogs.pot b/docs/build/locales/api/cogs.pot new file mode 100644 index 0000000000..f500309040 --- /dev/null +++ b/docs/build/locales/api/cogs.pot @@ -0,0 +1,361 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/cogs.rst:4 +#: 5374666c885c4434b06da0a8790fecdb +msgid "Cogs" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog:1 +#: 458db600a9dc421f888e3b5e7c9f1351 +msgid "The base class that all cogs must inherit from." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog:3 +#: e1e94c83b83740df83784c2fff922069 +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog:7 +#: 8ecea32e63eb4fe29620ed571bb7681b +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "" + +#: ../../api/cogs.rst:0 +#: 1d205dc90db34b6d9d28696d847dee05 +#: 35b5e3289e2e4915a8fe1a7f1955e20c +msgid "Returns" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_commands:1 +#: 898f5042c0b34b3bad6c57241c7a13cb +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_commands:1 +#: 0397355338a240288c1b0d328ef921af +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_commands:6 +#: 8c92dad3ecb14b3098ece5e74258e9f0 +msgid "This does not include subcommands." +msgstr "" + +#: ../../api/cogs.rst:0 +#: c4db6bbac90e467593f54b1cab05f4fb +#: a548999373424e22a1eef592535cb0e9 +#: 02f91797081c4686b377632253e0b5e5 +#: b1f07d6afbc5495c98821a53434155c4 +#: 41c2e67be31840479c7bd7524bf37371 +#: 1d27fdc01fc44d37a3e2e0bf0d0f1990 +#: 3f83461a1f2d44f0b72685cf58fffe1f +#: 441313363d2a4630b03c2bcbc851beda +#: 0e39507babe04898b1f7b7440eff496a +#: 2918950aa3b6453ea6932e0881120dc8 +#: 262dd38c91184e99879dec752b001b36 +msgid "Return type" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_commands:7 +#: 12ea85ca434545618cfed65e71c9d1b2 +msgid "List[:class:`.ApplicationCommand`]" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.Cog.qualified_name:1 +#: 9b9b93d42d1444fdad773c091b29a12e +msgid "Returns the cog's specified name, not the class name." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.Cog.description:1 +#: 09a4937043ae42de98974edac587af34 +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.walk_commands:1 +#: 79a0311d2c504a2683912a45a590a788 +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.walk_commands:0 +#: 019b68caa9ae4423a195db1a4caac677 +msgid "Yields" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.walk_commands:3 +#: c6b428360ea8462ab87d860eeb14f885 +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.walk_commands:6 +#: 89e6b9bfed6f4e92976dc9e8fbaf389f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_listeners:1 +#: 483845d65d544491a23375ed5d92e183 +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_listeners:3 +#: 91c25427765a4ea29546f1167cdd4893 +msgid "The listeners defined in this cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.get_listeners:4 +#: 2fb7acbba5b24dcdb2dc03d91ffa65da +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.listener:1 +#: c3661694ba0d4447b0f9fd92354b48d8 +msgid "A decorator that marks a function as a listener." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.listener:3 +#: 22b14baebc684734bb4830d6299e5c83 +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "" + +#: ../../api/cogs.rst:0 +#: bd530b05086c4698967d87151c86bf4d +#: 8fcb1668c38545e9a11691d5843d4292 +#: f85b6fa40d864c8e9d04c51898aea65e +#: 5c87f05fd02343e6aabe8ec19c096201 +#: 570238345b3a4c1b85575862e150b7bd +#: 7d2fb538c343497d8107a81eaec32040 +#: 7362325cfdff402b81009123ae597dec +#: b11220c5ddf94bfba58d3d256f685a60 +msgid "Parameters" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.listener:6 +#: 056df5f1bcf2456e9448b7ac18cdf0b2 +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.listener:10 +#: 988ebdf9035e4565aa89650d9bf379e5 +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "" + +#: ../../api/cogs.rst:0 +#: 108c54a3aec540989381cab703ffb9cb +msgid "Raises" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.listener:14 +#: 9dd1deee9f194fffafea26f9ed0c1d66 +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.listener:16 +#: 4f8e7498b5ae43b78c54b7b164dcdd88 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.has_error_handler:1 +#: 8540394b44384ceb81c96c63caa5c2d2 +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_unload:1 +#: d763221471154638916ac3d6956b3ae5 +msgid "A special method that is called when the cog gets removed." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_unload:3 +#: e9d793cd323741df9e72ffde220b07e9 +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_unload:6 +#: 724ad9a454b545179a30c4708ea00cff +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_after_invoke:11 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_before_invoke:11 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_command_error:16 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_unload:9 +#: bae3ff62cd7046098fd26a064a87ab95 +#: 1b2841a3e2c047ae8098fd2c42231609 +#: a195a9ea110f4f26aa030bcc626e0593 +#: 0cc47ac622584e3e96de04395e53193a +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check_once:1 +#: c2514ac91866455db81eefb67426a70a +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check:4 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check_once:4 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_check:4 +#: 74a72b4805f9400f99581374cdd6e25d +#: 7f5f3dee2feb45ee82dcd9a5ee87d4b3 +#: 5a923f8cba4545c2af109c263100dcdb +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check:8 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check_once:8 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_after_invoke:8 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_before_invoke:8 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_check:8 +#: 21d75be906eb43a4839ac7c2ac76eb49 +#: a7a1869271a34860adb5b6cd238ed3a6 +#: d990bf3f32a04d2e8d0013db96cf4893 +#: 7c82e86dd4ff496fb6fa8f58eca7f69c +#: ad0ee8e5b9e442be9e7e0a68b346f862 +msgid "The invocation context." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check:11 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check_once:11 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_check:11 +#: bc04772b95eb445880b68aa35b50195a +#: d2c667f93954474cb728a27feb47d68b +#: b96ad52b990d49c1b90438d33ad46ea5 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.bot_check:1 +#: bbe43d3b5dd84335bd98b895da5c5d31 +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_check:1 +#: 565b81b5cfdc4cdda8521ef12839733b +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_command_error:1 +#: 2b94ea8c69b14735aa67ff32dc3c485c +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_command_error:4 +#: 6a8806d6c4dc43f297f233cc8b7b6ee0 +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_after_invoke:5 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_before_invoke:5 +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_command_error:7 +#: 2e2fb136a8f54e59a37867e585a665fa +#: 6f70276a6bbd47e18f25e5f9895edb68 +#: fb131b7b531746c99b5051ec3cb6495e +msgid "This **must** be a coroutine." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_command_error:10 +#: f45a4e9c378d4734bd2deb4595be8ade +msgid "The invocation context where the error happened." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_command_error:13 +#: efb608efd0f84d848d9751acb811d5c4 +msgid "The error that happened." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_before_invoke:1 +#: e700e204ccb442a29787cdda38815ca5 +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_before_invoke:3 +#: 2d77573f53f44ca6b250e7f6df2489b4 +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_after_invoke:1 +#: d9ccb004627a47bebf30219cd886dd84 +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.Cog.cog_after_invoke:3 +#: dbfd268f9dc34ea49b98669dcbbdf3ec +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:1 +#: 904788c309034bf3afb023d13eecfd71 +msgid "A metaclass for defining a cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:3 +#: 161c4beefa534e7b9ab0609af6d8a6f9 +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:7 +#: a6eba5b14cd74e789809db87119d7c77 +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:24 +#: 206e4807ffc441bd8d611a6ea0a96b05 +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:35 +#: e1bd95d427ba4763beddd661b91be7c3 +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:0 +#: 89b6db804e56474fb08d5a060b7ed69d +#: f2a7000c311348c8a5f844dabffd8bd9 +#: e0cbc45438ec4d3b8ec361af0b454cfc +#: f537005ce3194aa6a2205b3ac3e53683 +msgid "type" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:37 +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:45 +#: 459eaf51b3d74a869ea18e53f787fcea +#: 817146cb6cfe412b910cc766c12f7e4f +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:41 +#: a3bb879d22d1404a9ca12a99597eefef +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:49 +#: 5976a1f483c5445ca1697a4a084bca66 +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:65 +#: 2ed6039376f64807b6b5820df01912d7 +msgid ":class:`dict`" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:69 +#: 0194efeae73b4e52b6b48b3cba6e8c8c +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:74 +#: f3c34e2053064a7e9f686c4a5656fbf9 +msgid "Optional[List[:class:`int`]]" +msgstr "" diff --git a/docs/build/locales/api/data_classes.pot b/docs/build/locales/api/data_classes.pot new file mode 100644 index 0000000000..ee99e06178 --- /dev/null +++ b/docs/build/locales/api/data_classes.pot @@ -0,0 +1,6431 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/data_classes.rst:6 +#: 0a78c32f65ce438ea508fc4e400c8264 +msgid "Data Classes" +msgstr "" + +#: ../../api/data_classes.rst:8 +#: ab0bcd989e4543f489cbd8bcaf602f3a +msgid "Some classes are just there to be data containers, this lists them." +msgstr "" + +#: ../../api/data_classes.rst:10 +#: cc819b78c53d4fc99e0f60ed11d07ead +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "" + +#: ../../api/data_classes.rst:13 +#: 2ec03af182ba456a9c8abb02a62b36f3 +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "" + +#: ../../api/data_classes.rst:16 +#: a42a075d6c6f46f9840c28ce7fe31ac3 +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:1 +#: e3d330e0662949cab82a0391b0410305 +msgid "Represents a generic Discord object." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:3 +#: 7df007b5e76e4b50975a2244649d0791 +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:9 +#: 7154b922b863489f927fe091d906420a +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:18 +#: 7658bd6c40fd49399cba371bdcf522ea +msgid "Checks if two objects are equal." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:22 +#: ac4fd4f220d34fb99f5d2493dcfd8b5c +msgid "Checks if two objects are not equal." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:26 +#: fc9c9870cb154ea3a8d22a72d9afe701 +msgid "Returns the object's hash." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.object.Object:30 +#: 6cb23f98f49a4de2847e0f6cb46912b3 +msgid "The ID of the object." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:0 +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:0 +#: ../../../discord/activity.py:docstring of discord.activity.Game:0 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:0 +#: ../../../discord/colour.py:docstring of discord.colour.Colour:0 +#: ../../../discord/components.py:docstring of discord.components.SelectOption:0 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:0 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:0 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:0 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:0 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:0 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedProvider:0 +#: ../../../discord/file.py:docstring of discord.file.File:0 +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:0 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:0 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:0 +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:0 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:0 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:0 +#: ../../../discord/object.py:docstring of discord.object.Object:0 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:0 +#: ../../../discord/poll.py:docstring of discord.poll.Poll:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollMedia:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollResults:0 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:0 +#: ../../docstring of discord.ApplicationFlags.active:0 +#: ../../docstring of discord.ApplicationFlags.app_commands_badge:0 +#: ../../docstring of discord.ApplicationFlags.application_auto_moderation_rule_create_badge:0 +#: ../../docstring of discord.ApplicationFlags.embedded:0 +#: ../../docstring of discord.ApplicationFlags.gateway_guild_members:0 +#: ../../docstring of discord.ApplicationFlags.gateway_guild_members_limited:0 +#: ../../docstring of discord.ApplicationFlags.gateway_message_content:0 +#: ../../docstring of discord.ApplicationFlags.gateway_message_content_limited:0 +#: ../../docstring of discord.ApplicationFlags.gateway_presence:0 +#: ../../docstring of discord.ApplicationFlags.gateway_presence_limited:0 +#: ../../docstring of discord.ApplicationFlags.group_dm_create:0 +#: ../../docstring of discord.ApplicationFlags.managed_emoji:0 +#: ../../docstring of discord.ApplicationFlags.rpc_has_connected:0 +#: ../../docstring of discord.ApplicationFlags.verification_pending_guild_limit:0 +#: ../../docstring of discord.AttachmentFlags.is_clip:0 +#: ../../docstring of discord.AttachmentFlags.is_remix:0 +#: ../../docstring of discord.AttachmentFlags.is_thumbnail:0 +#: ../../docstring of discord.ChannelFlags.pinned:0 +#: ../../docstring of discord.ChannelFlags.require_tag:0 +#: ../../docstring of discord.Intents.auto_moderation_configuration:0 +#: ../../docstring of discord.Intents.auto_moderation_execution:0 +#: ../../docstring of discord.Intents.bans:0 +#: ../../docstring of discord.Intents.dm_messages:0 +#: ../../docstring of discord.Intents.dm_polls:0 +#: ../../docstring of discord.Intents.dm_reactions:0 +#: ../../docstring of discord.Intents.dm_typing:0 +#: ../../docstring of discord.Intents.emojis:0 +#: ../../docstring of discord.Intents.emojis_and_stickers:0 +#: ../../docstring of discord.Intents.guild_messages:0 +#: ../../docstring of discord.Intents.guild_polls:0 +#: ../../docstring of discord.Intents.guild_reactions:0 +#: ../../docstring of discord.Intents.guild_typing:0 +#: ../../docstring of discord.Intents.guilds:0 +#: ../../docstring of discord.Intents.integrations:0 +#: ../../docstring of discord.Intents.invites:0 +#: ../../docstring of discord.Intents.members:0 +#: ../../docstring of discord.Intents.message_content:0 +#: ../../docstring of discord.Intents.messages:0 +#: ../../docstring of discord.Intents.moderation:0 +#: ../../docstring of discord.Intents.polls:0 +#: ../../docstring of discord.Intents.presences:0 +#: ../../docstring of discord.Intents.reactions:0 +#: ../../docstring of discord.Intents.scheduled_events:0 +#: ../../docstring of discord.Intents.typing:0 +#: ../../docstring of discord.Intents.voice_states:0 +#: ../../docstring of discord.Intents.webhooks:0 +#: ../../docstring of discord.MemberCacheFlags.interaction:0 +#: ../../docstring of discord.MemberCacheFlags.joined:0 +#: ../../docstring of discord.MemberCacheFlags.voice:0 +#: ../../docstring of discord.MemberFlags.bypasses_verification:0 +#: ../../docstring of discord.MemberFlags.completed_onboarding:0 +#: ../../docstring of discord.MemberFlags.did_rejoin:0 +#: ../../docstring of discord.MemberFlags.started_onboarding:0 +#: ../../docstring of discord.MessageFlags.crossposted:0 +#: ../../docstring of discord.MessageFlags.ephemeral:0 +#: ../../docstring of discord.MessageFlags.failed_to_mention_some_roles_in_thread:0 +#: ../../docstring of discord.MessageFlags.has_thread:0 +#: ../../docstring of discord.MessageFlags.is_crossposted:0 +#: ../../docstring of discord.MessageFlags.is_voice_message:0 +#: ../../docstring of discord.MessageFlags.loading:0 +#: ../../docstring of discord.MessageFlags.source_message_deleted:0 +#: ../../docstring of discord.MessageFlags.suppress_embeds:0 +#: ../../docstring of discord.MessageFlags.suppress_notifications:0 +#: ../../docstring of discord.MessageFlags.urgent:0 +#: ../../docstring of discord.Permissions.add_reactions:0 +#: ../../docstring of discord.Permissions.administrator:0 +#: ../../docstring of discord.Permissions.attach_files:0 +#: ../../docstring of discord.Permissions.ban_members:0 +#: ../../docstring of discord.Permissions.change_nickname:0 +#: ../../docstring of discord.Permissions.connect:0 +#: ../../docstring of discord.Permissions.create_instant_invite:0 +#: ../../docstring of discord.Permissions.create_private_threads:0 +#: ../../docstring of discord.Permissions.create_public_threads:0 +#: ../../docstring of discord.Permissions.deafen_members:0 +#: ../../docstring of discord.Permissions.embed_links:0 +#: ../../docstring of discord.Permissions.external_emojis:0 +#: ../../docstring of discord.Permissions.external_stickers:0 +#: ../../docstring of discord.Permissions.kick_members:0 +#: ../../docstring of discord.Permissions.manage_channels:0 +#: ../../docstring of discord.Permissions.manage_emojis:0 +#: ../../docstring of discord.Permissions.manage_emojis_and_stickers:0 +#: ../../docstring of discord.Permissions.manage_events:0 +#: ../../docstring of discord.Permissions.manage_guild:0 +#: ../../docstring of discord.Permissions.manage_messages:0 +#: ../../docstring of discord.Permissions.manage_nicknames:0 +#: ../../docstring of discord.Permissions.manage_permissions:0 +#: ../../docstring of discord.Permissions.manage_roles:0 +#: ../../docstring of discord.Permissions.manage_threads:0 +#: ../../docstring of discord.Permissions.manage_webhooks:0 +#: ../../docstring of discord.Permissions.mention_everyone:0 +#: ../../docstring of discord.Permissions.moderate_members:0 +#: ../../docstring of discord.Permissions.move_members:0 +#: ../../docstring of discord.Permissions.mute_members:0 +#: ../../docstring of discord.Permissions.priority_speaker:0 +#: ../../docstring of discord.Permissions.read_message_history:0 +#: ../../docstring of discord.Permissions.read_messages:0 +#: ../../docstring of discord.Permissions.request_to_speak:0 +#: ../../docstring of discord.Permissions.send_messages:0 +#: ../../docstring of discord.Permissions.send_messages_in_threads:0 +#: ../../docstring of discord.Permissions.send_polls:0 +#: ../../docstring of discord.Permissions.send_tts_messages:0 +#: ../../docstring of discord.Permissions.send_voice_messages:0 +#: ../../docstring of discord.Permissions.set_voice_channel_status:0 +#: ../../docstring of discord.Permissions.speak:0 +#: ../../docstring of discord.Permissions.start_embedded_activities:0 +#: ../../docstring of discord.Permissions.stream:0 +#: ../../docstring of discord.Permissions.use_application_commands:0 +#: ../../docstring of discord.Permissions.use_external_apps:0 +#: ../../docstring of discord.Permissions.use_external_emojis:0 +#: ../../docstring of discord.Permissions.use_external_stickers:0 +#: ../../docstring of discord.Permissions.use_slash_commands:0 +#: ../../docstring of discord.Permissions.use_voice_activation:0 +#: ../../docstring of discord.Permissions.view_audit_log:0 +#: ../../docstring of discord.Permissions.view_channel:0 +#: ../../docstring of discord.Permissions.view_guild_insights:0 +#: ../../docstring of discord.PublicUserFlags.active_developer:0 +#: ../../docstring of discord.PublicUserFlags.bot_http_interactions:0 +#: ../../docstring of discord.PublicUserFlags.bug_hunter:0 +#: ../../docstring of discord.PublicUserFlags.bug_hunter_level_2:0 +#: ../../docstring of discord.PublicUserFlags.discord_certified_moderator:0 +#: ../../docstring of discord.PublicUserFlags.early_supporter:0 +#: ../../docstring of discord.PublicUserFlags.early_verified_bot_developer:0 +#: ../../docstring of discord.PublicUserFlags.hypesquad:0 +#: ../../docstring of discord.PublicUserFlags.hypesquad_balance:0 +#: ../../docstring of discord.PublicUserFlags.hypesquad_bravery:0 +#: ../../docstring of discord.PublicUserFlags.hypesquad_brilliance:0 +#: ../../docstring of discord.PublicUserFlags.partner:0 +#: ../../docstring of discord.PublicUserFlags.premium_promo_dismissed:0 +#: ../../docstring of discord.PublicUserFlags.staff:0 +#: ../../docstring of discord.PublicUserFlags.system:0 +#: ../../docstring of discord.PublicUserFlags.team_user:0 +#: ../../docstring of discord.PublicUserFlags.verified_bot:0 +#: ../../docstring of discord.PublicUserFlags.verified_bot_developer:0 +#: ../../docstring of discord.RoleFlags.in_prompt:0 +#: ../../docstring of discord.SKUFlags.available:0 +#: ../../docstring of discord.SKUFlags.guild_subscription:0 +#: ../../docstring of discord.SKUFlags.user_subscription:0 +#: ../../docstring of discord.SystemChannelFlags.guild_reminder_notifications:0 +#: ../../docstring of discord.SystemChannelFlags.join_notification_replies:0 +#: ../../docstring of discord.SystemChannelFlags.join_notifications:0 +#: ../../docstring of discord.SystemChannelFlags.premium_subscriptions:0 +#: 723831052aca4c2d94163331d498fab4 +#: 45420bc3f5e249dd8ef820bdb4863ddc +#: d04be24516744c6cb0d8a75985d21242 +#: d658a315c6b74568a6988f7cbfd0bfd5 +#: 756b428ff3f9484e91ab6d231993be61 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 07a6ab3ef7b647039bcefeda19b570d7 +#: 0ba8abd38afb4d208cbc471b1d0baa5e +#: df0fb4b2f1aa45beb6b6920a8e335e0c +#: e4011bea52634c7ba64aef6135dffbd2 +#: 859d68d0649d49978f9dc52e463ae367 +#: f15f5916f3c44904946502c7f1bc41b0 +#: 0a9f06d333124df0aae9049074965a81 +#: af2b5a1b3db74038a31df759ea7c8813 +#: 240d3aad39f04f92b476f6ba0e75007f +#: 530e6956dbfa465a8855e5b8b2e6529f +#: c0b5a0d23eb144df849ae21e56e1c8cf +#: 74d5fdba4b784f47b2373e8c543a62b3 +#: 5d20cdf35cf44064b8c208f270ffa578 +#: 2842d4409acc41a2964ac2c83972b347 +#: 5d194e2b41154c9abe702d59bd5d87b8 +#: ffb6921ba007446f9ef96812b7f54ea6 +#: 022ca6f62fc649d3babfa503e9a7527d +#: 80c538be47764e71bee2f99f7603a06c +#: 2d431f876ab54a9ba881a6e21b29e517 +#: f2c8b1fc5b0349b3b47cf0bf7adfa959 +#: 95e6b772d9f5492787b72ae79a2f21ba +#: 10706bbef0c04fe0bc85c95ac3cdaa67 +#: c06aab6000c143bc9084e6898cd79330 +#: ea47348b77604cd6bf327c57b7ff3d6d +#: 6e2e7aa2a7c449a99e8f05fdfee3dc1a +#: 0945efcada3240758eff2c695d616f32 +#: 6db56029d8d0485abf50e5258830aff5 +#: f4b5a29e047f49c391e8f8314e7befd1 +#: 8011db96a73b497495b8da7fd21bc04e +#: 1b41ad05a49849278911c3e2f57c8e5d +#: 83632daae24b47c8b698763bdf3d970f +#: 37389512c06c42c1b0ba531669e662b5 +#: 308a58630c4e48c2acc2d2a709e660fd +#: 674e78410f3641199148d66412633ac2 +#: 54d86a1d1b3d4c87b667471e1a7d424f +#: 3cde02c1afdd471284767db5f3c67801 +#: 0d8cf03e305c441a937b9d418b558488 +#: e6bfdc42ce134a04bfb90118a9947aa3 +#: 0b6bdc9f79764717a733eb7a5958f520 +#: 6b70cb17e1624835a9cfb9147b58ae22 +#: a0051f3395e145e995fa38feaacbd40e +#: 387e582afe6e4f83afbaf4741f01bda9 +#: b32eba777e2e4177bb2b6337a6d87d36 +#: e10a63e1deab42fe8c6fcd7d8932ba7d +#: 05321a535c4c45878a4699ee78074aa7 +#: 479d10110b8c42eeaf3cbfc246115ff5 +#: 21d56bd8eba94c109183479433f1c1ce +#: a9e8a6883b98446b9ecb71f7efd7ab86 +#: 0ddf6e0aaae6472b96fc96294db31540 +#: 63b5b77cc34a4447970ce8a9d903d592 +#: f1abdb91350a4b6fa35df6a03223f4ed +#: 8a712d7011784f359c71e028262ffa21 +#: 5ef83e4ad25b4553bd0adc06b645a44c +#: 97e0ed99fe2a4484884c6f02b14cae42 +#: eb490dc96ae7456190afa1256c795173 +#: f56dc653e11247878aaaabfbcf24e3eb +#: 30de2897525b406083d3f48b5a1418db +#: 6a0938ead71746dca43216b8b77e6b97 +#: 25b5b26a8bc4446a988bd4a715341cb6 +#: 2f34a73afd054f428b94b075a4815efd +#: 2e52408878da47499d6d1b5bc5702d5e +#: 9bc030383d614fe099c3ddb3ae665975 +#: ec11ab01f4b74ee3affaaf3d4750fee0 +#: 9db5d6351c654f458dd1a805c1987d3b +#: f35cb50cb1074b16bba2d35a545a9434 +#: cc8a86aad230448e9817fe2ee74eac67 +#: dc34343c5bdb4fdb935aa8f4b1ca285b +#: 438654536c164cb68505e44afa66afd0 +#: dd9ec6d74605486896f5fc9ee837ed06 +#: 332116481489472fa0379be9d3ee5183 +#: 98d087b2fc6d43f5bcdbb5034fcd2874 +#: 08768f5478d74bdeb612abbc25639f61 +#: 8922f30652e341778ca2679fd2df842e +#: 94c25f717b2e4ce5a49b7c037e2974af +#: 4afe29e6fc734eacbe036bafac23ad5d +#: 334db0f3a4d044baa2e9a527992babca +#: 271938fe17eb404383186cc86601c0b0 +#: cb21bc80f4714ee38c11bb9ff9f431ea +#: 9ec1e7635e9347fca8e8ad13fed75c35 +#: 514450299aae4f7ea80762039024ff92 +#: 85bf5d043cd7481586a27becb5aedf53 +#: a54607940629492b9c1c03727ac4de4e +#: 78f9fbbbafee4ccf8c3151ee86646c9a +#: f174cb4e779e4eda866b2c452a23bc39 +#: fb4ac4db321c4be3a323d2ba4ba33e4e +#: 46bc6a8a94a5418fae057a531eb63d60 +#: dc73ce8570d3470f9b10f8567b0faebc +#: 48792da9ab7c45cfb04b9501aefaab99 +#: 83eaedf9ccb0402188314be4eba4c1b8 +#: 12ec5971f73e44f688e72c2364359c69 +#: 099970931aba478bba9567bc704393c2 +#: e469c94fb75444e1a2f5591e8ca7b20d +#: 91034680d87d4e769f7024802b245184 +#: 343b6b213d60480795e500e07999b199 +#: 017c522c652a4d67ab5ac50853446afe +#: 9db63304033a4c4fb87c0c59513b7b37 +#: d2ddb3d0f55643a4b4e708853773a4ee +#: e558da29e7b940b391be5188af924e25 +#: 3042f41661384453bca6bed5ee606ddf +#: 1557320e46934c6a890023f36203c96d +#: 898502a307924edf9655f71595e0fa33 +#: 1180d8806e44448a950abd6a27750256 +#: cf4ebf89a0534e4daa26dc605e0dd572 +#: 4cd59366d6f8480b97e02cdd4983abfa +#: 5e68d38f10854702af0a477a1252267e +#: 1331bedc359c4d66b2dc832b80857c7b +#: e0638cabbb314a708cce6a711c54277d +#: 3a4cc3c7a2f44c42ba01f6c327bcfe60 +#: a290fc40d1504ecabe2c6f9e4cdff828 +#: c0243d1d2d6547679342e9e9035b4217 +#: 622811c4e3f2492dbc3d8ff2e4860426 +#: ba1f9984b24c45e6af8b1227166a8400 +#: 48f66793b20640df8197df7d2cb16b1f +#: 043d80143f22400a9ba620fdc1e586d2 +#: e18aa45ec854422f83b67d44e8093129 +#: 00f26016f3584690aa670c82b9a5859b +#: cef5d936d9bd4a4884cb8c8a7445c286 +#: 2b83bce111824301be1bc7186f0650a3 +#: 72021dfa95f04d84bfd284cd76184bd1 +#: 291ea60547144b76a516449bd79c0605 +#: aaf8f62bd9b44447b3797e662e88eb03 +#: 0aeb9fea9e4b43018632dd93355598fb +#: ad37d95cc3f34217b6c368e1612c2f3f +#: f91c1bed2eef4c1989dcfbdf50a1a3e5 +#: cbd54ccdf75b4d3b988323c93d86d554 +#: 0ecc83fddd52488c8b20b391ba65d910 +#: 86b83d3855a7410dab8d07a852997d06 +#: c3578a055cfd45d49e0697ee5d75fc92 +#: a6d5b3337e5a46ed85bc3cba26d926b5 +#: 32523893e76240f6a5dcf0396ab262f2 +#: e844742addea41dd90103acb9655f516 +#: 0ecab01b15ff4d47b40b2a8be16df0c6 +#: 56a7cb0b34d64a34a523e5914f8b3ebd +#: 2c2036c4592148828c26aec640f43214 +#: 1bafc5d20837463b8bbc4817a17f0357 +#: 6564a1c5b0c945989e70dc6792bd0af6 +#: f03cfac3b21b4c87b722760675402972 +#: e1e21cd951014bb881f6c9020ef6b249 +#: 0bf3ec53a297426586cf6b3cb0778b5a +#: 766a1958bce742a6ae274cabddceed7f +#: aaea374fdeaa44cf959653df9872fafd +#: ee65277801b647d4925e916e6c34f224 +#: 7b8f6406ec4642e1b314cd0218e208e0 +#: 82b721e671494d2e9171a84d62924a8d +#: df9a04ac7fcd49f6a4af42061ce2a224 +#: 676bf364d0374102b25a4ec18025fc50 +#: d075a73e2a544d97b54c03da5b2cddc3 +#: 8794d260d15f462586696cc249b31753 +#: 9ad59de1bb9b43ebafec2daa003c4857 +#: 61890c35ddda470c8f8bf066002e5147 +#: ccc9fa8f40104a339b6f6da0358ceeb3 +#: 72ff8ae688734fdda42a75fb9f1fee05 +#: a5ec3f2a185146be9694cb852efcca32 +#: 66c04714eec14cbfb557be1d0dcde66c +#: 1a0161b887e24cc6a04167fb3a4a8430 +#: d34962ba11bb42489f42a95c966ad7ab +#: f0b2856588244fd3a2765809b32eff21 +#: 541c27115cc14fe784c01a55df4a0ef9 +#: e0a778d68fae40dc8d7261caefcefe8d +#: b8c8632698164b6b9005afa8ffaeaebf +#: 8be37fddfa53406d885f46e06939fc7f +#: 26fa04a7c16747f393e849a185038a09 +#: 795531d790ae4bdc887f572380fd782b +#: ae2a7e3a8981408f8a71d54d1023d5e1 +#: 94239fae42574c6d9741db20ce182778 +#: e87327aef4154502a8aa1c5a3dfb2470 +#: 656fc65fd9154011826827291c6d9954 +#: f9d805bdde9049048627bddffe19f7fb +#: f401a12fd0b344c093abd03eb957c407 +#: 3307d1f7b7ab4197a9b47b19d00c6ae2 +#: fad24603226046c29774b4a23e166fe0 +#: 0eb247412406436aae61c444b85363ff +#: ad2ad0201f5341458331f79ea7fe24dc +#: e953b549534146b28f2750fa2adf3324 +#: 7c915d1ae03a40fa85a9285d4169001f +#: cc9e190084d249f0956e2fff9d7ca49c +#: e4b22c7d25c6474db104695dcfa33389 +#: 30e2db665ac648c6b407f4a5a22236ce +#: b919c311805e4679941d0fb5b06c640c +#: 111c1eda67474a449b1909c91057e284 +#: f6bdf44383bc46b4a7d3e1b85a41b295 +#: 16385f6ea6d544509a9522555b6ca0a5 +#: 1a775dc0fb7642548830259dbf8bb1da +#: 93af319c1cb04baeb24e35eb309888dd +#: 048431dee73842e5bd9ca06ff90e1dbe +#: 0027d21072434bfa9e61d89eee793b74 +#: 2d21f8f6b54f4bfbab94c7cae58e1668 +#: 68c6db8617d6400e9bd966b1c76a6bfe +#: 80ff436f0cb246d2a3649bad2f9256fe +#: 3b41f6a4357346aebbe6be7211a1dc74 +#: a46eb1f855fb4090ae3ff3bc5c41e78b +#: 6e78c347124a437e9ce2a1706b8ce448 +#: 595754fd5f71410ba598bb7ea51c785e +#: 05da6f86d3624c0a86d06e07ee5b9739 +#: 53af18c9683b4c58bae9c43b379fe6ed +#: 586abb76849443ca9374c8c01388153c +#: babe4dc2b2794de0848f10412ef200d2 +#: 72152fd7671841849eb30091200777b4 +#: 4964a5a57dd74f9d9819784be3f86598 +#: 625201c3305e497b92e683def6b3dc90 +#: dc0311d967bf4174973034b392f372b7 +#: 7adf58b2850b4c3cace6e0f8c3b25774 +#: 6ed6d4bd70d0408184e676502aac83e5 +#: 87883d8c38954e08bd11c89f8bb6119a +#: 1419271a3d5f42278de143f56178094f +#: 4aaa6c7ef78c4e7f8fcc3c912b436465 +#: 2f7adaa34ac442e5981bc3551e6ee304 +#: ddc3bbe85be94de08cc58708dd67bfab +#: 7abb32cd5e7e492c80ed486b5d715766 +#: 36493d01dd6c4fe0a9611cb90ef7adde +#: b37b5a4488414c429f152387e580e715 +#: 22b9337396a04120a50a769ba7783e2e +#: 75bc3fd6afbb4053bf194d13f0323b9b +#: 555008a862ee4c4a8619976bbbc41f9f +#: c58374562b1b4347bea43d0c8067b178 +#: 12bac957584c4f3e9957c3790d8bc79c +#: f5098309919d408187f82e02e6104de1 +#: e1e66fbf26414961ba921c6f81963dde +#: 0b40818e61f54a5582905e47a1d6250f +#: adce858a33fc41628e451f18a9f95675 +#: 900bf8ad7d29465bad123cb63dc1fbf4 +#: 8c797ff669bb4b16957fe833875ea5a3 +#: 80e1f7f7c0354419a83fc52ceccb883a +#: 7c47ec299942443c9cfde05c7168bf78 +#: 1e0194c8d7b14abf9a7594a7582afdd5 +#: 2e76e331bdfd4f218c53e1e81dbcb57c +#: 7051f41b9adf4c449a90b92631a80a5a +#: d2cea2df05de4fcf810c8ac9ac4dd1de +msgid "type" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:32 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:22 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:28 +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:42 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:42 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:42 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:52 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:55 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:42 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:44 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:43 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:43 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:42 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:47 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:18 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:41 +#: ../../../discord/object.py:docstring of discord.object.Object:32 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:62 +#: ../../../discord/poll.py:docstring of discord.poll.Poll:21 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:10 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:10 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:16 +#: ../../../discord/poll.py:docstring of discord.poll.PollResults.total_votes:4 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:12 +#: 0a3305279543462d880226cdad446ec5 +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 47963b10a3744670a53e06986a02d383 +#: 83ced52f44bb4a1c95f0962207ce50dc +#: 6674934795ef4e7c9fb97e9e9883e91e +#: 42d8d38cc1c44c92ab537f362783eacd +#: 7773bc4ea03b45bc9e2c191bc74c4615 +#: 964db6a3fdd44cdfaa6651e0da067ab6 +#: 45f1615d0fc24023b49ded37964706cf +#: fe60f825ecaf4d3799c29560a2ed399c +#: f50f1b6c260e43d7b16bf05da41e75e5 +#: 52a0667bcce74d4a99ae7e4cdf857c36 +#: 218c437278cb406297008929bd5a0ba5 +#: 6c2d449763d548c3853211f24df2de8a +#: a224f31b1e4e4be3b6be1f3c00e8dae7 +#: cc58c7455c6949e9af4aa545ac3f3363 +#: 8ad759d221664ccfb289a4e043067be1 +#: b0a2bb9f3648423fa099420af4cdce91 +#: db080e1a2b944e0fb7defe029a83fea9 +#: ebadae496ec1449eb4ea02cf169791ba +#: 9ab47f660f9d45839555ecd57c543291 +#: bf46c96b2d1e4d83b3de8317b10ed6b9 +#: 7f6fae16d09e4c24a3831192db9f7b69 +#: a1cab8f5ea764dceb240e919bf6fc164 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:0 +#: ../../api/data_classes.rst:0 +#: e10fd84d147f4b71b2d38959065e253c +#: 62c0635de0e14e85b11eb228a093d50b +#: 17d3622dc479450a9951e9f01f4e961e +#: 89e6520d4ff047f18dee15ce511b202d +#: ed60de7fca634eb19790777106f69830 +#: b5ea8629223b4b5b93a1742e5a53077e +#: d463224bd212438b803261a9fa1b966a +#: 41838a50196b4f6281147969c43977d0 +#: bc227baf3a35408b8f5380ffa74958b7 +#: 89319c51dbb4429689c6f91effe4cb08 +#: 6b1cf7375d8a460e98fd83de29699b4c +#: 6d68ababab8f4e51b1a2f08e47eaba29 +#: 966eda34cf1540898516b9b10f19bc8e +#: 73eae0b22fa84a4d9434043893740779 +#: 2ad46d0c58ac40e58256e159dad0f520 +#: b36792625cd14959aef6825b394d7e65 +#: 761d91a52337462a9dd313c632089619 +#: 78e9e8f3dc1c42f09b8e0d1c62f9f9ed +#: c8497c344721448497b3654a1602f755 +#: f8e00c5b3337461f956fbbd25e02ae62 +#: 7ace093568484906a6c5f5957314d74e +#: 4bc9514dda874f0699ae982d41153a3a +#: bc29a932226d4238a4d291dedc2e59ac +#: 1a930f661aa84f6dbe32081784400b6b +#: 655139ace0cc4b5c98ad98015e93ab4b +#: 8b31f76dc94f4072b4d58fdd18c1a585 +#: 014ae19c517c48f6a091a28d69a8b3a5 +#: 1ef3bdca0a5e4973b00c7edc461c73b9 +#: 198e7587528c44e896b664ecb8476b54 +#: 9e240c0ff8c14c89bf512a5f72030139 +#: 77b3782ffd11488d92b177c4dd03210c +#: f920935e9ce4486095fa73daf51d998d +#: 5e6520a34ccf48d6a972696414029f56 +#: 4379a2c0216641db849a6a1f717afc5e +#: c4ffc614443a4b038c39c18da2d3ca3e +#: 233276ef38364b66a3994072054270b2 +#: 799421617bbd4e5889e222fc2c9c9aca +#: 1c5920924a154135bf274bd93de64901 +#: a5a5caa1bed843399e2325b7cb8f7cff +#: 56c138e55f804de48d4b011ead54a11b +#: c4046998e69c412b8ac97d13a888cb04 +#: 5d804aa2f2294f5a825b41b27e50f690 +#: 7935cfc62ff049abbeb4e9a2086e6d8c +#: f87cff025dd245aaa035cf395d41e256 +#: d31e3910fa984089ae93db3f29751211 +#: 6c53c2fe1d1142bca2fb55a07f4c83e8 +#: c06664f32316496988303b5793e859d4 +#: 42d656cfc6fa4a4884e3d98e1f836b7d +#: bc7c7c91b3c04defa0f30580aa3e581d +#: 876b2ac7229145b4afc3b5a3551e1248 +#: 2b9e9159682349eca87ed0a14bbc509d +#: 5f14c630c24a475d91e0fb178bb5437c +#: 853c9381504f48b593ba954d0afb178f +#: 0dda19c3dbad40db9bd17f8f9c95b6d8 +#: 349f89275e3c4309adc923dff891ba65 +#: 6ae6e43ff75e4d2295f3c6e8013e8400 +#: 520bcd5daf714096a5711596aba0925e +#: d84515d0f9cc49bc809bbf957eb655a7 +#: 02e6b4f375dc4103b249b4debb40ead3 +#: 2f58fb32e82f4b27b0e083777aa0101f +#: 8cbbbb351bae4d87a5d58d835b3cd502 +#: d8d4b29cd6174ed69807f5d8527a8500 +#: 96fb28de02194c4f82a850f49c3eb83c +#: a866a6682a3e428ea5d9bbb0c4ce4499 +#: 8fd51c9c6f6441cb89dcf33a3e22661e +#: 970a3e82e49e47f896bb44c4dbe65093 +#: 4fda4bfd2da54d8dbad0defab5f3bca9 +#: fd587e8eeb714f238cef948388b6cc39 +#: 8bed657aae5f41c0838455b3bf39cb02 +#: 11779101e95d4758a5b7e2141370db3c +#: 0416378d9e5d457091e35bbf5041c0fa +#: 027c0054d7d548f1b4bc8c8c8c43f495 +#: 9510d18349da4e9ea1e3032fb0fff282 +#: 184002a4004741bfbee0e804836d09aa +#: bebd95e10a7f4a0a86c37b4b3b2930bb +#: 409871af4d0049db9007b8fe36fb61eb +#: c0113e3af80a44488f7b96ebda8e2c90 +msgid "Parameters" +msgstr "" + +#: ../../../discord/object.py:docstring of discord.Object.created_at:1 +#: f057925900a64a8ba20a93fbe5494253 +msgid "Returns the snowflake's creation time in UTC." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.Object.worker_id:1 +#: 53a32582704149b99db505d1034792e7 +msgid "Returns the worker id that made the snowflake." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.Object.process_id:1 +#: 65dff6ade4594d2b8b83e2db2f87e06d +msgid "Returns the process id that made the snowflake." +msgstr "" + +#: ../../../discord/object.py:docstring of discord.Object.increment_id:1 +#: 824e681e53414a8c8cccf61fd3f837e9 +msgid "Returns the increment id that made the snowflake." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:1 +#: 0d8b907771e64532af760f81f51e6054 +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:3 +#: 836aee37573f4fb99a2e2ba8cd2ac24e +msgid "These can be created by users." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:9 +#: b0f1217cfaff4c189043c1907c804416 +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:31 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:55 +#: ../../../discord/components.py:docstring of discord.components.SelectOption:12 +#: ../../../discord/components.py:docstring of discord.components.SelectOption:20 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:25 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:34 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:42 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:49 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:9 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:15 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:21 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:27 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:9 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:15 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:9 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:15 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:21 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:10 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:16 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedProvider:9 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedProvider:15 +#: ../../../discord/poll.py:docstring of discord.poll.PollMedia:9 +#: fc861202507f4454976c8563dc3bc383 +#: 05be8ec42ca842988501f59cc34e4060 +#: bf029a45ccb14764ab8bb9e4b6849d2a +#: 3067ff3abcb343c69e5f3b774b1707b4 +#: 3db498623a9941f1b44ae0582b1cef87 +#: e33efd7125ad4ac3a80b14823659d414 +#: 857cc0236e5240ca8abdd3b1e5be2ced +#: f059507051fd483ba9758c6261782f9a +#: 6d1a5a95476049769c793bf45d8edc94 +#: 3450345a2d7c45aea36065249b69db89 +#: 3e01ff84653e46bc82c16d9c2295c154 +#: 3e43a1357be14fee8928f846d8d55f5b +#: 537df26e27624f61be7e52e144e4889a +#: 41859130077947c28a61896fdd0d7930 +#: 6523dfc5793c46f3a29b311bd08e2f6b +#: 281a5156098641b885203455b0eefbfb +#: 096b0456bb834dccb91c5d2c026df8af +#: 8c3c40fe88bd4eeea7eb22c62cee063b +#: 423345f4c1fd41c8ac177257fe9d734b +#: c40fe8ce55c74105ba994f640e69d85d +#: 711d883481334e1589f08b99598207c9 +#: 954985a9ab0a4c4985decf0c2f332027 +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:16 +#: 579e6accca914c3998466750119550fe +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:24 +#: df26f5a7b24d4b6d906959574c93288e +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:22 +#: ../../../discord/activity.py:docstring of discord.activity.Activity:28 +#: ../../../discord/activity.py:docstring of discord.activity.Activity:40 +#: ../../../discord/activity.py:docstring of discord.activity.Activity:46 +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:27 +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:39 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:29 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:35 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:41 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:49 +#: ../../../discord/components.py:docstring of discord.components.SelectOption:27 +#: ../../../discord/file.py:docstring of discord.file.File:30 +#: ../../../discord/file.py:docstring of discord.file.File:36 +#: 3963803bd3104b1f89165daeab20d80a +#: 1829644e9c8741b9ab3d3326ded2df0a +#: 5e3a41afb3fe4f0bac828fa0417c1316 +#: 761f0704bea54d919239e0ee7f1ea028 +#: 9bd8c36d03f641e19b38a882dc4fed9c +#: eee38b56d2064a69a28a365348ff00ed +#: 50e2086678c1489a971f1fcf606cd6e5 +#: 510dcfdc61e84b5181227d4074373a12 +#: 1967cc9d9cd34c6bb77c73b4199a36ee +#: ea836c1ad5a24a3382168e4163dee891 +#: 2e97d4cb22bf4a44adf997fe1db3bec1 +#: ef4f169f372d46c294753d8d5a1645c6 +#: 94c28ca6a1b143378f64a5bd86011098 +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:31 +#: 5c9b407cffa7482394bcebc4fc8cd412 +msgid "Whether this option is selected by default." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectOption:33 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:21 +#: ../../../discord/file.py:docstring of discord.file.File:42 +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:11 +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:40 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:33 +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.is_empty:7 +#: ../../../discord/poll.py:docstring of discord.poll.Poll:27 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:22 +#: ../../../discord/poll.py:docstring of discord.poll.PollResults:9 +#: ../../docstring of discord.ApplicationFlags.active:6 +#: ../../docstring of discord.ApplicationFlags.app_commands_badge:6 +#: ../../docstring of discord.ApplicationFlags.application_auto_moderation_rule_create_badge:5 +#: ../../docstring of discord.ApplicationFlags.embedded:3 +#: ../../docstring of discord.ApplicationFlags.gateway_guild_members:4 +#: ../../docstring of discord.ApplicationFlags.gateway_guild_members_limited:4 +#: ../../docstring of discord.ApplicationFlags.gateway_message_content:3 +#: ../../docstring of discord.ApplicationFlags.gateway_message_content_limited:4 +#: ../../docstring of discord.ApplicationFlags.gateway_presence:4 +#: ../../docstring of discord.ApplicationFlags.gateway_presence_limited:4 +#: ../../docstring of discord.ApplicationFlags.group_dm_create:3 +#: ../../docstring of discord.ApplicationFlags.managed_emoji:3 +#: ../../docstring of discord.ApplicationFlags.rpc_has_connected:3 +#: ../../docstring of discord.ApplicationFlags.verification_pending_guild_limit:4 +#: ../../docstring of discord.AttachmentFlags.is_clip:3 +#: ../../docstring of discord.AttachmentFlags.is_remix:3 +#: ../../docstring of discord.AttachmentFlags.is_thumbnail:3 +#: ../../docstring of discord.ChannelFlags.pinned:3 +#: ../../docstring of discord.ChannelFlags.require_tag:6 +#: ../../docstring of discord.Intents.auto_moderation_configuration:9 +#: ../../docstring of discord.Intents.auto_moderation_execution:7 +#: ../../docstring of discord.Intents.bans:6 +#: ../../docstring of discord.Intents.dm_messages:27 +#: ../../docstring of discord.Intents.dm_polls:17 +#: ../../docstring of discord.Intents.dm_reactions:18 +#: ../../docstring of discord.Intents.dm_typing:11 +#: ../../docstring of discord.Intents.emojis:6 +#: ../../docstring of discord.Intents.emojis_and_stickers:21 +#: ../../docstring of discord.Intents.guild_messages:38 +#: ../../docstring of discord.Intents.guild_polls:17 +#: ../../docstring of discord.Intents.guild_reactions:18 +#: ../../docstring of discord.Intents.guild_typing:11 +#: ../../docstring of discord.Intents.guilds:23 +#: ../../docstring of discord.Intents.integrations:12 +#: ../../docstring of discord.Intents.invites:10 +#: ../../docstring of discord.Intents.members:33 +#: ../../docstring of discord.Intents.message_content:23 +#: ../../docstring of discord.Intents.messages:31 +#: ../../docstring of discord.Intents.moderation:11 +#: ../../docstring of discord.Intents.polls:17 +#: ../../docstring of discord.Intents.presences:20 +#: ../../docstring of discord.Intents.reactions:18 +#: ../../docstring of discord.Intents.scheduled_events:18 +#: ../../docstring of discord.Intents.typing:11 +#: ../../docstring of discord.Intents.voice_states:22 +#: ../../docstring of discord.Intents.webhooks:9 +#: ../../docstring of discord.MemberCacheFlags.interaction:6 +#: ../../docstring of discord.MemberCacheFlags.joined:8 +#: ../../docstring of discord.MemberCacheFlags.voice:7 +#: ../../docstring of discord.MemberFlags.bypasses_verification:7 +#: ../../docstring of discord.MemberFlags.completed_onboarding:3 +#: ../../docstring of discord.MemberFlags.did_rejoin:3 +#: ../../docstring of discord.MemberFlags.started_onboarding:3 +#: ../../docstring of discord.MessageFlags.crossposted:3 +#: ../../docstring of discord.MessageFlags.ephemeral:5 +#: ../../docstring of discord.MessageFlags.failed_to_mention_some_roles_in_thread:5 +#: ../../docstring of discord.MessageFlags.has_thread:5 +#: ../../docstring of discord.MessageFlags.is_crossposted:3 +#: ../../docstring of discord.MessageFlags.is_voice_message:5 +#: ../../docstring of discord.MessageFlags.loading:7 +#: ../../docstring of discord.MessageFlags.source_message_deleted:3 +#: ../../docstring of discord.MessageFlags.suppress_embeds:3 +#: ../../docstring of discord.MessageFlags.suppress_notifications:7 +#: ../../docstring of discord.MessageFlags.urgent:5 +#: ../../docstring of discord.Permissions.add_reactions:3 +#: ../../docstring of discord.Permissions.administrator:5 +#: ../../docstring of discord.Permissions.attach_files:3 +#: ../../docstring of discord.Permissions.ban_members:3 +#: ../../docstring of discord.Permissions.change_nickname:3 +#: ../../docstring of discord.Permissions.connect:3 +#: ../../docstring of discord.Permissions.create_instant_invite:3 +#: ../../docstring of discord.Permissions.create_private_threads:5 +#: ../../docstring of discord.Permissions.create_public_threads:5 +#: ../../docstring of discord.Permissions.deafen_members:3 +#: ../../docstring of discord.Permissions.embed_links:3 +#: ../../docstring of discord.Permissions.external_emojis:3 +#: ../../docstring of discord.Permissions.external_stickers:5 +#: ../../docstring of discord.Permissions.kick_members:3 +#: ../../docstring of discord.Permissions.manage_channels:5 +#: ../../docstring of discord.Permissions.manage_emojis:3 +#: ../../docstring of discord.Permissions.manage_emojis_and_stickers:5 +#: ../../docstring of discord.Permissions.manage_events:5 +#: ../../docstring of discord.Permissions.manage_guild:3 +#: ../../docstring of discord.Permissions.manage_messages:7 +#: ../../docstring of discord.Permissions.manage_nicknames:3 +#: ../../docstring of discord.Permissions.manage_permissions:5 +#: ../../docstring of discord.Permissions.manage_roles:5 +#: ../../docstring of discord.Permissions.manage_threads:5 +#: ../../docstring of discord.Permissions.manage_webhooks:3 +#: ../../docstring of discord.Permissions.mention_everyone:3 +#: ../../docstring of discord.Permissions.moderate_members:5 +#: ../../docstring of discord.Permissions.move_members:3 +#: ../../docstring of discord.Permissions.mute_members:3 +#: ../../docstring of discord.Permissions.priority_speaker:3 +#: ../../docstring of discord.Permissions.read_message_history:3 +#: ../../docstring of discord.Permissions.read_messages:5 +#: ../../docstring of discord.Permissions.request_to_speak:5 +#: ../../docstring of discord.Permissions.send_messages:3 +#: ../../docstring of discord.Permissions.send_messages_in_threads:5 +#: ../../docstring of discord.Permissions.send_polls:5 +#: ../../docstring of discord.Permissions.send_tts_messages:3 +#: ../../docstring of discord.Permissions.send_voice_messages:5 +#: ../../docstring of discord.Permissions.set_voice_channel_status:5 +#: ../../docstring of discord.Permissions.speak:3 +#: ../../docstring of discord.Permissions.start_embedded_activities:5 +#: ../../docstring of discord.Permissions.stream:3 +#: ../../docstring of discord.Permissions.use_application_commands:5 +#: ../../docstring of discord.Permissions.use_external_apps:8 +#: ../../docstring of discord.Permissions.use_external_emojis:5 +#: ../../docstring of discord.Permissions.use_external_stickers:5 +#: ../../docstring of discord.Permissions.use_slash_commands:5 +#: ../../docstring of discord.Permissions.use_voice_activation:3 +#: ../../docstring of discord.Permissions.view_audit_log:3 +#: ../../docstring of discord.Permissions.view_channel:3 +#: ../../docstring of discord.Permissions.view_guild_insights:5 +#: ../../docstring of discord.PublicUserFlags.active_developer:5 +#: ../../docstring of discord.PublicUserFlags.bot_http_interactions:5 +#: ../../docstring of discord.PublicUserFlags.bug_hunter:3 +#: ../../docstring of discord.PublicUserFlags.bug_hunter_level_2:3 +#: ../../docstring of discord.PublicUserFlags.discord_certified_moderator:5 +#: ../../docstring of discord.PublicUserFlags.early_supporter:3 +#: ../../docstring of discord.PublicUserFlags.early_verified_bot_developer:5 +#: ../../docstring of discord.PublicUserFlags.hypesquad:3 +#: ../../docstring of discord.PublicUserFlags.hypesquad_balance:3 +#: ../../docstring of discord.PublicUserFlags.hypesquad_bravery:3 +#: ../../docstring of discord.PublicUserFlags.hypesquad_brilliance:3 +#: ../../docstring of discord.PublicUserFlags.partner:3 +#: ../../docstring of discord.PublicUserFlags.premium_promo_dismissed:3 +#: ../../docstring of discord.PublicUserFlags.staff:3 +#: ../../docstring of discord.PublicUserFlags.system:3 +#: ../../docstring of discord.PublicUserFlags.team_user:3 +#: ../../docstring of discord.PublicUserFlags.verified_bot:3 +#: ../../docstring of discord.PublicUserFlags.verified_bot_developer:3 +#: ../../docstring of discord.RoleFlags.in_prompt:3 +#: ../../docstring of discord.SKUFlags.available:3 +#: ../../docstring of discord.SKUFlags.guild_subscription:3 +#: ../../docstring of discord.SKUFlags.user_subscription:3 +#: ../../docstring of discord.SystemChannelFlags.guild_reminder_notifications:5 +#: ../../docstring of discord.SystemChannelFlags.join_notification_replies:5 +#: ../../docstring of discord.SystemChannelFlags.join_notifications:3 +#: ../../docstring of discord.SystemChannelFlags.premium_subscriptions:3 +#: e29fe4fdd9ad421295dee23fa82019b0 +#: 46fa3239adde4e4e8c329454531c38d3 +#: f2a5f2887dcb45bfb3ec1a4a0aeb18d8 +#: a1a7cfe5e59a4d34b6c36e5fde156571 +#: 8131de1784d84c66a45d155df88cf3cd +#: b9f49cf9cee747048835891d1c7f70f5 +#: b65935e7a9214a36aba1ec7fc7c90e2a +#: 8b13ad081fb949e7830bf07869b61edd +#: 7cdf2f906ed044deb6012048150da019 +#: 97e4820420da426a91acebda9917aa78 +#: 1c9bcfbfabcf4447af13173772e0dba3 +#: 7186fd1920ad48c08b8c0b576bf3e70b +#: 161aa3465ff54b8eabe605b3e1effc75 +#: 655b339bafc8433e9aaab4de0ce88be5 +#: d45426a29b06438e91f2dd515ab9a26b +#: ae44222339b04401be8bde84be82516c +#: 034f5658560a46a48f6392d1a929bbd7 +#: 77ec92f62db14901a099b1dd6847dc2c +#: 7423abc3cc524d34a8f85edbe0dc35c9 +#: 1bd2fe7cfa7442648f6b9c5bd3d60b3e +#: ced24460a70040d8b61a4ad0d6c78aed +#: 326278ce171e46fb892074ec17d63e86 +#: 4925fccfa0a940c8a56591683e21bb9b +#: b152bbcee768493eaedb1704b92055be +#: 3461eb669bf74f97b82aada9d35a05ef +#: fd16e79e95744fbbb4d1bb67b2d04fbe +#: c66087222b144b77bfe3590882bb094c +#: 2c1c87d5592e4e8ba6d282a4981aaf31 +#: d50186c464354e00bb33065cbbc894ca +#: 5e77c1cbf15f4edbace963555bada8f4 +#: 7ff8f88daaf64e81ae8e54a9a098fba8 +#: e1c1e64874eb4dc4b81588e9d084845b +#: 9a6ea5dedf494f51beaae3ba322d26aa +#: 2f7d7697272d431bb5a00f740d81976f +#: d04bb5288b9d41d198e609fb372cfe93 +#: c497bc48b58c40beb6b6fc4ffdd06665 +#: ee15e6047a974fc09fd0a0412365c33b +#: d2cee1703cd04080aef304e39920587c +#: 9fae5284d071415d99bfd9627416e8e1 +#: 3807f6c7d5544fa38429251c6b27a1bd +#: 42d8ce81f67d4027b1b5acc76994d83d +#: 122490a7d22d4194a59c8d99024f3d9e +#: 49614854fc634c1da9e0a5242ae3654d +#: a42e3115b05a47369cbad4a740e55491 +#: dbe6dcd54bae403aba9e49856575cf7e +#: 023b074f6dcc475aaedb6de917072aa8 +#: 9d6fb769a9164e198a6cff642894fb4a +#: 70a9356820d346c28761cc3bcd939082 +#: c4889ac5eabe4140930118f248a3057f +#: 4dd9121233c4470796f3ada6268840c6 +#: 7d892157a7e147d1bd2af8a780e5692e +#: 86f128d4812b45b7b0e9ae03e97d4c4f +#: 2ab8e4f04a324d009555d2adfcecc01d +#: fd0416821f8645499fe1297e36e91209 +#: b216ba49be9c4832ac97472573d6dfe0 +#: dbd0089e6f584131992add921e3b9d9f +#: 5d5436062ab84738854040a158cf9060 +#: fad82c79ee1346dd85866634c55a3a8e +#: 4a064daa74db47bca9ed367d70b88ee5 +#: 42237f252bd849e39e6cd944b145593c +#: d3e8a88ffd394c98aec38cc3b1771e64 +#: 1a37d672246848f6a0249253c9890e56 +#: 190f26e90b9048b1bf7c43e5cd74d5bb +#: d1acd97d1a0c409391049a5a1d16ff91 +#: 835524acb4754da58a00724f6d775a60 +#: 89227920430342b4830b7859636aa3a2 +#: 6c879743725140748a66b6fcbf2125d9 +#: 19c9f164d2ea4e789cfb9d3c03244612 +#: 32c5e0be39294e89ac978f1190338f88 +#: 2aee005c87ce4271a2ddb02d70d12f81 +#: 5cb5038316504e80891ad677e4e02597 +#: 793013028d4c45c3bad83018dbcb3e85 +#: b837aa3edd694fae88479c54257fed5a +#: d3d0d745f2644c41835f5e98e84b7006 +#: 2aee586b807140b48f9c2a5a4b4d8104 +#: 9b63d6e44d5e4c33b9e34ccc11e0ba80 +#: 626710d925434b149242cde63bfeb22f +#: c474d91dc2a74a2bade27b8e590f259e +#: 1449086c7f6c4aad9397ad61d8f218cc +#: a2010c59e68c46a595ffdc18774dde28 +#: a152e7388fb74304b5b204311d8c69f6 +#: 8dc9c1ba4283454196f34e1b5a8dcd23 +#: 80764aae9c40480b9b76e57c0fa3c330 +#: a5f1a0069169465c8d1270fc161a67fc +#: 162c695ca8d04419bce81c1a3bb4c8b8 +#: 3b338693ce4d45c0ba0de9941e7f24d7 +#: 6eb0ddd4b88044a4be85e9ee845f260c +#: 77df8813440c49ac81b72e95c3b7c0ba +#: fa8195689b3b4391815a0cab9a5d8cea +#: 61feeb01ad604206ad1316409f3bd8f4 +#: c410cb2f89ab45d397cc1b7badbbe508 +#: 076a5dc819bb4d61a71105b78c5f629e +#: ef82d5719c90468a84b53b1224cd4af9 +#: e700b67c24d5472ead55cb0b5d2e0835 +#: 69c1c9cd77344dcebca1df3767348cb0 +#: 03f300f26d4f48cc80fc6e3c2c2b8167 +#: 53edbcaedf584bf2b660455f286ed8f2 +#: d619b3bad7d841cd80080a4c2d773774 +#: de32e7bc824e4625b555783be6ba8ce5 +#: 80c7ced8fb0f47a0b7a46c954fa4015a +#: 690f9c0ef7474dc8ac7288893440d38e +#: c447a62b257047c3a3c1df7a3c2e118f +#: 6fd5a66516d5472b995ad2814765f96b +#: 9f6d4562beb544e18ea933bd743d02ce +#: a7a76ff28aa948308356069f92acac65 +#: b867201474f6458ea1a34e8900f3302f +#: 0247ccb90f19434d8a129062c64a5350 +#: 48ab8977271645c891958208058f6d8d +#: 5d3cf6ddc99b4ab08bfbce020e2d455b +#: 1dcb47205d9b4d9d93acc731ff22f461 +#: 7951821ffae049fbba272a2ed6671a72 +#: 2af265ceab234800996540fb35919f2b +#: d680e30842684d46aeb5e7266f19a395 +#: 6494cc79677747158ced06008fb51592 +#: 092d7225823a46539e6ad30d68510c92 +#: eb55ec8b22124dcfaacb2eb8b8bb591d +#: cce37d0670ed4b9ba0723d47ed47c1aa +#: 8ea3e2f43d9d4b9ab461e36850149f80 +#: 29e0dee80c71488eac966d6f67bc6a71 +#: f5a5a905c4504e61bf130fe20dbfe27b +#: f51ab36a12a943beb7fc8942c99a282c +#: d3e2998a315943a78d50932f49737de1 +#: cc84bf53b0c242f7a0311a9dd1c26fb4 +#: efda05937885451f9831ea5529ba0e2f +#: 8fc286dafb864e5abcdfdee1229827be +#: 436e92527607479788d3e44c4084edfd +#: 476538d265a44bde8323907d4baaf749 +#: c791b3848a844b35bfb80f4439dc5a01 +#: 0b09a80336504ab7b84d69f7be65a5cd +#: 5f48402cb5f24aa28389ee0ef8f3a2b4 +#: 0651aa5d20564cebb93686571eb89c48 +#: 363d37055c0346b285efda529d86c341 +#: f6ad042f32ec46c194b5c763d53cf7e1 +#: 94863b353ddb4c0a86f4c849f057b4c4 +#: 837f69b4581c4526b1073d76f872d646 +#: 2725eeabea9049eb875dce03f04a7bca +#: b764452d56d243c893e4d68cdb3c6137 +#: 665ac6dbc44d4748909806eb00b2ac05 +#: af8bb8d770714397a8f54c213dc2b314 +#: e6f793a644584273a72f59802880d75c +#: a5e8a437dc3b4f94a3178f00d7c9d155 +#: 467fa3befa1e427284239c30608436c8 +#: 76f776d31f5941ec93f87361437a6426 +#: f7a80bc28079420089d9b9111a52df94 +#: 3526974cff1b4c1ab4f5b2f5a77f8dc9 +#: 0f1f4d85b25e469a8c1812a92bddce73 +#: 9f242b4e5a7b4a62bc2e197d63251af6 +#: bb6d7c6bef1d4675a76364fede37bd52 +#: 406a8d0c253648168d9be8ec1ccf39a6 +#: a4a15f7bc8854748b1f35cab781c3800 +#: 6add0d50f83a491c89f74947a5d5fde2 +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.SelectOption.emoji:1 +#: 83b108a10aa446cdb6eebaab379b4174 +msgid "The emoji of the option, if available." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents:1 +#: e2e452e939b041f88f583aded7ed5bad +msgid "Wraps up a Discord gateway intent flag." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents:3 +#: 11f86baabb094c2baabe61a104cd4f51 +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents:7 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:12 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:7 +#: c7ccca30986e43fd8e10beb3bd9d8656 +#: 99d045cffa884713a159060bf7b59130 +#: 0b557071c13d48c5a7e58fdc6a34e621 +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents:10 +#: 89aa9846e2cf4b0c9c280daecc282a51 +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:7 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:20 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:23 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:9 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:14 +#: 4e9fe61ccd1549e88739285bf3dafd88 +#: 2723da96d9724f13aedb5348870ab7f6 +#: d4c9f26ee3034866a99c0283e4e8e99b +#: 37eef6fe663748f5a467a28180bb7c4e +#: 1a8b4fa6c67a4abc8033674858b4091b +msgid "Checks if two flags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:10 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:23 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:26 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:12 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:17 +#: c5b62a3820524bdaa7ffdc764a11c059 +#: b6e33c093a6446c4b0db0d86d7eea46a +#: 4a6e6320ca45428484440c717f1649f8 +#: d14f8b7592484b0eb15cca8f8ca4ef10 +#: d5ead74a64c54423968ede7480f5cbff +msgid "Checks if two flags are not equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:26 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:29 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:15 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:13 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:20 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: f96e957c78734f899f6a8cabbcd6e80f +#: f9b86c4a425e45a5911c00182e4fa2aa +#: 4a7bc86e9a3e46b383554e861e976458 +#: 7acf69cc8dab45ada3bd3689889c1cef +#: 96999cf3481f408f8cf281d177168157 +#: 536d410ff4b44e62b2cb302b665c4e82 +#: 6c411abccd8f4ee9959930568c9c5580 +#: 600184aa266d4be4a9cac9e2c503772d +#: 9ff0a5610aab4a38beedf650deabf91a +#: 99e7c28f52d74d25af242acc5a200eaa +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:29 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:32 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:18 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:16 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:23 +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 0c17b2ad55124b1aaae336d3932a00a5 +#: 04def519eb6a4b058b20fb82fdda5fa5 +#: 6be54360e9b54949ad40dd56f95df40c +#: 967c26af9efa4f7daef0c955d8a3bb61 +#: b17adea6a0ad4408ba556b1a6ce02616 +#: d24e2a10464947f5a867e78d79b60ce5 +#: ef0c39b25c534ad0b56743b97271d559 +#: 1db16f9be5fc449c9e597b190d069225 +#: 2bae9b53c632492f8e853a3b968e0de9 +#: d9704b07696540d8a7df9809930a034e +msgid "Subtracts two flags from each other." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:32 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:35 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:21 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:19 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:26 +#: dc44aea0eb8843ec89427b68ed42e355 +#: 8682d8d121804ca78190744b3a59c4d3 +#: 35910a0af5ad45be97b47bc5589af9d4 +#: 61e73664161a4b14a3c004fb9675681f +#: 1deb812bea3d41b7a704ac10ef1cc2c5 +#: 1b50b9b1854f46caa3ac7f4be9a6d214 +#: c0b47343720c41e9ae082737e6c14a21 +#: 30a0f7905d6c4d359df077d3050acbe4 +#: b605361bd020421aabe67ea65920a40d +#: e446c2c129c9432387763bfccabd52e8 +#: 2bd00e79cff94fcc87d879a4bdd8a62a +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:35 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:38 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:24 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:22 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:29 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1958adb42308499f8545a94033c83764 +#: 6e3e56ce5b904a99a28eee41182bc2f9 +#: 518e13808efd452985312250a3be537a +#: 79031e8947e54a9bab1a040c4ada6e20 +#: 389c01ecd70a44eeb7a0a7f77ebec292 +#: dc76f0f183a044919897aec3d7a052cf +#: e93c4ec263eb412b8884fb8192f8abe9 +#: a85b1ce443654d889b7e274a16471b91 +#: 0cb04326bebe4bc8a317558219f5d362 +#: 164db2030286448b9bcc9ef182ddaae9 +msgid "Returns the intersection of two flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:38 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:41 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:27 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:25 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:32 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 3f25fb08cab5411e97b911287fb3d991 +#: 15bd1793902549d2a41ed2bfb2086490 +#: 661a5fa542f2402ba484b264d8a7d30b +#: b6494a4476ad4232801ba36d88cd2ee1 +#: b3f48189e9624c5ea9fa8ac032fbbbd4 +#: 45183bd6b34a4d5da0a272b2a6453c51 +#: f9037c859c954437bbc5c80837992535 +#: 280657c255fc426c82da64bb59d9bac5 +#: eb4cf8c6e63540168709d72324f0366e +#: db93366459a84bac9ca1791083bd8951 +msgid "Returns the inverse of a flag." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:41 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:44 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:30 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:28 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:35 +#: cd38184237914f6c802d8fd54c02a106 +#: 115cbdc73ead48389591b9c18de16c6e +#: 5055ec460c1c405295c113b871a1381d +#: 6bae8aa57db74ad4acf90f088dc01e24 +#: 0609571c784a441a96024b34656f7620 +#: bf894e7c254f4d37873c682274464eed +#: b7238e0512bc43f1b8b7acd85781e817 +#: 5401a57492744f82a7f454408fe09e91 +#: 7834e6013f2d4c78b5486bf043f2ab70 +#: 6426f88037df4e09a30eb9bbfab4b783 +#: ee74cb95a3e6465e945cd8383fffbc5a +msgid "Return the flag's hash." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents:44 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:47 +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:33 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:38 +#: a99a094ce4fa417f968709af699b5323 +#: 7204b8ea3a9241949e0f987e6f8c8665 +#: c5d1a453a88e423c95d5bef1be4d1cba +#: a3fc9e2feee540e5bfa91a1861fa07d9 +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:39 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:39 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:39 +#: ../../../discord/flags.py:docstring of discord.flags.Intents:49 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:52 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:39 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:39 +#: f54fefdc28274d45b023ba51349e495a +#: 82101dd125534b129f6f38b3b3ed2e27 +#: 243973eb1c774a339bf71cc0d1528cb8 +#: 9e99e32bc296475598552fd9c39806ff +#: f9e23965620b47329a2c2bdeffd4efa9 +#: aed0ec598f5542f5b45aed4d7c5c0eb2 +#: e4d3c97d2ab942eaa92a7853a7594bde +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents.all:1 +#: 16c74d2111d245fba292eb18c918eaef +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:0 +#: ../../api/data_classes.rst:0 +#: 06117d4991d64482ab3bd74ddd051afa +#: 387a935c6db343558a4e1062dc05e80b +#: 2a6fff9cfbc140eea62eb86587d99e12 +#: 2aaf29a75ce048e59ab4aa068f89270e +#: 2c65699780f042bda30498eb6d195ca1 +#: 3a69766c2ab349738d5ae59cbd70517b +#: 7afd0d20cf2940e4a0493121eb555c29 +#: 3d9d7f31e3fd426c91b7da7fe211b099 +#: 4cec06d96aa540ca837c06faf1eda4aa +#: 4790b1ca1e4a463b87fbaa89365cc98f +#: d29db1ddddd7435592df3d94b6613ffe +#: 5cb95d726813471badb438677b0cb5dd +#: d1d8003b2d454b49a81a3a0eff5f0ae7 +#: 19685e0d184143a69ab86dc3156e0010 +#: f71c24b693804fc1b300f4a07178b6de +#: 1e56debdc10b44a6bb24a812e5f497c2 +#: 3bba9a9cb8364b83a168aeda565e9bbf +#: 5b0a938f23c34aacb67b50d378235ee6 +#: e5367cb1eb2347b5a4cd991d510a723d +#: 2d239c1f1f394abf9e55e91084d6ee2b +#: dc057d79db7c46fd888e337e59985244 +#: e68b169f549c4791bda81c9443d228a3 +#: f2fe81d38e43437a9239f1af97b0cac6 +#: 6a7ef6edee394706920fde8b84c60bd8 +#: 312b769c32484244b31414353619d0d7 +#: 51366ed9bee64aaaa2b92292cb55270b +#: 07328e258a764337ad1d20246d4de5e5 +#: bb23da17d5e149f88b160898fe8bdd10 +#: 538e1f063fc8484f8a27b9878a4a62fc +#: 7d4265b55f914cb1b296509d8ca752db +#: 27763036636f49f8ba292a51ef43814f +#: e03a07b2659e460c969522e4e68a4aca +#: b480463323664ccbaa6f6a48358e47e1 +#: 89a32233bbc842bda5f1f44ede1f6456 +#: 63612e7eed6644a4a09f372f5500c2d4 +#: 841dbe564995451db0cb4d1a7399578a +#: f358a7bf6a014c41988b485dc82c34a5 +#: 1fad171fac2f4401bf377bab91994567 +#: 498037cacf4048e089db179d1327f791 +#: a0de128104b34095a69b96da3e8ab96f +#: b32687e080a44a9aa9c007d9d36fb9a4 +#: 1d74298fd0f54d7b9e5eba315105ea1a +#: ba8d35102a9c47c690e7f4c7d1c4994f +#: 90db003fe96e42e09518caf869a4b570 +#: 787d35658563443da4d353a110a5a813 +#: 0abca367d0ad4c83bf2be1d6479c0e42 +#: d91ea57cfc7248859c473d1d1dd8227c +#: a5936942c3d546cd80cc6ab556260da5 +#: 7d571a8abadd449aab1878522512f792 +#: d0dbbee81aef4bfdb4d91c6695d303eb +#: 396ad73a54a549d7a99a683064978e42 +#: c30f6974606d470aa0c4caba098ab9ef +#: 9a7a96d8bc9045a6a38b969595e5a865 +#: 5e2ae90ede484700a92163b7fc20a0da +#: 32eeeab27c3049c7ad3eae9dfe659ba5 +#: a01e30e75f11408887933e9c9d2f1ca6 +#: 3495b127e59d4114bd73f48eac001314 +#: cf2dfef29e444d13ac54d2dbe84fa015 +#: ebea6eab9d354d4c8a5c3ad9d5529507 +#: 1e3cd1e307fc4f35a7f349aa1b301d3a +#: bbc492444f0b4fe79fafdff6bc4fee6d +#: d091f04d4dc74d3e8799d21bf9ce3935 +#: e41a9aa4658247fbbfd17b70847fcb80 +#: b587555169654b00af22255c66e6b2c7 +#: c6a4b3316cf54cc8b892899ad5d003cb +#: 26181a33b1bb4438a0440db9626c9bb5 +#: 68da8bcf838141efbb2d63bfdbf3572c +#: 018c91d8de2d44fb8c1e07be2f4b85b4 +#: a96b24b511dc4ba5a76631835e74c7d7 +#: 2ee9c2cace5642d3931879b57e907e72 +#: 14839b1adc274194849e223dfecbf767 +#: 26dce303105f4829a233716320aafb05 +#: d2e3360593294133b0a4335cd58c7f07 +#: e2fdd28aa9d94cd6a7b99951ffa2dd7f +#: 254aef600d254d609dfdd46369fb0d2b +#: aebd9405f26c42e39bec901116ba5b2f +#: d4dd570edf684cd8a0dc32ee303deb96 +#: cc0a84fc6ab7497da8ddc0e8e477ed17 +#: 17094165c2494d80b071c53f905935de +#: 4f8a95b52be345b49db26caa9e217288 +#: 7b318a51369544c494bf5cd1aa7c949f +#: 66c338f8eef24506af329d3a60d1c101 +#: 4bd94c41e47a4ffc9c405bf096ea26a1 +#: fc25eaf76a77420495b5c4d93cb33f06 +#: 1c86a0a466e2418eb0bbb7dc78feb4ee +#: c64aba3dde4f43ada43550b1f0d7569f +#: 9c5183de166e4c9a8d8dcd809e1f9c1c +#: 675a31c9def246cfaa6ace261bcb2315 +#: cc754cf4cc644e4f9e32e1040e29eafa +#: d77fcecfec2c42d0b9a359a602118c22 +#: 7570e3a535c542c48a495aa5980e09e6 +#: b54140a3dcb74784a6a01c92208cbe0f +#: 6c52ec89bc324d688a1ea93936659b0f +#: ab27ed89866b4c8aaae389246af4c20e +#: 818835fd40bd4a03b5196193a62b5790 +#: 5e36e0ef9c2346a7a1546820ec8d79a1 +msgid "Return type" +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents.all:4 +#: ../../../discord/flags.py:docstring of discord.flags.Intents.default:5 +#: ../../../discord/flags.py:docstring of discord.flags.Intents.none:4 +#: 93072a21a8ac4f6d9051e897557acc8f +#: 946b7c87c7b64016bc9465fb66cea03d +#: 20a24ced6c2f40ae97a379aac52fc31e +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents.none:1 +#: 22324043e80a40aaa717986eb0f452ac +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.Intents.default:1 +#: 45a682a8a0cf40059fcca00391087c9d +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "" + +#: ../../docstring of discord.Intents.guilds:1 +#: 4317da5e0f17431d9613a34efaf3d04d +msgid "Whether guild related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_configuration:3 +#: ../../docstring of discord.Intents.auto_moderation_execution:3 +#: ../../docstring of discord.Intents.dm_messages:5 +#: ../../docstring of discord.Intents.dm_polls:5 +#: ../../docstring of discord.Intents.dm_reactions:5 +#: ../../docstring of discord.Intents.dm_typing:5 +#: ../../docstring of discord.Intents.emojis_and_stickers:5 +#: ../../docstring of discord.Intents.guild_messages:5 +#: ../../docstring of discord.Intents.guild_polls:5 +#: ../../docstring of discord.Intents.guild_reactions:5 +#: ../../docstring of discord.Intents.guild_typing:5 +#: ../../docstring of discord.Intents.guilds:3 +#: ../../docstring of discord.Intents.integrations:3 +#: ../../docstring of discord.Intents.invites:3 +#: ../../docstring of discord.Intents.members:3 +#: ../../docstring of discord.Intents.messages:5 +#: ../../docstring of discord.Intents.moderation:3 +#: ../../docstring of discord.Intents.polls:5 +#: ../../docstring of discord.Intents.presences:3 +#: ../../docstring of discord.Intents.reactions:5 +#: ../../docstring of discord.Intents.scheduled_events:3 +#: ../../docstring of discord.Intents.typing:5 +#: ../../docstring of discord.Intents.voice_states:3 +#: ../../docstring of discord.Intents.webhooks:3 +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: 75d1d5d26fee4f4db53f9e29a6dd8e3a +#: 77c6b6236e1347e2b15712d37046f7b6 +#: ebc4a3f5e91648288893a4a8c8f0df3c +#: 9e703e4c3f854459b513a5973115356b +#: f99607be5f7d4810a8759fd4e459a36b +#: d501618e47324c1793bbde3bf9ca861b +#: 80ed196772fb4d43802c8a0c5f60267e +#: 37c77df003a04768b88e759cd73963b1 +#: 6cf9973c14134f4ab3888b55623e7e55 +#: 8795d49ebb62417ebcdf2989b8df1d3d +#: 9a80a6772ccd47a8a9d29b9ff6ee2d7d +#: 127132d3c13c416cab6465e43870b9df +#: be05d4647638496a85bf45edbffe3e8e +#: f2d60034b58848f5b50f72b0fe7480da +#: 3801b1bd516a4c47a073514517ca50d4 +#: 1a8d1483207c4ba4bd66f376500bcfdd +#: 1844e42444c64ebfa6f6a05f49c3c034 +#: 32d6ac82923b4f548a71c551421c87a9 +#: 2393f9340ef242d09a27b53fbae1d540 +#: 5ff0cc64d2464f138b63bd5bce62b0bd +#: 4a9af8630afc4c228384619fc5928a2c +#: 327cb39cf5d942c6ac5c5e9cd44b08ba +#: 8d17e0018cf346369e05f5ed41961c83 +msgid "This corresponds to the following events:" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:5 +#: 5994272e340e4811a58be304b6c96914 +msgid ":func:`on_guild_join`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:6 +#: 4f6f211fa5e34b2baa6b5b3b96117d98 +msgid ":func:`on_guild_remove`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:7 +#: 21aa0e482ecf4ee59530701a0567293b +msgid ":func:`on_guild_available`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:8 +#: 749fda92dd054dceb10ab766b07c8a67 +msgid ":func:`on_guild_unavailable`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:9 +#: 12c9331353c74f5e8a0ec6e7bba5f57e +msgid ":func:`on_guild_channel_update`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:10 +#: 5a72e2a4cb204f05b685878b664e2513 +msgid ":func:`on_guild_channel_create`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:11 +#: 87516bfe56bb4d26bc954380fe7086b5 +msgid ":func:`on_guild_channel_delete`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:12 +#: 822458acade14d058d900c80c5e970f1 +msgid ":func:`on_guild_channel_pins_update`" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:13 +#: ../../docstring of discord.Intents.dm_polls:12 +#: ../../docstring of discord.Intents.dm_reactions:14 +#: ../../docstring of discord.Intents.emojis_and_stickers:10 +#: ../../docstring of discord.Intents.guild_messages:13 +#: ../../docstring of discord.Intents.guild_polls:12 +#: ../../docstring of discord.Intents.guild_reactions:14 +#: ../../docstring of discord.Intents.guilds:14 +#: ../../docstring of discord.Intents.members:11 +#: ../../docstring of discord.Intents.messages:13 +#: ../../docstring of discord.Intents.polls:12 +#: ../../docstring of discord.Intents.presences:7 +#: ../../docstring of discord.Intents.reactions:14 +#: ../../docstring of discord.Intents.scheduled_events:13 +#: ../../docstring of discord.Intents.voice_states:7 +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: 30ce97bdd3094300a532b98ec1cf3943 +#: deaad94c71c94871817abb4286d2bcef +#: 516dddd73b2b476b82835e700c169f71 +#: 7723e1b62423446184c4541de3f89248 +#: d6181ea2e5ab4d45aeabb348df9f2c88 +#: 50006f2a61b848848d0dff60895afc77 +#: 64ea6e41a88c47cba252c5bd01944e1c +#: 529dd704424742a38b07f200180a2068 +#: 31267a3f10444da2957257d6241062ac +#: 3d3cd245adcd4796a84d8cd0f0748f62 +#: b1141125c5b647c18492031a0447fb6d +#: 7945f47d88904d9a834c708ec69ca085 +#: b7a36d6a3daa4dd582d6ae4a5dee5f3a +#: 335c852a9e4240d680003e46d01a9eb7 +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:16 +#: bcc55c3d9b6c4f5588f5942e502740bb +msgid ":attr:`Client.guilds`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:17 +#: 224c1c98fc864d659f37dd53852f655e +msgid ":class:`Guild` and all its attributes." +msgstr "" + +#: ../../docstring of discord.Intents.guilds:18 +#: 6fb8f356c9d54a4b946f3ab6c0e55be7 +msgid ":meth:`Client.get_channel`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:19 +#: 3b802410fa96485eb5c6e69cd900a140 +msgid ":meth:`Client.get_all_channels`" +msgstr "" + +#: ../../docstring of discord.Intents.guilds:21 +#: 62f55e05719246a6ba9751ebde882853 +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "" + +#: ../../docstring of discord.Intents.members:1 +#: 929eb7b755c8449aa42f4809421f88b7 +msgid "Whether guild member related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.members:5 +#: 945d37e662c44c5bafc5590ec51d3b0f +msgid ":func:`on_member_join`" +msgstr "" + +#: ../../docstring of discord.Intents.members:6 +#: 94a083f6dfb8486e86bb602aa7055864 +msgid ":func:`on_member_remove`" +msgstr "" + +#: ../../docstring of discord.Intents.members:7 +#: 66c04c9b42cd4898826123a33e6294ff +msgid ":func:`on_raw_member_remove`" +msgstr "" + +#: ../../docstring of discord.Intents.members:8 +#: e7c5954e807044c6a8ea63f654f621dd +msgid ":func:`on_member_update`" +msgstr "" + +#: ../../docstring of discord.Intents.members:9 +#: d63e13ef0e504d3382313195162d173d +msgid ":func:`on_user_update`" +msgstr "" + +#: ../../docstring of discord.Intents.members:13 +#: 5795f8d2b996423d95f49c54c37d982c +msgid ":meth:`Client.get_all_members`" +msgstr "" + +#: ../../docstring of discord.Intents.members:14 +#: e446aa42f0504d1eb28545466ab582fd +msgid ":meth:`Client.get_user`" +msgstr "" + +#: ../../docstring of discord.Intents.members:15 +#: 7373c06233d14be283be68f6b35676a9 +msgid ":meth:`Guild.chunk`" +msgstr "" + +#: ../../docstring of discord.Intents.members:16 +#: ac42d9b201b9473da4865698cd0d6cab +msgid ":meth:`Guild.fetch_members`" +msgstr "" + +#: ../../docstring of discord.Intents.members:17 +#: 88280431785b4b0f8f9fe84b6f786481 +msgid ":meth:`Guild.get_member`" +msgstr "" + +#: ../../docstring of discord.Intents.members:18 +#: 856253b1096a45069e1dd86c50d28aaa +msgid ":attr:`Guild.members`" +msgstr "" + +#: ../../docstring of discord.Intents.members:19 +#: 96f3dd561afb42c8a00186592acdcdfa +msgid ":attr:`Member.roles`" +msgstr "" + +#: ../../docstring of discord.Intents.members:20 +#: 7262ba98a42b4f4eb2ad956a6e6e3f21 +msgid ":attr:`Member.nick`" +msgstr "" + +#: ../../docstring of discord.Intents.members:21 +#: 4d7d7d40e4b64bf289fcc60255b8964c +msgid ":attr:`Member.premium_since`" +msgstr "" + +#: ../../docstring of discord.Intents.members:22 +#: c6dd03104de443e89f184674cad8d2a5 +msgid ":attr:`User.name`" +msgstr "" + +#: ../../docstring of discord.Intents.members:23 +#: 7704cc926f6946a18c346af78390017a +msgid ":attr:`User.avatar`" +msgstr "" + +#: ../../docstring of discord.Intents.members:24 +#: 28fc4b6096ff4c4cbf2077cdfae3038f +msgid ":attr:`User.discriminator`" +msgstr "" + +#: ../../docstring of discord.Intents.members:26 +#: e63bbf16bf3a47a9a2374fbb8644bdec +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "" + +#: ../../docstring of discord.Intents.members:30 +#: ../../docstring of discord.Intents.presences:17 +#: a144ff86320b4e09b37cff189bb3174c +#: 5f0bed46e9fd446fa11f769c2e18134d +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "" + +#: ../../docstring of discord.Intents.bans:1 +#: d35c3b99080f41138c08fc05e66820af +msgid "Alias of :attr:`.moderation`." +msgstr "" + +#: ../../docstring of discord.Intents.bans:3 +#: ../../docstring of discord.Intents.emojis:3 +#: 27a0c56e0c79468d9c88cabbab69f321 +#: bc8f8e325af24de382cf5ea080f4c8ef +msgid "Changed to an alias." +msgstr "" + +#: ../../docstring of discord.Intents.moderation:1 +#: e7f8be38789347f391726ae88785a429 +msgid "Whether guild moderation related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.moderation:5 +#: f00b53ceb1774c9eae7512ea10e6c594 +msgid ":func:`on_audit_log_entry`" +msgstr "" + +#: ../../docstring of discord.Intents.moderation:6 +#: b0c75f440f3549548ba08708aec21592 +msgid ":func:`on_member_ban`" +msgstr "" + +#: ../../docstring of discord.Intents.moderation:7 +#: beac11c05c944db4a70e68a2f4ccb823 +msgid ":func:`on_member_unban`" +msgstr "" + +#: ../../docstring of discord.Intents.dm_typing:9 +#: ../../docstring of discord.Intents.guild_typing:9 +#: ../../docstring of discord.Intents.integrations:10 +#: ../../docstring of discord.Intents.invites:8 +#: ../../docstring of discord.Intents.moderation:9 +#: ../../docstring of discord.Intents.typing:9 +#: ../../docstring of discord.Intents.webhooks:7 +#: bbcdb3c184584751b4fce179030f686b +#: 49e0cca02c174ab0b3af1016f00bb680 +#: b9863a675003490b89043c31dbf28eff +#: 20164eb2064e41b7b194bcf624744b12 +#: f29f9b186eba40a0910997fe79f8b7a4 +#: a9a3db3038a7485ca7c791f1c7782ae9 +#: c8d84c681fd142bf88e6ff7b096647b2 +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "" + +#: ../../docstring of discord.Intents.emojis:1 +#: bb39e3f3663b46b19a266c33245dda8d +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:1 +#: c5af4974eb774193a9161920c2cdee53 +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:7 +#: c8412c187de54fc88852594c731c4e4d +msgid ":func:`on_guild_emojis_update`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:8 +#: c087251564794aa9b94183fdedbbaa6f +msgid ":func:`on_guild_stickers_update`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:12 +#: 8d522dd4ec834c5e834a8a3a1d82637a +msgid ":class:`Emoji`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:13 +#: 310d885187c7483da2962fd12d7a1274 +msgid ":class:`GuildSticker`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:14 +#: 20edfaefd22440da84fddf28d0239074 +msgid ":meth:`Client.get_emoji`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:15 +#: cd87fc16dde641848e06cdc3745dd7ec +msgid ":meth:`Client.get_sticker`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:16 +#: 376ebab11fed410fa9ee648eadadd06b +msgid ":meth:`Client.emojis`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:17 +#: da53d34b3cb74143990b6155914f84c5 +msgid ":meth:`Client.stickers`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:18 +#: 9f06e0f5a8254b18b243c717cede85e3 +msgid ":attr:`Guild.emojis`" +msgstr "" + +#: ../../docstring of discord.Intents.emojis_and_stickers:19 +#: e94aedb0a92a4d2eb749430c9b904893 +msgid ":attr:`Guild.stickers`" +msgstr "" + +#: ../../docstring of discord.Intents.integrations:1 +#: 82cc9e2c3bf94471a6afe7055f1931ba +msgid "Whether guild integration related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.integrations:5 +#: 074ea97303b1430abbb66ffdecfa5a06 +msgid ":func:`on_guild_integrations_update`" +msgstr "" + +#: ../../docstring of discord.Intents.integrations:6 +#: db8b10abf30e4f338ba3321c01b0d8d0 +msgid ":func:`on_integration_create`" +msgstr "" + +#: ../../docstring of discord.Intents.integrations:7 +#: 8a4c01932a9047bfb9bdacda59b4d202 +msgid ":func:`on_integration_update`" +msgstr "" + +#: ../../docstring of discord.Intents.integrations:8 +#: 15163e886024445285a54eabe211de99 +msgid ":func:`on_raw_integration_delete`" +msgstr "" + +#: ../../docstring of discord.Intents.webhooks:1 +#: b91eb60353b748fbafd2ab4d468854e7 +msgid "Whether guild webhook related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.webhooks:5 +#: 219b90d43ecd4cdb93842cde0ca7ad8b +msgid ":func:`on_webhooks_update`" +msgstr "" + +#: ../../docstring of discord.Intents.invites:1 +#: a000154afa16498980313a5774ee7da9 +msgid "Whether guild invite related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.invites:5 +#: e21ae498f88e4d79beda0758f132251c +msgid ":func:`on_invite_create`" +msgstr "" + +#: ../../docstring of discord.Intents.invites:6 +#: 16e7fe795f964391a3f3c86dd75b9d96 +msgid ":func:`on_invite_delete`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:1 +#: e40caa1c65ad491e9d112f97b21e9d8e +msgid "Whether guild voice state related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:5 +#: 25fed9eca43349af9467668ab9bd21d4 +msgid ":func:`on_voice_state_update`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:9 +#: d13a218f2ccd4c72853d83e4a9c76975 +msgid ":attr:`VoiceChannel.members`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:10 +#: 010907bf48744b41ba2066fa7971db0c +msgid ":attr:`VoiceChannel.voice_states`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:11 +#: 5847c603abd6407594c201013dd8e965 +msgid ":attr:`StageChannel.members`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:12 +#: 03062dcaae8b4486b35fef28bee77b23 +msgid ":attr:`StageChannel.speakers`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:13 +#: 5eb68043f742471c8924c38f23130e9b +msgid ":attr:`StageChannel.listeners`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:14 +#: 8f5eb7e3b8b9465ead3f169d2049572c +msgid ":attr:`StageChannel.moderators`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:15 +#: 01d00b56e1734ae2bbc6695d1ec8963f +msgid ":attr:`StageChannel.voice_states`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:16 +#: 8623195a820b416d9a6130d1bbe427b7 +msgid ":attr:`Member.voice`" +msgstr "" + +#: ../../docstring of discord.Intents.voice_states:20 +#: 437a20aa62fc4ddfb41a12901a70cd78 +msgid "This intent is required to connect to voice." +msgstr "" + +#: ../../docstring of discord.Intents.presences:1 +#: fbc8359014d746b0a17b72ed18b39f57 +msgid "Whether guild presence related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.presences:5 +#: 44e82bb60e6248308eda2e1b8038ab7c +msgid ":func:`on_presence_update`" +msgstr "" + +#: ../../docstring of discord.Intents.presences:9 +#: 47402cd7574849d5bf6fe573f4bd9555 +msgid ":attr:`Member.activities`" +msgstr "" + +#: ../../docstring of discord.Intents.presences:10 +#: 0331fd7b353f4017ae99fad38700eaa3 +msgid ":attr:`Member.status`" +msgstr "" + +#: ../../docstring of discord.Intents.presences:11 +#: 941c4033f3b146b3b68cd484390ed0ae +msgid ":attr:`Member.raw_status`" +msgstr "" + +#: ../../docstring of discord.Intents.presences:13 +#: c315eb5d04dc45fb80aecee083152af7 +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "" + +#: ../../docstring of discord.Intents.messages:1 +#: d1e7f97822e24e70a925b90529c3efba +msgid "Whether guild and direct message related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.messages:3 +#: 6386e552b53743b79119a4e475d56ce8 +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "" + +#: ../../docstring of discord.Intents.messages:7 +#: a5a4c34d434f48bdac4424fafb6ec8e8 +msgid ":func:`on_message` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:8 +#: 05ddab36bc384b5284e911515e17751d +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:9 +#: 283766bb3cf4476fb2a99046a5e96388 +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:10 +#: e60854278414426b82501fcd8b4824d2 +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:11 +#: 280b2627330241538608b590b0a27fda +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.end_poll:8 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:6 +#: ../../../discord/poll.py:docstring of discord.poll.Poll.end:5 +#: ../../docstring of discord.Intents.dm_messages:15 +#: ../../docstring of discord.Intents.guild_messages:15 +#: ../../docstring of discord.Intents.messages:15 +#: 3a20c463f48c465d92f7b983f9414c0f +#: 4cc0d56ddc4341339bbabe226cfff4ea +#: 131678d976fa4452a3c6274c4a114015 +#: 6f70df5e3a324290889232d0395e7f0f +#: b305f440e0f448fbb7b9f3cd38300788 +#: 699d3aec6d4142f285dafede7e7eea19 +msgid ":class:`Message`" +msgstr "" + +#: ../../docstring of discord.Intents.messages:16 +#: b7094fdc4fba47d2a0e577bae573534a +msgid ":attr:`Client.cached_messages`" +msgstr "" + +#: ../../docstring of discord.Intents.messages:17 +#: dbd4d13864b74d0caf335c06d31ae082 +msgid ":meth:`Client.get_message`" +msgstr "" + +#: ../../docstring of discord.Intents.messages:18 +#: be2c7bbc837145fd9d0669915b819a4f +msgid ":attr:`Client.polls`" +msgstr "" + +#: ../../docstring of discord.Intents.messages:19 +#: 2574800ac9db4d8ea2a5340a9d9e27dc +msgid ":meth:`Client.get_poll`" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:21 +#: ../../docstring of discord.Intents.guild_messages:21 +#: ../../docstring of discord.Intents.messages:21 +#: 3bdf1873d5a74fbea1e77e2f6675beba +#: f674049e077048a98e3783c5fb184729 +#: fc0283f014bc4a5b9324a679e0833a98 +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "" + +#: ../../docstring of discord.Intents.messages:23 +#: ../../docstring of discord.Intents.reactions:7 +#: 4f0824eaddd64a2a81888d5b807b6347 +#: ffd561d996284ac3a46639791d4fc26e +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:24 +#: ../../docstring of discord.Intents.reactions:8 +#: 7ef5737b80aa46ff8b63044455a72240 +#: bc06530511074b05bd24b74d33bc9ff1 +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:25 +#: ../../docstring of discord.Intents.reactions:9 +#: 642521a6775f42d986de623796667074 +#: 394bfa686d5e4cddbfeb4a5eac2ae4ae +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.messages:29 +#: 113a885ba72a479f9816cf312e9508e8 +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:1 +#: 58d595eb07f64b7d88b031c98848e443 +msgid "Whether guild message related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:3 +#: 76c0df55b55e4e35bcfafdeb2894f87b +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:7 +#: 3ed6f2cf4e5346d792100f12dc292a14 +msgid ":func:`on_message` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:8 +#: 2d87f5c419fd40eda73ddb7c8eadc4a3 +msgid ":func:`on_message_edit` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:9 +#: 6a5683151a954cef8e456f31a8f4b60c +msgid ":func:`on_message_delete` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:10 +#: 278599b279eb41888c8afe2a640c9e3e +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:11 +#: 3edb50195c384b008f95a101f0a67a93 +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:16 +#: fed192185bb04b4287239cad91879f78 +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:17 +#: 36841d614dfe42c187467691f00ca877 +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:18 +#: db5907ffd40d4722820e9b43477aab5c +msgid ":attr:`Client.polls` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:19 +#: 9ff157fcf1ca48ee99c05bfbb7794d19 +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:23 +#: ../../docstring of discord.Intents.guild_reactions:7 +#: c8df715cc6f3485fb0be9c491e646337 +#: 0f9dd91ef1a649588b0c988cd620e899 +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:24 +#: ../../docstring of discord.Intents.guild_reactions:8 +#: 1c5ff802260840e5aaa934513f0f0779 +#: b51729b9d73e4397838fa22d56fdb613 +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:25 +#: ../../docstring of discord.Intents.guild_reactions:9 +#: 8c1165c7fa7941e59b5a7f5666dcd44b +#: f1ea6c632a6c4141aba136ccb278bd69 +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:27 +#: a64ea14a09974cb1b16bcc4f867c2d66 +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:30 +#: ../../docstring of discord.Intents.message_content:5 +#: a137ba63f3c846b3bd5d57a7bf96e78c +#: d177535ebad849a4baae6d17fa3e786b +msgid ":attr:`Message.content`" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:31 +#: ../../docstring of discord.Intents.message_content:6 +#: af61766b09a94aa8a75595f3be33a449 +#: 7c7118245dc842a49b2ad81bc4ba0ebb +msgid ":attr:`Message.embeds`" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:32 +#: ../../docstring of discord.Intents.message_content:7 +#: 058da375316a46a0af5a9c3109b1f253 +#: ebb75125811444e4a46f7aef8bbb23b8 +msgid ":attr:`Message.attachments`" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:33 +#: ../../docstring of discord.Intents.message_content:8 +#: 9dc7fe52d32942078f6af7ec79f3d42b +#: 323a68adf77442f680a96f59bea295e3 +msgid ":attr:`Message.components`" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:34 +#: ../../docstring of discord.Intents.message_content:9 +#: 4ad7140b499a4cb89a813065e5957e41 +#: bb8eef7fe7034efc99a7fdba061ec310 +msgid ":attr:`Message.poll`" +msgstr "" + +#: ../../docstring of discord.Intents.guild_messages:36 +#: 39f1204df2e74395a1eb386b27a8f22b +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:1 +#: c78c215a6aae4169a1f9a3c1724c1c35 +msgid "Whether direct message related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:3 +#: 545f70f28af845d895fab795a8db798e +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:7 +#: 49535423a41f4e07bbeef03b8a73feae +msgid ":func:`on_message` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:8 +#: 4fbb198aa9eb4036b38997263f645a36 +msgid ":func:`on_message_edit` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:9 +#: c052558aa6fd499d961a30ac05b3701f +msgid ":func:`on_message_delete` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:10 +#: 5f6aed68f8e2437eab3b43825ba7351b +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:11 +#: bfff63df875f474ab2731d3523fda430 +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:16 +#: 30afb4a67fe94b679534c913638a5e7a +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:17 +#: 26d6c2d45f2040049b45dec2d0a92c72 +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:18 +#: b7c04389bf3f499a907e6aac732891be +msgid ":attr:`Client.polls` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:19 +#: 978fd4fa51e54ed1b278b30a947cb3ef +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:23 +#: ../../docstring of discord.Intents.dm_reactions:7 +#: 589df8506c3445e5bb27a3f7c0e1eb13 +#: c93500c986124c1392636208ff6c21bf +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:24 +#: ../../docstring of discord.Intents.dm_reactions:8 +#: 6b9d55f3802a435184fcb981cea63230 +#: e84e9e724cad49af88471537ded96255 +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_messages:25 +#: ../../docstring of discord.Intents.dm_reactions:9 +#: 85eb129e0b244960ab86b6367da8d207 +#: 7551821d00e94b5783620a188bf47757 +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.reactions:1 +#: 929be1e90b7c4127b4b1a4b1f5227e67 +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.reactions:3 +#: cbf06a86328b41278e14751624f52288 +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "" + +#: ../../docstring of discord.Intents.reactions:10 +#: b520e34dccd94a90921124ddda898f9c +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.reactions:11 +#: d1960985d4cd4c66a2bde602f35b5a51 +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.reactions:12 +#: 4cd08c85fad54d61a5544a683a991117 +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.reactions:16 +#: 2e02a28d4a2941f78808f39deab7fb97 +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_reactions:1 +#: cb03c57ff0ee486e98028d316ac7b15a +msgid "Whether guild message reaction related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.guild_reactions:3 +#: d10593579af2443baef608bbeb6f2545 +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "" + +#: ../../docstring of discord.Intents.guild_reactions:10 +#: 0df07d2a7df544c48d8f96dc8113264e +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_reactions:11 +#: ebc3e0c3b4784460ac493e199affb0fc +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_reactions:12 +#: 306a280e3a2e4b30adb4f319eeda6048 +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_reactions:16 +#: 57c1129e4dc44018b3a3c668aef10c29 +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_reactions:1 +#: 2538837a36a94c71b5a8d6da0d6b2433 +msgid "Whether direct message reaction related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.dm_reactions:3 +#: e8b13dc4be62458eac269ecaa10d11f8 +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "" + +#: ../../docstring of discord.Intents.dm_reactions:10 +#: f7472ddcc3b849d1b46cba92ebcafa33 +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_reactions:11 +#: 77b2519afcc2442cb4f6d12fa82775b2 +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_reactions:12 +#: 4fd01a8e43c14ab09b21a1bed73cdddb +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_reactions:16 +#: 6c0795ef9c794e53b8975d533ed6ce7a +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_typing:1 +#: ../../docstring of discord.Intents.guild_typing:1 +#: ../../docstring of discord.Intents.typing:1 +#: 8d8207f6f69441fba7d0f03fa6f9ff53 +#: 9ff7cfd43aa44d0193722bec92998fd9 +#: fb5b74711cf94bc8800f3998b67e5970 +msgid "Whether guild and direct message typing related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.typing:3 +#: b898e59ee7fc4342baeedbd1b73f4b33 +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "" + +#: ../../docstring of discord.Intents.typing:7 +#: e88904e1ceb741c38dff4b489f9992d4 +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_typing:3 +#: e1722de30ef1478d936b8eccf5f35690 +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "" + +#: ../../docstring of discord.Intents.guild_typing:7 +#: 5f100734e1944fdb982c0fb6c5670427 +msgid ":func:`on_typing` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_typing:3 +#: 7c61fa008d294a99be7d718feddada6d +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "" + +#: ../../docstring of discord.Intents.dm_typing:7 +#: c578de896535489da4db6a189776729e +msgid ":func:`on_typing` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.message_content:1 +#: cbad205f564c47e592d5884c800312f8 +msgid "Whether the bot will receive message content in guild messages." +msgstr "" + +#: ../../docstring of discord.Intents.message_content:3 +#: 3e92f261dce94ddbb7620f9de2097dac +msgid "This corresponds to the following attributes:" +msgstr "" + +#: ../../docstring of discord.Intents.message_content:11 +#: 44b2007f97a2416092e57c8f2aba59fc +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "" + +#: ../../docstring of discord.Intents.message_content:18 +#: 51ab78245c344515b0f1125e605a15c4 +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:1 +#: bef96b66a0f244b5a38f7241d4fab76c +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:5 +#: bc9ab281c7634eb5903762e2016e824c +msgid ":func:`on_scheduled_event_create`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:6 +#: 1424de2889d44cd08ee76f3e5ec71212 +msgid ":func:`on_scheduled_event_update`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:7 +#: de2b0468d2bc46f5b7fa230073ff053a +msgid ":func:`on_scheduled_event_delete`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:8 +#: 06db204669404231b2bbef48f48ac834 +msgid ":func:`on_scheduled_event_user_add`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:9 +#: 5359210e9b034fb58acda9ecad6f33b9 +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:10 +#: 68dc5c5f11e8478d98811c45c76789d6 +msgid ":func:`on_scheduled_event_user_remove`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:11 +#: fb0c541330cd4eb88e186b73cd07a7cc +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:15 +#: ee5536d3feff443e8d0c7257c67d2d54 +msgid ":class:`ScheduledEvent`" +msgstr "" + +#: ../../docstring of discord.Intents.scheduled_events:16 +#: 3c14bd88cc6c4ccb8901dfdd0b76e80e +msgid ":meth:`Guild.get_scheduled_event`" +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_configuration:1 +#: bec3db92d166482db1bba849f1e94291 +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_configuration:5 +#: 1ac39f8cf9b4469d8d999661b8c24c74 +msgid ":func:`on_auto_moderation_rule_create`" +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_configuration:6 +#: 8ac648368db54bacbec2e2eb40e77113 +msgid ":func:`on_auto_moderation_rule_update`" +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_configuration:7 +#: 18b27bf369534e788deddd820a097b47 +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_execution:1 +#: 475351bf214c4885ad631c85594f4a8e +msgid "Whether guild auto moderation execution events are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.auto_moderation_execution:5 +#: 4c983eebeaf4485db5c3ddebcbf0efd2 +msgid ":func:`on_auto_moderation_action_execution`" +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:1 +#: f95bad9f8617427192960ee5d7d3e351 +msgid "Whether poll-related events in guilds are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:3 +#: 5d507f28ee044395a8d1ae3be6ceacf3 +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:7 +#: 5a045fdc9fdc485d83c2322409038d31 +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:8 +#: 304c6596289646aa8a1095805ef028f0 +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:9 +#: 05e8e2280e21407a918e5f02c960d2dd +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:10 +#: 00dca805aaad44d4bfafd78fe271c325 +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:14 +#: 6cb33f052b444dc4a60d14bdb8d808bd +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr "" + +#: ../../docstring of discord.Intents.guild_polls:15 +#: 79059d2bf47f438989117431cfe9b020 +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:1 +#: 118d37e2ee15448e94dfc019ade6914d +msgid "Whether poll-related events in direct messages are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:3 +#: 35d0eccff7ce4576b46e08fe19302360 +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:7 +#: 723ad2dc12714853bc08f2a76e74e345 +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:8 +#: 3382fccc94ce4299a51acd0d773ab5ef +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:9 +#: 2148babdf16e4f559aecaf0922d94215 +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:10 +#: 8586c19bb54b43a082fc6299120ebd4d +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:14 +#: 50969bfe9ded4c00920f06d8c016a91f +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr "" + +#: ../../docstring of discord.Intents.dm_polls:15 +#: a86842a665c548bda7a307438926efa7 +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr "" + +#: ../../docstring of discord.Intents.polls:1 +#: 1a141b9e47d24aa88c14c0347e995fc4 +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "" + +#: ../../docstring of discord.Intents.polls:3 +#: 8f82d792166e4b44a58ce77352695e92 +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "" + +#: ../../docstring of discord.Intents.polls:7 +#: b6062d500cd5462585ee87b16a9b27b7 +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.polls:8 +#: e166efad26614235a9e0fa97638be809 +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.polls:9 +#: 4c2d0558315b48aca6d884f5e1fa6482 +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.polls:10 +#: f61aa21b0abf475a80062c2ec1e01c35 +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring of discord.Intents.polls:14 +#: 049eee0a0e6e486e93c18c742946c954 +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr "" + +#: ../../docstring of discord.Intents.polls:15 +#: b745c7b501f8431c9568babd02d6d953 +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:1 +#: 84a87c23e08949c7a63adab75f08db4d +msgid "A class that gives information and control over a specific shard." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:3 +#: 47d2f7e18fe04d23b294149c6ca63d06 +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:10 +#: 5f4b433a305d4ecda4f5b1945c565813 +msgid "The shard ID for this shard." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:16 +#: 581a25b3efba444eb7ba3ff625adc7af +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:16 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:12 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:24 +#: ../../../discord/poll.py:docstring of discord.poll.Poll.total_votes:4 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:18 +#: c99851f342584595848427fb38375fa3 +#: 838cbbf586be4eb48c92fc8e4c675bad +#: 49c4c30c182d4a029b0c433682a7412d +#: 8162371196bd4d3698a8c759ead84e30 +#: 306bba96ba0e4d9dba84deee5cfa1ca4 +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.is_closed:1 +#: e588f36be137417db4a513b55beb6351 +msgid "Whether the shard connection is currently closed." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_strict_subset:5 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_strict_superset:5 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_subset:5 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_superset:5 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.is_closed:4 +#: 9aca5fcb17de43ee849174bf0bd5a3f7 +#: 58d0f572132547b7a1dbaf2927806124 +#: e5cf537b04f84783b85321de221b27f6 +#: 1deab10c0cf44d5ebef1094734d407fa +#: 2dc3cf8651e14433bd3ee820059d76b7 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:1 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:1 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:1 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:1 +#: ../../../discord/message.py:docstring of discord.message.Message.pin:1 +#: ../../../discord/message.py:docstring of discord.message.Message.publish:1 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:1 +#: ../../../discord/message.py:docstring of discord.message.Message.reply:1 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:1 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:1 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.end_poll:1 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:1 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.connect:1 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.disconnect:1 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.reconnect:1 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 2d31939098494f0489e8a053303107d7 +#: 61d3fe2200f04894857f7a6b254fed20 +#: 336386f348c2475b83c479b3376548af +#: be8ac68790a24964b952943c8f2574ab +#: 16beb5731b34440e8311de7df97d1025 +#: 15f434b61dcf47238188f7d6b255820a +#: 5cab9ecf969d4d50b56f61b44621fee5 +#: 4e0e1cc8c5664c3ab71e2a4949beb87d +#: a7e196aad6d0488bbb6dfd22ae6c3e4a +#: 7904d64bf9a04967826e310fa4258216 +#: bd84eac564274ac59010340e2b47be29 +#: 1ffa892166a146ab84fff747181eebec +#: ec3829e4ac7245a9bc417ee15abd489d +#: d76e286c35dc413d96b79e5d9b3d1542 +msgid "|coro|" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.disconnect:3 +#: ecf67b0b5fc54349b0e8d8fa3e8357ad +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.disconnect:6 +#: 729b93fac4b6486189b7327d2b1dbbaa +msgid "If the shard is already disconnected this does nothing." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.append_field:9 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.clear_fields:4 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_field:15 +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:20 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:20 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:11 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:24 +#: ../../../discord/message.py:docstring of discord.message.Message.pin:18 +#: ../../../discord/message.py:docstring of discord.message.Message.publish:14 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:25 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:18 +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.update:10 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.update:10 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.connect:6 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.disconnect:9 +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.reconnect:6 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 937a7163bad44cc0b251d6ab47e83b23 +#: 6ab82dd262114586ae1460ec0ef8949f +#: 682dc42cdccd42f3a7f85235164dfb67 +#: 6111789b40ca4cc5bced0bd6c6a2582f +#: 73f0e5de3dd34858ad6d28ee536f2960 +#: 47e54663a6ce4eb397362807481c17fc +#: 0b0b991b79bd439e82711767a57a444e +#: d7fb8138b116469782b8128fe3a65e97 +#: 9043897745234dccbdf21447a70af025 +#: b85a83f1bf7745d4aae3e7ee2f39e4c5 +#: 4515407fc92b4f5e9acbf4ca0d5a5b35 +#: be32cd449b9d48dca13b42cef8b4e1cd +#: aa62b139c3de4bb487cc42c48c0547a2 +#: 03c34a924dbb41ec8f7fe9a174a9d9cf +#: 107317f6166244bcbb972d7a0b7987ad +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.reconnect:3 +#: 3ca454d9c645490db147a17d1cfcbd0d +msgid "Disconnects and then connects the shard again." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.connect:3 +#: 4369546ad28f4db7b54d0be7be35146c +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.ShardInfo.latency:1 +#: a1f36fed4af44c01a9019cc4415319a2 +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.is_ws_ratelimited:1 +#: 17a313ff1c1c4f18989340eb1c290ed9 +msgid "Whether the websocket is currently rate limited." +msgstr "" + +#: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.is_ws_ratelimited:3 +#: de4084473dcf4a36a6c44ee307905482 +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../api/data_classes.rst:40 +#: e4e4b4653ed64e5bb6d330ca5bee9fe8 +msgid "Message" +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:1 +#: 68de5fcef5f94fbdaf3d75ea7edc3e4d +msgid "A class that represents what mentions are allowed in a message." +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:3 +#: c68127e476394b188a4eaaf7dc79ba2d +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:9 +#: 373d657b9ca9432fbf94b5cbcd98de32 +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:15 +#: 294c0e16454d4deb9930e7ce4ad19e32 +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:21 +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:31 +#: 530c33a7c302431cbd3d33ded378f0ba +#: 481cf58f03144feda8cabc58d0c1e2ee +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:25 +#: 7ae63488c1fe4d4f978d73adf95cb6f7 +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:35 +#: 33026490f59548eda43d83120ff762a0 +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions.all:1 +#: c44ec110894948148069a5bc458fe5b9 +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "" + +#: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions.none:1 +#: d9a6fb9e04ea469881c25941627a7172 +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:1 +#: 7356eae6e80c48cabddc24248342e844 +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:5 +#: 8d9e3b5226b84a4d9a95bccfb7d8ccc5 +msgid "This class can now be constructed by users." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:10 +#: 64f0d504dd97408ca19d5fe84a0df71b +msgid "The id of the message referenced." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:16 +#: b3465d0402d0442e829de7d9fc0c70fb +msgid "The channel id of the message referenced." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:22 +#: 850b11222cbb40e28037b71bde8dd57f +msgid "The guild id of the message referenced." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:28 +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:9 +#: f161b3d6b9624e51af155755e2347428 +#: ea0f2d067e6b4d12b130bbafb1face58 +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:37 +#: e78e1e20c3a241d3831110a8584672ce +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:43 +#: b515d831ed234923be2b9bf7f76b9ae3 +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:47 +#: 19036d2129714259ad50409d11530f07 +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:1 +#: 38dfb19fc9954c6aa0ff7e16266e3f0e +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:6 +#: a071c244685f4efbae71cdecef86fa51 +msgid "The message to be converted into a reference." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:9 +#: 9d87e15db2c9447c9e88885a3e0c7f97 +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "" + +#: ../../api/data_classes.rst:0 +#: f298076f2da34bc6b0148276f66f26f5 +#: ec698da13c7a4164a882b6d5a0868fe2 +#: a6ca5a3fecf44fb48027d663e2bec807 +#: 70e99411e23d43eb8585dc43417efafa +#: a2b5d900b9d54e2fa60473a890b42ec3 +#: 4ac61a3e497b4be5b871c0baafde13b8 +#: 98e4167f953b40db851724e2c969cbc6 +#: a1884408c24545a5ba907abd17fdcdb0 +#: 2b0ecd4f873f466896142c355a524794 +#: 498bb8a0a5f142ddb8d32e95d62b1353 +#: 08dd3fc02d4d4132b443ec7913195e42 +#: 16d279861a2b43879ebd8b1f71a20671 +#: 408145cd8b124a1a943e0057aa577f8f +#: 586a1eb31a564018bd9939a7ecea9ee4 +#: 3ab4f060db814ac395725738d928b330 +#: bc20f49f7ead49829d985ac83adc6d24 +#: 5703a79f19c24ee7ad4eee5189719603 +msgid "Returns" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:15 +#: 7440176a49d948b3838d6425ad4d9117 +msgid "A reference to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:16 +#: b558b9254e9b4404829ca2f6328601fb +msgid ":class:`MessageReference`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.MessageReference.cached_message:1 +#: e6ec39418abd41f6a698bfae76703a02 +msgid "The cached message, if found in the internal message cache." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.MessageReference.jump_url:1 +#: 741ef1bfdd924f8599b6b2586945ca23 +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageCall:1 +#: e14df9af50a04ea0be0f0b8d6d7c7217 +msgid "Represents information about a call in a private channel." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.MessageCall.participants:1 +#: d40bee3ac62041f6bd23c7b59415130c +msgid "A list of :class:`User` that participated in this call." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.MessageCall.participants:3 +#: eac74b3c5bbb4ecca33c22998b7aedc6 +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.MessageCall.ended_at:1 +#: 9f12734610a74b0fb1263173c3491d33 +msgid "An aware timestamp of when the call ended." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:1 +#: e23515a3745e48e0aa983bd9f441d4ed +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:4 +#: 85a154f901df4f9e8b832dbe86812112 +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:7 +#: fbc197c5dcea4c929ef5fd628a9678e6 +msgid ":meth:`TextChannel.get_partial_message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:8 +#: e4309a228f054e5c8144ef070337dff0 +msgid ":meth:`Thread.get_partial_message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:9 +#: 5fe3a1137b6b4dbca5bd2f9e3cd3ad2d +msgid ":meth:`DMChannel.get_partial_message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:10 +#: 770dedf0d7114dc4945e8f3ca0425ae9 +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:11 +#: fad600ffac8d4fc28948c4f227ca6738 +msgid ":meth:`StageChannel.get_partial_message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:13 +#: 58c599d04d364692bdb6b88fd2ec7d02 +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:21 +#: e4ba7e0b8bc44daf89cca61ef932b4c7 +msgid "Checks if two partial messages are equal." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:25 +#: 1e92d468fde74a73a1982f62f77caec3 +msgid "Checks if two partial messages are not equal." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:29 +#: c75d297174c040c291921a55c84aff50 +msgid "Returns the partial message's hash." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:33 +#: d6f75811b37446e4b8273a6368b9898b +msgid "The channel associated with this partial message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:35 +#: 541a020405794893b204059d68dab197 +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage:39 +#: 31d02f342df640338bf76f95cf441475 +msgid "The message ID." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.PartialMessage.jump_url:1 +#: fbf0476ac2bd4f97acf8af65e0851cc3 +msgid "Returns a URL that allows the client to jump to this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:3 +#: 29d3d44d9e2744588fef0d8f39679d7b +msgid "Deletes the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:5 +#: 96fae79288124f748e4e8c239b9b8b1a +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:9 +#: e971acc468664c7ca471b26ba6621cf7 +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:13 +#: 235950ff919946af9edc635392ba3699 +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:17 +#: ea61a6f32dfa4957a53d4b532656c263 +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:0 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:0 +#: ../../api/data_classes.rst:0 +#: 564b493c7da74b0a8b0026dc729e05e4 +#: 97084ae06e884aa1935379014827d625 +#: 768fc20ca68246c5b11a6405bf2756fa +#: 001d916f982d476587eff1e2d1c63951 +#: 6cbbec69370949ccbac38a5efae1e204 +#: 1cfce800ac9e4c86b506aa60387df0f7 +#: c413c5187bd34cee97e7cafc673a6e3d +#: d8a03160266345a28c22c0fe64f3d142 +#: 8d21aa75650245c2a03c5f3d921b44ac +#: 1c16b408f5a7485cab09255b21d90265 +#: 05030101a7454efa870fadc0be85a462 +#: 4f08a853300046d4bbf1ee5f8b7f4e4d +#: 14bfab826896452aadf027274a181303 +#: 439ecd14c2de4107bd7654a744f764bf +#: d2961414192743948ccc68022cf9c4f6 +#: ef42ed394a5e4e55bda1280fd319c154 +msgid "Raises" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:20 +#: b41a10938385430fbde90c12f035c739 +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:21 +#: f7436f8b61e141a19280a62c8ed64f2e +msgid "The message was deleted already" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:22 +#: bcbb6e482f804c64a4abecb6a4e45f19 +msgid "Deleting the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:3 +#: f4e9dc8f86aa42a3a4c4055bbb33ce20 +msgid "Publishes this message to your announcement channel." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:5 +#: bf76faf1f9274216a09c2e91f6386f58 +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:7 +#: 2c0ccdfabdea4c2ebf6deb39d29924c4 +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:10 +#: ea693d1db97448e1a598c6ae8080dbf9 +msgid "You do not have the proper permissions to publish this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:11 +#: 592c408165ff46f08ce8dd44d9425363 +msgid "Publishing the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:3 +#: e4f6d1445a4d415c9125a39ce255020d +msgid "Pins the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:5 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:5 +#: daa1cb3817894aabbb0ea1a18b81421d +#: e669bf32b9aa44df8063d09c8e64a2e5 +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:9 +#: 689db2ebc4e949cbad070710a8741095 +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:9 +#: 623c513b16e14fc0bbc6b4a535a3e44f +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:14 +#: 98fff9ede225464a8da6d514b271b810 +msgid "You do not have permissions to pin the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:15 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:15 +#: a926f86ace9a4194a00a466364e85741 +#: 4e6cc76945ec425e943e976a2f9d8bb4 +msgid "The message or channel was not found or deleted." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:16 +#: 6c215f6b7f2a4ddf8d77119142ed8b62 +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:3 +#: 8195304858b0442fbdf53efa34569fd2 +msgid "Unpins the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:9 +#: c1d8b8aa5b0a40d6b9f36f1853444704 +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:9 +#: 91e0a65046cc4d02ad07e98b00977259 +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:14 +#: 8ca4cd26797341a4b9f4100aca8b1e8c +msgid "You do not have permissions to unpin the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:16 +#: 87cd18a54efc4fd385432901fb39b837 +msgid "Unpinning the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:3 +#: 5ded560527ab4593a0062d503dccbd71 +msgid "Add a reaction to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:5 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:5 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:5 +#: cd02277db89943ed9ee4591e8af3275f +#: 6aaade68242548778bfe30d6bd5f2054 +#: 930dd30804944c798a46e9e5262d96a5 +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:7 +#: de4aa6f9efb64b64878511d76ccf83ff +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:12 +#: 17817427c32c455ca89b1bd91f98f0a8 +msgid "The emoji to react with." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:15 +#: 8b7a9e28239647328af16528598e19d6 +msgid "Adding the reaction failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:16 +#: a0d53681382747ca83356bca8a90fd97 +msgid "You do not have the proper permissions to react to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:17 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:17 +#: d954e7e116e24bf7bccda076d7755919 +#: 24789512dcfa4dc7a9d9830235001bee +msgid "The emoji you specified was not found." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:18 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:18 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:23 +#: 5c4cc2b758fc41c6b650e94c29df70a7 +#: a9d58618744d49d091a6d2b675548b3d +#: cd73f7beb7df43e686a7bf966e4acb62 +msgid "The emoji parameter is invalid." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:3 +#: b6e0bf1734ac49a8a83b561a1c43d714 +msgid "Remove a reaction by the member from the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:7 +#: 7c558ddb88eb464db3a2e359159b7159 +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:10 +#: 9b812ebf91cd4b3ca164b4e32fe1ae6f +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:14 +#: cd3b40641ddb494288abcfd4e0107825 +msgid "The emoji to remove." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:17 +#: b348722b041942dc82c4ba077705d83a +msgid "The member for which to remove the reaction." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:20 +#: fb92db3d862e465694b3b7a0eed56842 +msgid "Removing the reaction failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:21 +#: 83ff0da11c77493391aecc7fc410a1c5 +msgid "You do not have the proper permissions to remove the reaction." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:22 +#: f88cb1d0218f4349b20f4bfb953cee8d +msgid "The member or emoji you specified was not found." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:3 +#: 234e3f29572e46dda5d60b94630539b6 +msgid "Clears a specific reaction from the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:7 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:5 +#: 4b5bd7feaad94acd9247e5ea152d72f3 +#: 38f537d2e0d04d0d9166dcd09ff8e8e2 +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:12 +#: a9c93f7d5e044830b8ed37b3d6e8e512 +msgid "The emoji to clear." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:15 +#: 035b8fd086994b7a9e2e0a91af5b2b79 +msgid "Clearing the reaction failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:16 +#: 4cea524ce2534f379a652aeb46daa548 +msgid "You do not have the proper permissions to clear the reaction." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:3 +#: 01f83e3901ca4698aaceda560e42b939 +msgid "Removes all the reactions from the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:7 +#: 482e30aeb4c749f0b5876f81537409f4 +msgid "Removing the reactions failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:8 +#: 5a89399102614a71b080c592a9df4274 +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:3 +#: 6a803b20f30b41499a3154208e1cddbd +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:8 +#: 0432f057bc24436ab0c9162af0b56320 +msgid "The message that was sent." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:9 +#: 815203ab4dd9447daab77ae359e85c30 +msgid ":class:`.Message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:11 +#: d7a8c5afd03e4ba18c9c5bc654aaa52f +msgid "Sending the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:12 +#: f58e37c02b9346ac8affda2006377756 +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:13 +#: 2b6ec3e3ab574a20ae37d4d118fb1267 +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:1 +#: 303f5f553a71428285d200852504cec9 +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:6 +#: 06525f041a224df2946303c15381e33f +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:6 +#: 2e4f11c09c7d463aad237579dd9ca160 +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:12 +#: ba9e9d761df54e83b387bd4522433122 +msgid "The reference to this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:13 +#: 5ed3d2c88b4d4d4a96d200c1bf406751 +msgid ":class:`~discord.MessageReference`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.PartialMessage.created_at:1 +#: 43820c6a82af4b7f9be88f13c76d124e +msgid "The partial message's creation time in UTC." +msgstr "" + +#: ../../docstring of discord.PartialMessage.guild:1 +#: 9302b84c521647b69da4af562f56165e +msgid "The guild that the partial message belongs to, if applicable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:3 +#: 78d000ebd1274ceb8a1d38bc04d2d20b +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:5 +#: b04e3809d78644b79df2f3e48d3af7a6 +msgid "The full message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:43 +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:8 +#: 63ddd6f4054a4187bf9397afe4e430c8 +#: 6ebb0104593e4409a625fbd4bb27bbe8 +msgid "The message was not found." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:9 +#: a427a195ecf744038571bf8b10a6e687 +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.fetch:10 +#: b061557a36b44bc4bbad240bbac41710 +msgid "Retrieving the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:3 +#: 88cf9ce437914616b574f0a18a7f93ed +msgid "Edits the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:5 +#: c5ab139ad01d4a7b90691f1121856e5e +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:8 +#: e7dd8c55bda54d1593f2c051cccb14df +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:11 +#: 5a43027c35e24a84986b785209ad38ee +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:14 +#: 570745aeffc4476ab77e0c0b35d2537c +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:14 +#: 2ad24a36d4c1433c993f05022e0eec5c +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:18 +#: ebdb77601a344eef94e13632ce40243e +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:23 +#: 242d817223804c44bf3d8353ad0b04e2 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:27 +#: 3143cd2b586c437a9f2c2a88805412dd +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:34 +#: 712d02ac186e43d38096c29c6b1d0f2b +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:34 +#: 38b462beb37a4f5a82a7486de84aaad9 +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:40 +#: b209c9c412ab459f887dcda7956aa9bd +msgid "The message that was edited." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:41 +#: 495113be7d064bd2873a327f900820fd +msgid "Optional[:class:`Message`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:44 +#: b94b53751505427e8ffe980ff5ecedc5 +msgid "Editing the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.edit:45 +#: 65fe20a3c43f4521aff5291cbe54222b +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.end_poll:3 +#: 9b18057fb00a4638aa360b2a6ea1e132 +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.end_poll:7 +#: ../../../discord/poll.py:docstring of discord.poll.Poll.end:4 +#: 4384eb6dd74c4277bc507b455314f30a +#: b828ac93f2b644249f4d15ad9f202ebe +msgid "The updated message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.end_poll:10 +#: ../../../discord/poll.py:docstring of discord.poll.Poll.end:7 +#: 6688c9001e7746ebbeb01ce1f0aa311d +#: 9b78896bdd1940dc98776babef0a485e +msgid "You do not have permissions to end this poll." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.PartialMessage.end_poll:11 +#: ../../../discord/poll.py:docstring of discord.poll.Poll.end:8 +#: 90c6425cdab34723ac7939316ba8e7b9 +#: b37776026e034126b3472d2808f616f6 +msgid "Ending this poll failed." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:1 +#: 666289f9bc4c46a09ad5e5df62a010c7 +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:6 +#: 1ffc468a7e564a77b1ab6d3d175a0ddf +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:11 +#: ad22cb7b2f7f4bcaad2aca05530883c5 +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:17 +#: 386a428af11841de99743da4a1919cca +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:20 +#: a10d87c534c147fa9e5613a010e1e0a2 +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:22 +#: 314a606b86634b62b8130b78e23bd0eb +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:26 +#: 8b943603619b4b7fa7d08ab6270e0f33 +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:34 +#: 04abb69d4e3f4e8aacd536a566f80f75 +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "" + +#: ../../../discord/file.py:docstring of discord.file.File:40 +#: 4bf08b434a2d4714995daee269da72e6 +msgid "Whether the attachment is a spoiler." +msgstr "" + +#: ../../api/data_classes.rst:68 +#: 5672173d06bd46829384d84e99bed65e +msgid "Embed" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:1 +#: 427c2ee28b8949af81f97e02fb5bfc9b +msgid "Represents a Discord embed." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:7 +#: 97943274365f418986ea5471553de688 +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:12 +#: 11a5e4a569954a24829d3090b41a6858 +msgid "Returns whether the embed has any data set." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:16 +#: 4dc22484606047e590d81e706cba0691 +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:21 +#: 7832fd63a2a943b2a73a9a920fa6d5be +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:29 +#: 692ccfef72e24f968e41d37b39fd6f78 +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:38 +#: 91b98af56bdd4aa88649159b8f936fb7 +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:46 +#: 2d954533b76e4515a096046a55fefefe +msgid "The URL of the embed. This can be set during initialisation." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:53 +#: 092b6ba6ce244e53b6ce5f7e4e9500c1 +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:57 +#: 609d9519dae540debf386660d6ae227f +msgid ":class:`datetime.datetime`" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:61 +#: 6c1111e73b4f46c4ac628d0f4bcc7b61 +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed:64 +#: b7a8a80c58ec45f7894593aeb43777e9 +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.from_dict:1 +#: 6aeabaacc69f4ee68ea92fd54e214d10 +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.from_dict:4 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.from_dict:4 +#: 11c5c5487f8c48a3954a882ef0c81c3c +#: b794b160b2254aa5a8f826cfad55b96d +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.from_dict:11 +#: 4342a4fd6cec45399e05d59fff964f02 +msgid "The dictionary to convert into an embed." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.from_dict:14 +#: c1382cd2a5db4426a35bea2a16300c17 +msgid "The converted embed object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.copy:4 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.from_dict:15 +#: 31cb82cfd5694185a67134d428e16b31 +#: b90f78f68b5240018331590be71043e2 +msgid ":class:`Embed`" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.copy:1 +#: 14efae1cd9574abb9144795b5692270d +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.copy:3 +#: 21bca5a6e16b456cb4607d2165def378 +msgid "The copied embed object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.footer:1 +#: 437357134c32411e93189260ef456947 +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.footer:3 +#: 39ffb3814ad149369fd0fcb49fd8305d +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.footer:5 +#: f8236e0b51ff40158d943d38427aa448 +msgid "If the footer is not set then `None` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_footer:1 +#: 870e25600d0245c7ad5e1223e69be28f +msgid "Sets the footer for the embed content." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_author:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_footer:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_image:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_thumbnail:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_author:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:5 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_footer:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_image:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_thumbnail:3 +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:3 +#: 472e69cfec074712ba341e65b8fecb6e +#: e7943ab0533445e4a89b57901f95db90 +#: 11d661c1c9024782b0ae71fec225dee1 +#: 6b8ade2d914540eeb3eebb13e54555c0 +#: f7eb45567f4243d9a03d2b2166006a41 +#: aba36e4c6c5245cdacf85b3080dc1f03 +#: f371e938c3da4bd0bf5a06d81e305042 +#: 5e115a7dcc4d41ef885d8f6ab870c044 +#: a187bf38f5e4436d814307b90bb1f8fa +#: e85cbbbb24ac42cfb9d6361a2f4f7d4a +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_footer:7 +#: 965bb8f2192e403bab9f4eaa08028da0 +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_footer:11 +#: 927c6440f36d47e190e1e1e477a19e5a +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.add_field:20 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:25 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_author:10 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_footer:10 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_image:10 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_thumbnail:10 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_author:19 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:27 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_footer:16 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_image:15 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_thumbnail:15 +#: 670ce1a77ea64456afc2146913f95675 +#: 30e85322be3f4cec844d262906d911fa +#: 7e2ff18f093a480eb4f4289bcae47d78 +#: b7211db489424ecfbf3e000b3504ad97 +#: ebbc091611cc4e63bb8e7fa5a765ccfc +#: 4523234d8da84deea0fe2b7a2a9cf80c +#: 4f220172b63b439ea70e6352b36cb599 +#: aa755fbb4e0e47aeade77ce173ee8494 +#: 1d629c4e96d0404e8b98ab6051e348cd +#: 822c625fad7d4f2383d95bccdb25bb66 +#: edeff772ff814c03b6e4ddf1a7a92b81 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_footer:1 +#: 6f46beafb8ad419b8bc47fecd8449ae0 +msgid "Clears embed's footer information." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:1 +#: b1846260ec5f4bf9bbfa1b6037667698 +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:3 +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:3 +#: d81411e68d0f4d6f9518289513f8a904 +#: 5233314d723247fcb2a902aec419af06 +msgid "Attributes you can access are:" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:5 +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:5 +#: cffb7b3b2793415b9fa8247a91357837 +#: e581fbefd11c4ff1b5c0d70b5f03cf1b +msgid "``url``" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:6 +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:6 +#: ee9b344e994943acb62237fa811574d1 +#: 13fd27b8d0d04af2becf8c49e0a8e6e0 +msgid "``proxy_url``" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:7 +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:7 +#: b72ba3cc26404e28b1075b704cb14550 +#: d7c79cd75ab343a0bc84db8a7a6e4c61 +msgid "``width``" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:8 +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:8 +#: b8a6a508837443ba95e9285eeb489453 +#: 42876d8ef6ea4994937d5f34b5842991 +msgid "``height``" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.image:10 +#: 9faeb16d7c394608bcc439a360bfcdef +msgid "If the image is not set then `None` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_image:1 +#: f95421a72dd8440ea35b94bb90b99eab +msgid "Sets the image for the embed content." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_image:6 +#: 6c7d99b78a5c4b3ea4f56709ac489762 +msgid "Passing `None` removes the image." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_image:10 +#: 2e2904f0369540eda223ee6501bbff63 +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_image:1 +#: 12f2619a68bd4015bb2c363774c16ed2 +msgid "Removes the embed's image." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:1 +#: 8605a3db4e5e434aa5698e2eaf0e6009 +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.thumbnail:10 +#: aaa83fb51344424a868c52e6f11cb940 +msgid "If the thumbnail is not set then `None` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_thumbnail:1 +#: e6aa0e627eb64cc8ae7a6e3a20500fad +msgid "Sets the thumbnail for the embed content." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_thumbnail:6 +#: 363a882807bd4cbab5e84fb3b4692a92 +msgid "Passing `None` removes the thumbnail." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_thumbnail:10 +#: 75423cad1541415192d6e7ed5aeacdfe +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_thumbnail:1 +#: 41da049e3aaa47d0b6fb9c3810d19658 +msgid "Removes the embed's thumbnail." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.video:1 +#: 961bd85bd5544669b31dae29d3f43bd5 +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.video:3 +#: 227fc3080b80426fb032921f183f703a +msgid "Attributes include:" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.video:5 +#: b99b49981ef14c3d9973e3c9e0ca0ebf +msgid "``url`` for the video URL." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.video:6 +#: e3a3db758819485ba4186d6932ed0e65 +msgid "``height`` for the video height." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.video:7 +#: 700e78637e7c4a4a9dae808ca8367557 +msgid "``width`` for the video width." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.video:9 +#: c38bb3a47e1d4b9da777f617d8b4e912 +msgid "If the video is not set then `None` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.provider:1 +#: 53ae4ef3b67342cfa2ff6292ef331f63 +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.provider:3 +#: eb83f78507ca43cdbdb984fdc42255b0 +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.provider:5 +#: 827b55dbf1184c3dab56e04ad6ccb51b +msgid "If the provider is not set then `None` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.author:1 +#: 74ac52b2dc5b498da593026b6b13a969 +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.author:3 +#: 923af0d9c0ee421d8a47b81dd2cc38cb +msgid "See :meth:`set_author` for possible values you can access." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.author:5 +#: 7b0abc19fc80475c942f7e406a8d0356 +msgid "If the author is not set then `None` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_author:1 +#: 285a520f7e65498d81469c11d5a6f161 +msgid "Sets the author for the embed content." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_author:7 +#: 62a5b11154fd435893abf09011196871 +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_author:11 +#: ed34c5262fa9474c8924dadcd9168527 +msgid "The URL for the author." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_author:14 +#: 4f213ce46c5a457ba1edd63cf797d629 +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_author:1 +#: 9a7e8719ffe5410483741abf1f1bb582 +msgid "Clears embed's author information." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.fields:1 +#: 5b5a10ffdc3d4837bf82e6e1508bbf36 +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.fields:3 +#: c16c38bb27d34d019499e7f617025356 +msgid "See :meth:`add_field` for possible values you can access." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.Embed.fields:5 +#: 7bdb18c2d3e44a7393da17fce49995db +msgid "If the attribute has no value then ``None`` is returned." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.append_field:1 +#: 79ae22049785481294f74348ae5cca23 +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.append_field:6 +#: a01f46e43a594987ba8c68257beed74d +msgid "The field to add." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.add_field:1 +#: 4c217cd38ff4450fb5b7a530a6f5c252 +msgid "Adds a field to the embed object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.add_field:3 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:3 +#: 87ad0ce020044d25a671b1e53ff2a758 +#: 7220787fdc3d4e79a1e9f6edbbf53f9e +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.add_field:7 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:12 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:12 +#: c789b835bf5a431583ac9ba7139a8a18 +#: cff9612f942c4f6daf2141e7197ca7ba +#: a34ba6d39a9e4141b1c148747432c72e +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.add_field:11 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:16 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:16 +#: 43af5dd6ae4045f9b21924d69672625c +#: aef5c60863f84b8a9f859c4f310e4bb7 +#: 04c5393ea40648e9815424cd1a4e9936 +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.add_field:15 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:20 +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:20 +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:19 +#: 8873c3d93b1140ecb68918d2fe44630e +#: 27bca6852c6c4bbcbccf8a7511abb223 +#: b5d7893fdbdd4d49ab24e2d9ea4133dc +#: 95e2da8dc1bf4107aa8e6e89e77ef60c +msgid "Whether the field should be displayed inline." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:1 +#: 2422a4b7e42540f790e3c5b0ac81bfeb +msgid "Inserts a field before a specified index to the embed." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.insert_field_at:9 +#: 95e091093d0d4473965eaae62579eaaf +msgid "The index of where to insert the field." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.clear_fields:1 +#: 94e95d53e5d748bbb9c233bffc137d78 +msgid "Removes all fields from this embed." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_field:1 +#: 1918f1c5266e492db3c279793a97d66a +msgid "Removes a field at a specified index." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_field:3 +#: eb47fe95d8ca482c9822f5b42b5cd76e +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_field:8 +#: d64b9bcad6e74710b32282c557ecc870 +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.remove_field:12 +#: 27c9eef73d05412584f6c76f27828329 +msgid "The index of the field to remove." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:1 +#: 06fb6ae64d344a4c8cffb3d1ae87a4df +msgid "Modifies a field to the embed object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:3 +#: 5113353d66b34c79ac9f94b266959aee +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:9 +#: f2d46b8fe7024d5a8d8bfef0364690e8 +msgid "The index of the field to modify." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.set_field_at:23 +#: ec1906dad4f44ecc861c0854dcaf4ba2 +msgid "An invalid index was provided." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.to_dict:1 +#: 9f2422b1f3204fa1bac9e137c83a3ce5 +msgid "Converts this embed object into a dict." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.to_dict:3 +#: f20ea68e61504bfc87732ee925a9624e +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.Embed.to_dict:4 +#: 3e2fb25d1b7b430c9753a7983ca774ea +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:1 +#: 6569f8ddd1d5458b981ca62acef92db6 +msgid "Represents a field on the :class:`Embed` object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:7 +#: 4b949db6063c477f9a87d68d5d75b325 +msgid "The name of the field." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField:13 +#: bf58b3e4df784a86a6053bf20de7a0ff +msgid "The value of the field." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.from_dict:1 +#: f68540cf33154256bc69249e7ae628b0 +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.from_dict:11 +#: 90e46216828a4801969a488cd8916ef8 +msgid "The dictionary to convert into an EmbedField object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.from_dict:14 +#: 52637f1dd2d74324a31b9a90e46afcc5 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.to_dict:1 +#: 699af58122094dbf9484c027c693fe5b +msgid "Converts this EmbedField object into a dict." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.to_dict:3 +#: ba1355079f4445af930b5e3fa1d87193 +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedField.to_dict:4 +#: 92393ba03f314ad3b66cc9fabd35fa5d +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:1 +#: 5d4b2cb5459a4128b46ed9bf4654e6cf +msgid "Represents the author on the :class:`Embed` object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:7 +#: 0165cce516c64f5298d46a75bd8e81f3 +msgid "The name of the author." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:13 +#: 8fd25c58c3d6409fa26fcff1fdf67eec +msgid "The URL of the hyperlink created in the author's name." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:19 +#: 804bbf20fe6c4418a6f03780ed6e383d +msgid "The URL of the author icon image." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedAuthor:25 +#: 26594f578fc04c879c5132daef91fc4f +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:1 +#: 46d90ba390ec43e18bd5792f90aabb64 +msgid "Represents the footer on the :class:`Embed` object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:7 +#: a3c86f8a52834fce8eb89bee93b79386 +msgid "The text inside the footer." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:13 +#: b0a628aa630b46d4be33f6f9afa72e04 +msgid "The URL of the footer icon image." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedFooter:19 +#: 063facd6e7d64b6f93f3cf83c02270c3 +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:1 +#: 84009370ba89477799600703d0fd6cb9 +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:8 +#: 6f7dcd5b4c4c4c12bb80f4aa70c23c29 +msgid "The source URL of the media." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:14 +#: ecbf3a1aa02c4e77addc7cbd2f7c268e +msgid "The proxied URL of the media." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:20 +#: 2ac3ec6fd9cb4c85a8cbd82e79f3f399 +msgid "The height of the media." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedMedia:26 +#: d14db22673ec4303a4e43dd372f44d0b +msgid "The width of the media." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedProvider:1 +#: f484eca39a0b48beb3dbe96fe7018043 +msgid "Represents a provider on the :class:`Embed` object." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedProvider:7 +#: c8302a6febd04b178d3e35c4e249f5a0 +msgid "The name of the provider." +msgstr "" + +#: ../../../discord/embeds.py:docstring of discord.embeds.EmbedProvider:13 +#: a5648743549f45b5a0f218160cc66a13 +msgid "The URL of the provider." +msgstr "" + +#: ../../api/data_classes.rst:102 +#: 646f8ad2d43d4dce987005a50de9a4cf +msgid "Poll" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:1 +#: 596b19059df5489181dd78e474801848 +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:7 +#: c56b411c300a4ce08a3948b4da36a990 +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:9 +#: 8194348890384866a884b99e2b4c496e +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:13 +#: b778208a512643b98cbdabb1baa24642 +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:15 +#: 458431e25bdd4c0eb444b5917c005c9b +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:19 +#: ff4fb64ef22b48a5869c27f3c18b453e +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:25 +#: 293efff145294d2eb01067636aec1ced +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:31 +#: a3dd116585e34cd4a61770f53cca1f2b +msgid "The poll's layout type. Only one exists at the moment." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:33 +#: 195cf209f72e47e4afe524acecfa6505 +msgid ":class:`PollLayoutType`" +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." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll:39 +#: 602770e61cb14b51aa23c776955a22b8 +msgid "Optional[:class:`PollResults`]" +msgstr "" + +#: ../../docstring of discord.Poll.expiry:1 +#: 095344d640ad4e3686d6f8d4fa1b42a0 +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.has_ended:1 +#: 63ea2e4d032942aa9b0412c8e86862a6 +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.has_ended:3 +#: 307037856f4043509e0e2ea6ab1e1788 +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.has_ended:4 +#: cab588e9a2574d4583001470cbd6d49d +msgid "Optional[:class:`bool`]" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.total_votes:1 +#: b6b03dc921914dbe85dc2d2be6b6cb5c +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.total_votes:3 +#: 9a0fdc68d36f4c10ac1bf87dfb8a303a +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.get_answer:1 +#: 4bc8b97bc3104d30935148e3e21263d2 +msgid "Get a poll answer by ID." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.get_answer:4 +#: 9c8376d158244c9881f918c37595e5a6 +msgid "The ID to search for." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.get_answer:7 +#: ab496839c07a44458b623141c8adbda2 +msgid "The returned answer or ``None`` if not found." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.get_answer:8 +#: ac1c66324a2a4f76a6be775792c276ec +msgid "Optional[:class:`.PollAnswer`]" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:1 +#: b9e53c629c9e4021938d3101f9108020 +msgid "Add an answer to this poll." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:7 +#: f0853a888d3947bbaa38d45f88131502 +msgid "The answer text. Maximum 55 characters." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:10 +#: ../../../discord/poll.py:docstring of discord.poll.PollMedia:13 +#: 1a9558843dca496cb958afb3adb20a4d +#: 63316a76bc504816bc44704a1b64facb +msgid "The answer's emoji." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:13 +#: 4c4cf6f10a384cfc880a5f42883f6373 +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:14 +#: a0d53028501b413b82ba75a394aae545 +msgid "You cannot add an answer to an existing poll." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:15 +#: 79943b0defc04dd7b076d3a3be3f3790 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:18 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:26 +#: e3ed22fcc48e492ba655a324fd22c8ab +#: 6f68ef5ec3e74617904ff7282a027368 +msgid "Examples" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:19 +#: 75de56964bf64f1d8fc7e0877d23ec0b +msgid "Regular usage ::" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.add_answer:31 +#: 9dd4a3582245480195104a815db073ef +msgid "Chaining style ::" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.end:1 +#: 13088052a2d742f991adf8b074e2d093 +msgid "Immediately ends this poll, if attached to a message. Only doable by the poll's owner. Shortcut to :meth:`Message.end_poll`" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.Poll.end:9 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:22 +#: a64df6f6aa664e17aca4891da237f9de +#: 24e8c80c8d0447db8874363746ed8a94 +msgid "This poll wasn't recieved from a message." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollMedia:1 +#: ffb86145dac0403086b43ea3e82fe8f5 +msgid "Represents a poll media object that supports both questions and answers." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollMedia:7 +#: accc54dddd454268a0692f282ff316d1 +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollMedia:15 +#: b006fb5c6c854d799f871d8884228162 +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:1 +#: cf9a1a1afdf34f12bf876e33bccf7739 +msgid "Represents a poll answer object." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:7 +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:7 +#: e709c6027c5e46c8bf07a344edadf14c +#: 9f2c742e2ea94dfaa11d80510e61f651 +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:14 +#: b3e15cbd16a74614a884d4e981789621 +msgid "The relevant media for this answer." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:16 +#: 32d401e253064f7cad83219924e2b9a8 +msgid ":class:`PollMedia`" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.PollAnswer.text:1 +#: 740e7e072dfc46cc9d3842ce6572cbeb +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.PollAnswer.emoji:1 +#: 43371229509347538d72a881414b90e1 +msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.PollAnswer.count:1 +#: 26fd8264a6f94ea9be9059f7006b6c63 +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 recieved from Discord." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:4 +#: 583e4434932a41e5b3a269a6713a7fa2 +msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:8 +#: b5997af254ee4259b0f34384a2799bc1 +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:13 +#: daa91e5f499d467fbc3e9bbca91e4b3e +msgid "For pagination, answers are sorted by member." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:0 +#: 01899695d46f4d1e8b1c2d94e2f745de +msgid "Yields" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:16 +#: 94211056fb704567a53471567e50f9fe +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:21 +#: 64baeefd4bb8487082a15bc551e40738 +msgid "Getting the voters for the answer failed." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:23 +#: ee17ca5d93ae4e32b5e43584dcdbcef6 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:27 +#: 4be99a5a14964333b7e39865a359b0b5 +msgid "Usage ::" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:32 +#: c6e55828fa284012bdc2208c68d12e4c +msgid "Flattening into a list: ::" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:1 +#: c101fc73539645ef943416c6f35acff9 +msgid "Represents a poll answer count object." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:14 +#: f48a6afded354efb9ad758c1aab3db6d +msgid "The number of votes for this answer." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollAnswerCount:20 +#: 7d1d57e3a567465c814288bb92f9de2b +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollResults:1 +#: 0b2a540dde524344979b5afd0f3f6f3d +msgid "Represents a poll results object." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollResults:7 +#: aa347e9ae60b498abf39d69670fbb686 +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollResults:13 +#: cd87d8d6808b46b0bfe7d013d6331be9 +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollResults:15 +#: 471754e81c27452484eaf708e3581229 +msgid "List[:class:`PollAnswerCount`]" +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollResults.total_votes:1 +#: 117cb59ea6cc4530a8c119572b675f9e +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "" + +#: ../../../discord/poll.py:docstring of discord.poll.PollResults.total_votes:3 +#: 935d9c5a268d4132998d5ab2b779a4a0 +msgid "The total number of votes on this poll." +msgstr "" + +#: ../../api/data_classes.rst:132 +#: 43ab35acc0f9434b8e53132a073d8d22 +msgid "Flags" +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:1 +#: b6506378885b40b386e202d88e1b6b50 +msgid "Controls the library's cache policy when it comes to members." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:3 +#: d52ae24e27c848d8a93fcd4d63ed62ab +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:7 +#: 1934b928b4124bf29bf6bd8efee2c8b7 +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:15 +#: 100fc3ea47604bbdb0ab983d056eb915 +msgid "The default value is all flags enabled." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.all:1 +#: cfd924b2696a41d7b71920f52b279979 +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.all:4 +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.none:4 +#: 8bb674b4b37b49d39b2e4c552f123f11 +#: d5a644216f01444cafdf7ea6b7f82ade +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.none:1 +#: ec84f2c7145b46fda14ed34b3383678f +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.voice:1 +#: 1e599f7b72f84d17810aeec4385ebe1a +msgid "Whether to cache members that are in voice." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.voice:3 +#: b83d29d1e0c5490080d48db4692e75c7 +msgid "This requires :attr:`Intents.voice_states`." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.voice:5 +#: 29cff10544cf45c8a99e777641354826 +msgid "Members that leave voice are no longer cached." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.joined:1 +#: a2aadd5a8cd640cd8d80de55c70cb7be +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.joined:4 +#: 0d84624c15994c2a971384631903a284 +msgid "This requires :attr:`Intents.members`." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.joined:6 +#: 199c6d64c1dd449bb70c5456385611ff +msgid "Members that leave the guild are no longer cached." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.interaction:1 +#: cd9de6171ee249e386bcd743296c86c1 +msgid "Whether to cache members obtained through interactions." +msgstr "" + +#: ../../docstring of discord.MemberCacheFlags.interaction:3 +#: b69154ada3f34b8cb44ac06ab84141a2 +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.from_intents:1 +#: 71bce589850840799aef69fb53812713 +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.from_intents:5 +#: d8f4814af70a4ca685de8d66a3618a1b +msgid "The intents to select from." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.from_intents:8 +#: eae9acf293d74ae296ae74f8938b1cca +msgid "The resulting member cache flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags.from_intents:9 +#: f8dfaee97e7d4a20a85699e42ecaa334 +msgid ":class:`MemberCacheFlags`" +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:1 +#: a1aa35ec632b4627b69b3e64b95188e3 +msgid "Wraps up the Discord Application flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:7 +#: 2548906fb1c548c3817b77801d35027f +msgid "Checks if two ApplicationFlags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:10 +#: d0b32f0c6e85498a948b585d05a78060 +msgid "Checks if two ApplicationFlags are not equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ApplicationFlags:31 +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:31 +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:31 +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:31 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:31 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:31 +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:31 +#: 3851f49fd12d49ba93ddefde1a9b5c8b +#: 0a60c529aef34b0f843083188ef95076 +#: a304b06eed3747b49d620309937f6449 +#: c651c6e72da941cc8ce3ba6493f9457a +#: 67af1123860e496b9f91f7c3a519b19d +#: ca796b1eb1d54d3cb7da0e9f2810c897 +#: ca37502959d045a1a78f4a4f650ae145 +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.managed_emoji:1 +#: 7ac241b169894315bbfd2621597de88b +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.group_dm_create:1 +#: 149b5addc60848a690ff6ed3364cd720 +msgid "Returns ``True`` if the application can create group DMs." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.application_auto_moderation_rule_create_badge:1 +#: 84e63c5c48ba4eb5ae1dabaa258759da +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.rpc_has_connected:1 +#: e6a9990ba3d646e388c64014e1e75a0f +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.gateway_presence:1 +#: 8bfd56a90b0740749399b09e8492b2c3 +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.gateway_presence_limited:1 +#: 031b14e91f46471b9c1caa3c143fe24c +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.gateway_guild_members:1 +#: b61c0d3c0ddc4019917e3b2c9fe5838e +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.gateway_guild_members_limited:1 +#: d6f247075dcd4acd9b36925e53626cc5 +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.gateway_message_content_limited:1 +#: ../../docstring of discord.ApplicationFlags.verification_pending_guild_limit:1 +#: 800775621ea646a5ab3d7aa7241a312f +#: 31ebe53678724d59ba3d2e8b26c87434 +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.embedded:1 +#: dc09c558ec6541459a558f676916b5e3 +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.gateway_message_content:1 +#: 0781df4a164c450a824b0c465ac4ab7d +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.app_commands_badge:1 +#: e59991780d57460db3e98a50cf7bdf3a +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "" + +#: ../../docstring of discord.ApplicationFlags.active:1 +#: 3f7a918d6bfb4ce4b696d4e6ebe3e353 +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:1 +#: a4bd098e1fc34c008219770e62a06a99 +msgid "Wraps up a Discord system channel flag value." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:3 +#: f486929f646446b8b0d2b87f181db124 +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:40 +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:39 +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:39 +#: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:43 +#: d854e922bf584117a013f976c9b28415 +#: 0773bc0d7cea46738c462ab180eb4376 +#: 3bc2d187867445d89d6f41da9143802d +#: a9111ef7cd2e4cd2b8a89c78d2cc659b +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "" + +#: ../../docstring of discord.SystemChannelFlags.join_notifications:1 +#: b8ee9a8232a8404a9b7465ad566dcc3b +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "" + +#: ../../docstring of discord.SystemChannelFlags.premium_subscriptions:1 +#: 30e1356e12bc4d2db6d115c6dfbb702a +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "" + +#: ../../docstring of discord.SystemChannelFlags.guild_reminder_notifications:1 +#: c860a7da688f4a3eba329b0f5a44fe60 +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "" + +#: ../../docstring of discord.SystemChannelFlags.join_notification_replies:1 +#: a12de3bb2ee84f1dbee7cc3d66dc1c5a +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:1 +#: 10b8cc67e79340b8a4ad420ef92f838a +msgid "Wraps up a Discord Message flag value." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:3 +#: 480c78b484734583bd294f3bc094cfa4 +msgid "See :class:`SystemChannelFlags`." +msgstr "" + +#: ../../docstring of discord.MessageFlags.crossposted:1 +#: 6d39d51a10534ed09d3a2c79eec76696 +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "" + +#: ../../docstring of discord.MessageFlags.is_crossposted:1 +#: 649ea51ce00e42e1ad43640c7458e6b0 +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "" + +#: ../../docstring of discord.MessageFlags.suppress_embeds:1 +#: 2a7cde95910f400596d570b49bfed689 +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "" + +#: ../../docstring of discord.MessageFlags.source_message_deleted:1 +#: 70ea37bce38b4f5fbbbeb08d57268b75 +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "" + +#: ../../docstring of discord.MessageFlags.urgent:1 +#: bf30f3b5a2484302b7d0c3ab72dba8c3 +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "" + +#: ../../docstring of discord.MessageFlags.urgent:3 +#: d317088a0a64477588f5743f245fceaf +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "" + +#: ../../docstring of discord.MessageFlags.has_thread:1 +#: 77a6e2aeea7940edb81b9265feb50d2f +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "" + +#: ../../docstring of discord.MessageFlags.ephemeral:1 +#: 0a77c56b6c474a99a5cd0657b7f7fc02 +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "" + +#: ../../docstring of discord.MessageFlags.loading:1 +#: 336d134a2b53410bb583d939dc1cecd4 +msgid "Returns ``True`` if the source message is deferred." +msgstr "" + +#: ../../docstring of discord.MessageFlags.loading:3 +#: 57c75b7855894e6fa76c6bda80588672 +msgid "The user sees a 'thinking' state." +msgstr "" + +#: ../../docstring of discord.MessageFlags.failed_to_mention_some_roles_in_thread:1 +#: 67057e75388e4edb90308a2fb5c13697 +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "" + +#: ../../docstring of discord.MessageFlags.suppress_notifications:1 +#: 3306149588ed40d5b847b2100e63721a +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "" + +#: ../../docstring of discord.MessageFlags.suppress_notifications:3 +#: 1765bd17b14d4dfbbb4f1981def660e8 +msgid "Users will still receive mentions." +msgstr "" + +#: ../../docstring of discord.MessageFlags.is_voice_message:1 +#: 8dfb19e31e824f7482b22c70839d3cfe +msgid "Returns ``True`` if this message is a voice message." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:1 +#: 8dc3ce8bf77f4a4684ab876af0ddf039 +msgid "Wraps up the Discord Attachment flags." +msgstr "" + +#: ../../docstring of discord.AttachmentFlags.is_clip:1 +#: eeac692215814c7a97cb5a368f5e9411 +msgid "Returns ``True`` if the attachment is a clip." +msgstr "" + +#: ../../docstring of discord.AttachmentFlags.is_thumbnail:1 +#: 9e8032c720724ec2889d8c49b9305286 +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "" + +#: ../../docstring of discord.AttachmentFlags.is_remix:1 +#: 4ddb09d9637e4f49b0d1b3ca90f1a568 +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:1 +#: 33afb8ca627c4db79bb2365e319224ca +msgid "Wraps up the Discord User Public flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:7 +#: 5649c119f893493caabba18e103f07ad +msgid "Checks if two PublicUserFlags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags:10 +#: 6691bb86ba0b404ba18a2bb137eb7d30 +msgid "Checks if two PublicUserFlags are not equal." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.staff:1 +#: 9b746d60bed942a1950241d77759f1a7 +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.partner:1 +#: 4d18d90b42db4daaa8b711452f4a0d2d +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.hypesquad:1 +#: 46589090794347e886aa5de6ceee28fb +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.bug_hunter:1 +#: fccf1e186e094ebfaa00fbfb54e2fa3c +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.premium_promo_dismissed:1 +#: 2984d09fb2534bbda92f69564035b676 +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.hypesquad_bravery:1 +#: aa19d8a150674cddbd5c6a0a025bcc4a +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.hypesquad_brilliance:1 +#: 49e3b8c90259460298e42707a0ef84b1 +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.hypesquad_balance:1 +#: f8e077f7732e4742b902ed3298ce6bde +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.early_supporter:1 +#: e29056e2fb184c68b27a137402116f08 +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.team_user:1 +#: 4d6fedf25ae24ef484d125962d81e0d9 +msgid "Returns ``True`` if the user is a Team User." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.system:1 +#: e4f9559c2f6944abad4e86bb507e3511 +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.bug_hunter_level_2:1 +#: c8a9c76c50394d37a2bdf94ea0ccb8f5 +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.verified_bot:1 +#: ae50f2aeb3604bef956017622574b740 +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.verified_bot_developer:1 +#: 1adf9343bab7420e940b41a8e38ecfe8 +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.early_verified_bot_developer:1 +#: b8c67f65a3664475aa8de21005c25dc1 +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.discord_certified_moderator:1 +#: 47a31c6e967f49cbbd767def4ed0befc +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.bot_http_interactions:1 +#: 36db2efdfac943f8baf70ac04cc9d31d +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "" + +#: ../../docstring of discord.PublicUserFlags.active_developer:1 +#: f350510626714f79b476a615b61db38c +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags.all:1 +#: e4bc6b0210804222bd91863723951907 +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.PublicUserFlags.all:4 +#: 650deb70a83e4df5a896568198f3618a +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:1 +#: 7df90c872a784fe58cfc7e1be05d6805 +msgid "Wraps up the Discord Channel flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:7 +#: 2521c5e0a2a1484e9e698431323eefe8 +msgid "Checks if two ChannelFlags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.ChannelFlags:10 +#: ffe02de519314d17a878ee53f189096d +msgid "Checks if two ChannelFlags are not equal." +msgstr "" + +#: ../../docstring of discord.ChannelFlags.pinned:1 +#: 327561b0cace4239ac00b172a83525a7 +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "" + +#: ../../docstring of discord.ChannelFlags.require_tag:1 +#: 7f91812da4014ead9e3be4e675f7e057 +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:1 +#: 32012591b7c94fc08af1f60088606c64 +msgid "Wraps up the Discord SKU flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:7 +#: f35d7acec4bf4de78098e1c6d19d5151 +msgid "Checks if two SKUFlags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:10 +#: dea4d42fa7ca4a229e039f2140418623 +msgid "Checks if two SKUFlags are not equal." +msgstr "" + +#: ../../docstring of discord.SKUFlags.available:1 +#: 027a6ab64f424916937c03f62e7ce9b5 +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "" + +#: ../../docstring of discord.SKUFlags.guild_subscription:1 +#: 81df38454e7f4f4a880120a036e9db35 +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "" + +#: ../../docstring of discord.SKUFlags.user_subscription:1 +#: eea2e37ea19042af87b4d63827d12ead +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:1 +#: 0afe05464fe04d56a027d0cd3c9db82a +msgid "Wraps up the Discord Member flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:7 +#: d080f67e546140669b711c0dbbfcc0b0 +msgid "Checks if two MemberFlags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:10 +#: 90a926f55a614819835583819864e090 +msgid "Checks if two MemberFlags are not equal." +msgstr "" + +#: ../../docstring of discord.MemberFlags.did_rejoin:1 +#: 2c49440173f94a6e86ae552f1c7630b4 +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "" + +#: ../../docstring of discord.MemberFlags.completed_onboarding:1 +#: f716a9f2d5ed4fe396bc2744eeca2d3c +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "" + +#: ../../docstring of discord.MemberFlags.bypasses_verification:1 +#: 73740166295048a08a0cfddbe7978d73 +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "" + +#: ../../docstring of discord.MemberFlags.bypasses_verification:5 +#: fda7930c8a7c4c91abf604a4b839e60d +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "" + +#: ../../docstring of discord.MemberFlags.started_onboarding:1 +#: 834d998270134606aca02e4bb572587f +msgid "Returns ``True`` if the member has started onboarding." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:1 +#: a98c247c252c4ca589403b8194c19b47 +msgid "Wraps up the Discord Role flags." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:7 +#: 45517fcabe5845d6ae9bc1ae96508905 +msgid "Checks if two RoleFlags are equal." +msgstr "" + +#: ../../../discord/flags.py:docstring of discord.flags.RoleFlags:10 +#: a2547963b0e14605b352befb4ba8e266 +msgid "Checks if two RoleFlags are not equal." +msgstr "" + +#: ../../docstring of discord.RoleFlags.in_prompt:1 +#: bd41c11c44b445609dabf6fdee86122c +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "" + +#: ../../api/data_classes.rst:185 +#: 4d2438b9745240cd93782603979ee00b +msgid "Colour" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:1 +#: 0bc56a88a55a448eba210de89aecb3ec +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:4 +#: af377132a7a245d282a7cb5f72b98154 +msgid "There is an alias for this called Color." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:10 +#: 95e2e6b9db564bfd9a10a6d0eb1a1c4f +msgid "Checks if two colours are equal." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:14 +#: a6b3fc12993a4cb192fcf2c9cfa96e4b +msgid "Checks if two colours are not equal." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:18 +#: cc84aa4e5a66474da6426208b5a7b8a7 +msgid "Return the colour's hash." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:22 +#: 7ff8810602fe4d239a77dc15427f234e +msgid "Returns the hex format for the colour." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:26 +#: 1e7a0f776972463ca7787176b0f12aaf +msgid "Returns the raw colour value." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour:30 +#: edb32b320cb342c89417ab0c470aadb4 +msgid "The raw integer colour value." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.Colour.r:1 +#: 2c8372e38d3243dea387feb00d363abf +msgid "Returns the red component of the colour." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.Colour.g:1 +#: 930927fd51f84af48c7f6523a2c27036 +msgid "Returns the green component of the colour." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.Colour.b:1 +#: 6a5c671c23a4455cae45cf7b86841334 +msgid "Returns the blue component of the colour." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.to_rgb:1 +#: 0258dd8927a5476ea31d85d4a343a00f +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.to_rgb:4 +#: a239b08c195d4cdeb39113116b69730e +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.from_rgb:1 +#: 63847d00bfc3402f9dddbc0fdb8fc12f +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.blue:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.blurple:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_blue:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_gold:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_green:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_grey:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_magenta:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_orange:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_purple:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_red:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_teal:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.darker_grey:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.default:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.embed_background:14 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.from_hsv:9 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.from_rgb:9 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.gold:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.green:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.greyple:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.light_grey:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.lighter_grey:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.magenta:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.og_blurple:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.orange:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.purple:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.random:16 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.red:4 +#: ../../../discord/colour.py:docstring of discord.colour.Colour.teal:4 +#: a0f8ca655ace4281904460b701a12e9d +#: 71e9bd4b899443e790bfcfd96649e61f +#: 3d4d3ff243c84a55bc04205123b67b39 +#: 9971e2da3aa24d2d8f60f8204978647f +#: 1fb0f45cd10f4a879ef681cd0e30a6f8 +#: 887b7f088a2c4a9fbf171b9e8859b231 +#: d9cd83bb22d447d18190b1aa9892abfd +#: 18725c88d25843da82b566cb3a8f3036 +#: d520111c73814623bce25249a90ec7a6 +#: bb37ef13a9cd40c6905b63bd95934775 +#: 2a8b69d9fe7a4767a063694e52574666 +#: 1f1f5a340a3e49b39fe7b02f95bee2f3 +#: 3fc050a5e3044581aa771d20a3d46918 +#: ea647fa805ce44729fd1e8dfe31d938a +#: d4d35ebcf0b04ec0b10ea85dac563c99 +#: 93dfad5707f44dee856d0860ac006d26 +#: da75f800e2e742068b927f529196aee3 +#: 7eb434a46fbf4f9d9bcce3907582bab4 +#: 7c802b0e0ade49a0ad9db95004131d09 +#: d83056fdd5b44d139964d8d931d522e7 +#: bca9c6fc15464f518561bfcc5f8581b3 +#: 0022122c9e014d80bdba2c7242d14b0d +#: ee743564f21844d5adbcfd588a644aa9 +#: a2d931976a37445db9c7dac8fc4c37c8 +#: b0256725035e47adb1a721139a023589 +#: a9dac317daa24c98a06048d6cfac090a +#: 9df700b3893c46438945f72e379b4389 +#: 19fc169b9416480e882b919b0742175d +#: 7290c848640c4bd8a711f58adeba46ba +#: 70c2b6d36c974405a2993422c01a46e6 +#: 71634e4f447f4c7b9932135a1faab921 +#: 0572585aec68476682668d005a3c3b4f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.from_hsv:1 +#: 1d2fd978b53341d1a9951c10e8409fa8 +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.default:1 +#: f6fe4b8aaf4a4059a6cb38c6c3750f4d +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.random:1 +#: b6244152aeb844b0b3a073594ad4f462 +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.random:5 +#: f72e38aaf95f4a55909f8f47e528047d +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.random:11 +#: 7e753ac524734679a23d66e7eca10609 +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.random:11 +#: 5733fdce535445dabd34d11f1981bffb +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.teal:1 +#: ffc576a6a0b647c994a91fc1ab89147f +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_teal:1 +#: 019ad6d562fb4868aebb8f80fbaf2628 +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.brand_green:1 +#: 2809c53d29824df69166201321bc9fec +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.green:1 +#: 6cc5d6aadbb64f25b32f9664d58ed82e +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_green:1 +#: 4ac07d277e394779972f7a7047b96483 +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.blue:1 +#: 1444ec89e41c4f6ab5ed395fe2d8050c +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_blue:1 +#: 2519110c724f42b2b34d51845e341702 +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.purple:1 +#: 8c9e35fbb1d540fd8a4191919032a05d +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_purple:1 +#: b3537fcb5c5e400faa8fa6d3adc61e0f +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.magenta:1 +#: b9b81e21116143db998500b2475dc29b +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_magenta:1 +#: a3ddc438b7fb47a8892de380f8a38f52 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.gold:1 +#: 47a39aa405ea4c29a2c3f3987ce0d07e +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_gold:1 +#: a43570fb88f84b3fa081555ded31e601 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.orange:1 +#: e4488bf9b87f46dd8b00d231510a0d11 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_orange:1 +#: 7fb3e4c7e3624964a72d3ca847d50528 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.brand_red:1 +#: bf01a50532b5404dae7505a55a88a477 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.red:1 +#: 4eeea91e793a4fc19914d97c20797aab +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_red:1 +#: c9ffe0ca315247aeb2070b757416897c +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.lighter_grey:1 +#: 5e27ef808d91425e970ae6662337c2b5 +#: 8044758a0db84cdf863db1e689e0be67 +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_grey:1 +#: 20eb2a0175154749974a5ddcaea1c505 +#: c0f6998838a94278abf17afb257fb664 +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.light_grey:1 +#: c72d480b7c9149d6ac778be8a1432ded +#: fc5d0c4ec9b1403c86dccd73eab9cabf +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.darker_grey:1 +#: 6f66401bfb6b462090fc239b5f121de9 +#: 22102a11a6cf40308bc89b14cfb7ba4c +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.og_blurple:1 +#: a8a91c59f7f041378f7c8df6b9ba5d7f +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.blurple:1 +#: c00febfa573b48cab072245d343ad67b +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.greyple:1 +#: 8dd2bbd3142e43648a5342be5b997b2d +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.dark_theme:1 +#: ea6a540eff9141a58a4abebcb923706a +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.fuchsia:1 +#: b662095d005e4d848cdbb33fbcc79457 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.yellow:1 +#: d041d59442644a0597c6274311bc6482 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.nitro_pink:1 +#: 9082218ea3464ffb99c07f1fddb70e17 +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.embed_background:1 +#: 1a28ea6d58c74dc396e00736389a7fe5 +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.embed_background:4 +#: 7fb2e3dde8594c9d839efec27ed4f7a6 +msgid "``0x2B2D31`` (dark)" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.embed_background:5 +#: 36ab5f667d484968a82596cffbe4c7cc +msgid "``0xEEEFF1`` (light)" +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.embed_background:6 +#: 0110f69fe3ed402abf89c0ba8051e189 +msgid "``0x000000`` (amoled)." +msgstr "" + +#: ../../../discord/colour.py:docstring of discord.colour.Colour.embed_background:11 +#: d72641880fdd4598876dd1a82c6e7d8f +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "" + +#: ../../api/data_classes.rst:193 +#: 9905f7d99ac846c088e3402bdc9a380a +msgid "Activity" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:1 +#: c52db67ea78d414fa4300f7be0054f5a +msgid "Represents an activity in Discord." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:3 +#: 54f2215d0c5041639c16cfe8b6f42717 +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:6 +#: e729d11740df48e5bc828e39978e4180 +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:9 +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:7 +#: bd8eef39e9e8469488008ac99a754b70 +#: a28d0d7a3af749fc815dcf126213541e +msgid ":class:`Game`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:10 +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:8 +#: 5304d830379f4e10b5bf07f5239cc960 +#: 0732538ae1554ce7ad874746d8e04836 +msgid ":class:`Streaming`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:14 +#: f1a64e72ab044453a26f93ef99cf7fe9 +msgid "The application ID of the game." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:20 +#: 2a70cf7691b54a0688e7d533bd4bebf6 +msgid "The name of the activity." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:26 +#: 841863bc00d34766894f5836500f6ced +msgid "A stream URL that the activity could be doing." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:32 +#: 80e09c77ef794d7b85723a1454ad2baf +msgid "The type of activity currently being done." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:34 +#: 2b20ab734fe344d5a8cea26cd6e575d5 +msgid ":class:`ActivityType`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:38 +#: 6e859884311d44dbac604d61a1b31e7f +msgid "The user's current party status or text used for a custom status." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:44 +#: d879aa74129d4958b85d73b8adede6f7 +msgid "The detail of the user's current activity." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:50 +#: 0dae68955393486393daf4ec2426aa22 +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:52 +#: 7dfd4bc9fbcd46bc908a24168eaa3524 +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:54 +#: 603680d7a4734e318b74294bb5d17cae +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:57 +#: 3afc0211c73c4d1da98f985be927ec34 +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:61 +#: 90cf228cb518423fa1fbcbe0ea6ca047 +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:64 +#: 2d84cc8fd7454346a7eee48a3fc9b69c +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:65 +#: 2963e1126d634fb99d4f2c8854ad01e1 +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:66 +#: 6974ca4a73a842aa9cee3f5b2a6b9d75 +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:67 +#: 7694677fe39f4f47b2cb64fd3ef8873d +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:69 +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:61 +#: 5eba8079bdca4d1ebd1953ae49348f0f +#: e41a8f1a9a474c699e2ae5b09b9eb767 +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:73 +#: 7100a7a2fdb04e349a841242cfca9c8a +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:75 +#: 926c2d9fe15b420ea9db9043b0d00e30 +msgid "``id``: A string representing the party ID." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:76 +#: 987fcee3a24b4da188c6dd26f449db8a +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:78 +#: 90abebc7d5ba4bc6a3f72b1c0bfa3061 +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:82 +#: 119ad37b11cb4c86ab11f49c8205fe40 +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:85 +#: fee7d5966539463dbc09ba4d777dc4c5 +msgid "``label``: A string representing the text shown on the button." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:86 +#: e934ad3fb7514285a2551153ebba45df +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:90 +#: e9b5e058928b4b1ca13762463fa83073 +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:95 +#: 32efb19b998f47149b9c36a635d0e430 +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:99 +#: 1f065119b988464eb863d1f164649246 +msgid "The emoji that belongs to this activity." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Activity:101 +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:33 +#: b84d01ced9aa4d4d87d8a0ebe947641d +#: ca906f7c1a2449a5bc24eb1ec94888eb +msgid "Optional[:class:`PartialEmoji`]" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Activity.start:1 +#: 922a50363d1e4b7abda2b65a509a7633 +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Activity.end:1 +#: 6d118390d4fc42c6994502131a8335bf +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Activity.large_image_url:1 +#: 2e9df406abc44d68ac8d05f2623f233e +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Activity.small_image_url:1 +#: 5cc10e23763a40069105f956a47598f3 +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Activity.large_image_text:1 +#: af7be03a7e334e74835e11d36f55a1e8 +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Activity.small_image_text:1 +#: 3c2e2d49b5b146c6beeb4e21f02013f6 +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:1 +#: fb3c412129464f14a32817147d50de0b +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:4 +#: cf387d90080b4cdc9e10bbdc1d06257e +msgid "The following types currently count as user-settable:" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:6 +#: aa33c3b5a42949859a53709e61da1f05 +msgid ":class:`Activity`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:9 +#: d6427e751a794bd78b364ac0b75728a3 +msgid ":class:`CustomActivity`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.BaseActivity:11 +#: d09ea164c0cd4cbdbc0163e5437093a9 +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.BaseActivity.created_at:1 +#: 07b36b0e7d2948e1baf228040a6a3241 +msgid "When the user started doing this activity in UTC." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:1 +#: 66617b5efa3e411292f2c95782ab2454 +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:3 +#: e8cd4495f8bd4373b2d536a0829af5ca +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:9 +#: 23ae142cc83940b59466666da6b82abc +msgid "Checks if two games are equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:13 +#: da3209c4958443a396716fbf81b22ff6 +msgid "Checks if two games are not equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:17 +#: c7f7d169c44f42f492d9d7dcf1845954 +msgid "Returns the game's hash." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:21 +#: 6edf2ada4fb84c2299ef2193db043fa4 +msgid "Returns the game's name." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Game:24 +#: ../../../discord/activity.py:docstring of discord.activity.Game:29 +#: 60ec9c34573a4bfd974edad2940fc120 +#: 710eb25609234a2eab35dd6ef26a8672 +msgid "The game's name." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Game.type:1 +#: ../../../discord/activity.py:docstring of discord.Streaming.type:1 +#: 3a36f0b58a4a4e7cb9f8dc2cc6aa1d94 +#: 00b6990c11bc4f928db940ba5015af05 +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Game.type:3 +#: 519f2ad7af2643a49c8de14c5fd856dd +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Game.start:1 +#: 2fe7ad5b1581451e94caa24e9912d075 +msgid "When the user started playing this game in UTC, if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Game.end:1 +#: 0491299224284daeafc2d95b819b5835 +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:1 +#: 22e2635806f44e03b314fcea5c24d064 +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:3 +#: 76aa5d55d1c9433089da693267966795 +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:9 +#: 42eb1dc2050e401e9075ce5a316f1981 +msgid "Checks if two streams are equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:13 +#: 38c4279586ad4e439c331b076545379a +msgid "Checks if two streams are not equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:17 +#: 95be974cab9e4dadb28de5009208ebcc +msgid "Returns the stream's hash." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:21 +#: ae721653e365456fbebac789acb05adf +msgid "Returns the stream's name." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:25 +#: a178ef3028f3437e8d20967729abb6fc +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:33 +#: 6a24db0720074b169a1e671ec4841d36 +msgid "The stream's name." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:39 +#: 709bac80c9324b34a8b0686f4df4b0f6 +msgid "An alias for :attr:`name`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:45 +#: 32097c73089e429384ee0fb98060f3df +msgid "The game being streamed." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:53 +#: f4b4de5b2031416dba949ce8be26937a +msgid "The stream's URL." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Streaming:59 +#: 033534059d1b420d810da1de9fc81a04 +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Streaming.type:3 +#: c020752da0ee48c085ed325e2a5107a3 +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Streaming.twitch_name:1 +#: de8e1cf2c6eb43218a65788ba6caa0b4 +msgid "If provided, the twitch name of the user streaming." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Streaming.twitch_name:3 +#: 165338f4dab94b2f8901501ebd64c6f7 +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:1 +#: 3938e568fe7a46089da5b19b17fc515e +msgid "Represents a Custom activity from Discord." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:7 +#: acf4363744434b20a6464a9900123c84 +msgid "Checks if two activities are equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:11 +#: 60bd4d421bcc41cca95806d2a68ed1cd +msgid "Checks if two activities are not equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:15 +#: 5b063163bfaf4930af9d387ef066d6ec +msgid "Returns the activity's hash." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:19 +#: 9c992dd3ca474eaead904f431e9b065e +msgid "Returns the custom status text." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:25 +#: 1185f9ed8b11425296b33aeb72e9d01c +msgid "The custom activity's name." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:31 +#: 73a10f994059438aafdfba8fb233ccf9 +msgid "The emoji to pass to the activity, if any." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.CustomActivity:37 +#: 66f77c61ee2840e59efe648bf891294d +msgid "The text used for the custom activity." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.CustomActivity.type:1 +#: a2fcc50995664b789e7912d698d3672b +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.CustomActivity.type:3 +#: df5b15e73d1e41028c2ec44cf7c8a8da +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "" + +#: ../../api/data_classes.rst:221 +#: 60d410b462c140fd9d5d5d85a0ca55ef +msgid "Permissions" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:1 +#: 8e13e3b1d07e469eb7a3ab8b4ba0be6c +msgid "Wraps up the Discord permission value." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:3 +#: 4f272e071c5f44139b56ad55b81ea8aa +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:7 +#: bd321b47be9a4de98bdd12535fbcf574 +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:15 +#: 5637ff5271234867aaf55cf80d0fc1b7 +msgid "Checks if two permissions are equal." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:18 +#: fcc55fde91b24b5c9f7c6519b7e15ff7 +msgid "Checks if two permissions are not equal." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:21 +#: b5ab6c1babd64517a24ef83f2dde5e10 +msgid "Checks if a permission is a subset of another permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:24 +#: b16c4f3a39614a8b9fc0564c88d54c3b +msgid "Checks if a permission is a superset of another permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:27 +#: 3421d8547974443eabb00466f982007e +msgid "Checks if a permission is a strict subset of another permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:32 +#: f962f0f158b04fa0a28a23da9b07d0f0 +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:35 +#: 4ab6f2fa1e274ff3b08bcbcb07a4008b +msgid "Subtracts two permissions from each other." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:38 +#: 32a4172a223a4badb7223518fd57bfe4 +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:41 +#: 6f359edfb3b84604a3683f6f61ac6027 +msgid "Returns the intersection of two permissions." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:44 +#: 5cccbc5524084879a00ace639984467b +msgid "Returns the inverse of a permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:46 +#: ea8f4803688c427aab864e15ecf72a18 +msgid "Checks if a permission is a strict superset of another permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:49 +#: d6f51ecf1a7947359281cb9413a44943 +msgid "Return the permission's hash." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:22 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:52 +#: ee479ed5d50d4b20aebb43ef531f5610 +#: 35af40a9ec964fb48c18bbdfc01bf75d +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:58 +#: a10f6bbff86e49acbfaa46201bdf52d7 +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_subset:1 +#: 3713354dea1c4a6e98816c5530074aa7 +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_superset:1 +#: 7026a3194ab842e7ae4aedb81fd93bac +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_strict_subset:1 +#: df8b6b994b24481fbadcf9b7e63a31c7 +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_strict_superset:1 +#: cabd215d21bb4d96aa64bf4f13e778e8 +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.none:1 +#: 6e9068a2c344478ba5bb4ee0f556045a +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all:5 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.none:5 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.voice:5 +#: 1fba130190d641938864033a7f9fa35d +#: 6588456a9f9f4f36bb455aa4108df274 +#: d21bdd4bb92840a2b3de85597be27a98 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all:1 +#: b8790ac5bab648788e3c6a7efe91a8c6 +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:1 +#: c501996a0aa44e3bba2a7c131a8ecc55 +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:7 +#: 3d33edd78b4a44af96d1174e80fe38df +msgid ":attr:`manage_emojis`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:8 +#: 67c5f2685a8140feb38876faa140bf2a +msgid ":attr:`view_audit_log`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:9 +#: eb56391df8e94861af5a6a8409c17d6f +msgid ":attr:`view_guild_insights`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:10 +#: 7b554c4be8944c03a6ef76c5b73eede5 +msgid ":attr:`manage_guild`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:11 +#: 7f33532c524d48eeb208f2f316ac7879 +msgid ":attr:`change_nickname`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:12 +#: 606ad5d3e5084e568298891c3b0588e7 +msgid ":attr:`manage_nicknames`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:13 +#: 48fc50f3db1a4049aa6ed259c0016e20 +msgid ":attr:`kick_members`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:14 +#: e7d64bc06aef4cc7837d72e3051db957 +msgid ":attr:`ban_members`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:15 +#: c502768910914af6a4de9d4bbf12a158 +msgid ":attr:`administrator`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:17 +#: 58e62e0ef9144695b99159ad964e9797 +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:20 +#: 1ac70319723b451d9c8b3252e52b6e79 +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.general:1 +#: ba6992e7084e41a4ae1fb6437f90c395 +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.general:6 +#: 150148bc2a3e43f7b18149bb6897ee01 +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.membership:1 +#: 454540f845e641959058f28badf30ad5 +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.text:1 +#: 289554b113484936916b5ee1ab0fd38e +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.text:6 +#: c4688cf0c33a417e92f5c0627d33378d +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.text:10 +#: 04d50f609e1643f79c50c26c2356c391 +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.voice:1 +#: 7f71cb30e267401b9a2a1ff63f4884ab +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.stage:1 +#: a5f10e0b445a4afea2ac4f0bf2629b7a +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.stage_moderator:1 +#: 5e21d8ef96414ceda6df2f9e5f577da1 +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.advanced:1 +#: 6d2820f27e4e4332a814576db3003b76 +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.update:1 +#: 3cd8edc5bc9945299d62e81b1d2258bb +msgid "Bulk updates this permission object." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.update:3 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.update:3 +#: ffc0d79e5c0e49a5afdaa65646082f76 +#: 6287598599254ef6bf071e4b261f44e5 +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.update:8 +#: 3fd6dda4423a4789884374f9f327e6d0 +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "" + +#: ../../docstring of discord.Permissions.create_instant_invite:1 +#: 0852cfca81494db9998dcb4555562238 +msgid "Returns ``True`` if the user can create instant invites." +msgstr "" + +#: ../../docstring of discord.Permissions.kick_members:1 +#: c79ee2200ed040ff8e3600a1f4bcd286 +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "" + +#: ../../docstring of discord.Permissions.ban_members:1 +#: 0606ce80e2b74dd18f3a06ddfb424905 +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "" + +#: ../../docstring of discord.Permissions.administrator:1 +#: 22117166f3d3400c8a0183d958f2473d +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "" + +#: ../../docstring of discord.Permissions.administrator:3 +#: 923ad41d1a9f4a06882f0589f49a660d +msgid "This also bypasses all channel-specific overrides." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_channels:1 +#: 324066ccebc7437a82fcd56264fd8cc8 +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_channels:3 +#: 12d73ea485d3493a8ded1ccc53e2c504 +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_guild:1 +#: 51e2d1633433474da1f3a494890db872 +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "" + +#: ../../docstring of discord.Permissions.add_reactions:1 +#: fbe183953a1a4ae3bbb2e9b7ee3760b0 +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "" + +#: ../../docstring of discord.Permissions.view_audit_log:1 +#: e82d9686fb914794b400bd4a68b9b71f +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "" + +#: ../../docstring of discord.Permissions.priority_speaker:1 +#: c26c8e4168b64c1b96a4a7543864afda +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "" + +#: ../../docstring of discord.Permissions.stream:1 +#: 1f324a8b58c541f2a1ba2b75de16b11f +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "" + +#: ../../docstring of discord.Permissions.view_channel:1 +#: b47230b37fe246c29733f872037b2627 +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "" + +#: ../../docstring of discord.Permissions.read_messages:1 +#: 236a13b11f97491aaf5c86a271f2a299 +msgid "An alias for :attr:`view_channel`." +msgstr "" + +#: ../../docstring of discord.Permissions.send_messages:1 +#: aeccba9f352f43ff93ba887eadb028ee +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "" + +#: ../../docstring of discord.Permissions.send_tts_messages:1 +#: 27578f091046405f94d22c382db1beeb +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_messages:1 +#: 30ebd7d1308943ae874ed4dd75a44ba8 +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_messages:5 +#: 07e3d2dc854b48da9ed38f4648f6a7bf +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "" + +#: ../../docstring of discord.Permissions.embed_links:1 +#: c0be8484ebc040b98fb0939998361c92 +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "" + +#: ../../docstring of discord.Permissions.attach_files:1 +#: 9c89ebe10d9b4e15b608ebfa25fcada1 +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "" + +#: ../../docstring of discord.Permissions.read_message_history:1 +#: fda35b6690a246aca8136c74f7233cda +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "" + +#: ../../docstring of discord.Permissions.mention_everyone:1 +#: dd01266c445141a097c673b102981c4d +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "" + +#: ../../docstring of discord.Permissions.external_emojis:1 +#: 2651f553500e45a693e270f7c2aeb8c3 +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "" + +#: ../../docstring of discord.Permissions.use_external_emojis:1 +#: 306f18053bce4eb2988a8ddb8c78bf30 +msgid "An alias for :attr:`external_emojis`." +msgstr "" + +#: ../../docstring of discord.Permissions.view_guild_insights:1 +#: 1b698e890134451ab81edcfb2f6fcced +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "" + +#: ../../docstring of discord.Permissions.connect:1 +#: e0ea8ccb80464cd493d1564f68c1dd2b +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "" + +#: ../../docstring of discord.Permissions.speak:1 +#: b6a13ba2d5204a789021424a697cc7aa +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "" + +#: ../../docstring of discord.Permissions.mute_members:1 +#: 84fcdd88475b4c918f4398c3c09b6a00 +msgid "Returns ``True`` if a user can mute other users." +msgstr "" + +#: ../../docstring of discord.Permissions.deafen_members:1 +#: 8c259e01f44245cf8e6e77bcea3f161b +msgid "Returns ``True`` if a user can deafen other users." +msgstr "" + +#: ../../docstring of discord.Permissions.move_members:1 +#: 05ad8c3fb5b545f7b5ca02137af48532 +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "" + +#: ../../docstring of discord.Permissions.use_voice_activation:1 +#: ee7d230c69a64cf6bd2fe7b2832f656a +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "" + +#: ../../docstring of discord.Permissions.change_nickname:1 +#: b317f5c3d4d644858fcb73b0648e2543 +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_nicknames:1 +#: 95d8e51d851943abb648ae889d064fe4 +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_roles:1 +#: 19b7f1d6020a42598e0f34f2792209d2 +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_roles:3 +#: 4c3329b815e14dc9835c6139cc389177 +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_permissions:1 +#: 19fe0acb3fc5444c98b26a21a0d4ae7f +msgid "An alias for :attr:`manage_roles`." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_webhooks:1 +#: 44e7d276317c4e28979d34995fa90864 +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_emojis:1 +#: c92b7007f5414278aec6dfca5c8d73c1 +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_emojis_and_stickers:1 +#: 099d0ab04ca44e2c9ebc7ddab039de05 +msgid "An alias for :attr:`manage_emojis`." +msgstr "" + +#: ../../docstring of discord.Permissions.use_slash_commands:1 +#: daaadff474a3483883ac2174fe2530b1 +msgid "Returns ``True`` if a user can use slash commands." +msgstr "" + +#: ../../docstring of discord.Permissions.use_application_commands:1 +#: cda19158b4e54a53b88bbd3ff38de8c2 +msgid "An alias for :attr:`use_slash_commands`." +msgstr "" + +#: ../../docstring of discord.Permissions.request_to_speak:1 +#: b90362eb52764c09b4466f2299c7aa94 +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_events:1 +#: 45b6e9a800814521ad39ffc6f673c66b +msgid "Returns ``True`` if a user can manage guild events." +msgstr "" + +#: ../../docstring of discord.Permissions.manage_threads:1 +#: a0ee39b0843b41f7a7fc4191722931fb +msgid "Returns ``True`` if a user can manage threads." +msgstr "" + +#: ../../docstring of discord.Permissions.create_public_threads:1 +#: f77953f75e474f6aac2fb2805fce656e +msgid "Returns ``True`` if a user can create public threads." +msgstr "" + +#: ../../docstring of discord.Permissions.create_private_threads:1 +#: 91a19cfe107c44b392607aecac97fe2a +msgid "Returns ``True`` if a user can create private threads." +msgstr "" + +#: ../../docstring of discord.Permissions.external_stickers:1 +#: 8b1a793caef94d5fb14d21b61fc6409b +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "" + +#: ../../docstring of discord.Permissions.use_external_stickers:1 +#: e38fa1b69be84a3c92d9c97b23256e76 +msgid "An alias for :attr:`external_stickers`." +msgstr "" + +#: ../../docstring of discord.Permissions.send_messages_in_threads:1 +#: 2a70a7674d36456a9e0a0c47fd6f07fd +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "" + +#: ../../docstring of discord.Permissions.start_embedded_activities:1 +#: 27967aab408f48ffbcf23e1585a3e71b +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "" + +#: ../../docstring of discord.Permissions.moderate_members:1 +#: 196a16e2d58c44088939738ff7874e0b +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "" + +#: ../../docstring of discord.Permissions.send_voice_messages:1 +#: 21e49f2607d948d1aac14cf0bde7222d +msgid "Returns ``True`` if a member can send voice messages." +msgstr "" + +#: ../../docstring of discord.Permissions.set_voice_channel_status:1 +#: 0d48ab90f0964e5385186ca15971059c +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "" + +#: ../../docstring of discord.Permissions.send_polls:1 +#: bbdd0cb2b0e8488dbfc566e1b0da5aea +msgid "Returns ``True`` if a member can send polls." +msgstr "" + +#: ../../docstring of discord.Permissions.use_external_apps:1 +#: ee9b457141c94c53bc60f022463f0486 +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "" + +#: ../../docstring of discord.Permissions.use_external_apps:4 +#: f0dd8fd11b81466881e15f1055ae10a9 +msgid "This only applies to apps that are also not installed to the guild." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:1 +#: 53d4e7fb59b34e38b6649fc978006797 +msgid "A type that is used to represent a channel specific permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:3 +#: fb3dee78b0cb4d83b9876aab5057b3d4 +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:9 +#: 501c13440b884f20800485507a364281 +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:16 +#: 9381f19b61e549358025726a4d4c9428 +msgid "Checks if two overwrites are equal." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:19 +#: fc1e95f179164adbba323442145566e6 +msgid "Checks if two overwrites are not equal." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite:27 +#: 435efe3f9dd64b5fae801a5ba872e113 +msgid "Set the value of permissions by their name." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.pair:1 +#: 6db28971ce9946a591fa59339d8ac998 +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.pair:4 +#: c2ec090998c145729116ac6d6d9d9c9b +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.from_pair:1 +#: 149b1b1980834c0195ef69cc3bfe4463 +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.from_pair:7 +#: d1d8019940a44dcba4436b47f35715c1 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.is_empty:1 +#: 480a576b68994d99b4eecebe43cef95d +msgid "Checks if the permission overwrite is currently empty." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.is_empty:3 +#: 64192039c64c4b38a7dd83098aac96a4 +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.is_empty:6 +#: e0401be4964b4f78b29ae4a4649c2668 +msgid "Indicates if the overwrite is empty." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.update:1 +#: e574cdd4574f4865a7693c8125f56e49 +msgid "Bulk updates this permission overwrite object." +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.PermissionOverwrite.update:8 +#: ca60f1bcd3784c659f81563a3cb3a2d7 +msgid "A list of key/value pairs to bulk update with." +msgstr "" + +#: ../../api/data_classes.rst:234 +#: 9b867a9572674a3a8c8653b44c9f9b72 +msgid "Application Role Connections" +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:1 +#: 637dd77a8de847aca02cf33f276dd203 +msgid "Represents role connection metadata for a Discord application." +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:6 +#: b02b0ffd4f18485580abb2ca7f45e414 +msgid "The type of metadata value." +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:9 +#: d40010af32404db5ae80b357c268c9ab +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:13 +#: 0a5e30d5b723463f96cc62cf934ffa34 +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:16 +#: 86c86651daab4d2bb56e2515613e0b8a +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:19 +#: b3a47d7fb5be43a5a545e53344b4ee1b +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "" + +#: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:23 +#: 4f3b424badea44d289a8fba4635a8270 +#: 246b61db68854beb9cb72d12dc9cfd40 +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "" diff --git a/docs/build/locales/api/enums.pot b/docs/build/locales/api/enums.pot new file mode 100644 index 0000000000..07bb072fce --- /dev/null +++ b/docs/build/locales/api/enums.pot @@ -0,0 +1,3309 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/enums.rst:7 +#: 62a3a42200714266a982a184b801615b +msgid "Enumerations" +msgstr "" + +#: ../../api/enums.rst:9 +#: 8edd78317af744249156d7fc55d53459 +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "" + +#: ../../api/enums.rst:12 +#: 5bede53965bb438f89620d1184cc4998 +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "" + +#: ../../api/enums.rst:17 +#: 41dd3d7ade864c7fac7f33bdc7997cf5 +msgid "Specifies the input type of an option." +msgstr "" + +#: ../../api/enums.rst:23 +#: c09bf4f35dff41199774467ec1a71d65 +msgid "A slash subcommand." +msgstr "" + +#: ../../api/enums.rst:26 +#: a32c124790b44aaa8f9cc124d791ae6a +msgid "A slash command group." +msgstr "" + +#: ../../api/enums.rst:29 +#: 2893d306dd214f12a1fc100b94446759 +msgid "A string." +msgstr "" + +#: ../../api/enums.rst:32 +#: d5b40b4a9cee43d3b0adba7e86c21fc9 +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "" + +#: ../../api/enums.rst:36 +#: ../../api/enums.rst:59 +#: 70b2bd1e114440079b80fffca89ae1ab +#: dda4596a99714ab38e3ec0b5a2b10fd6 +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "" + +#: ../../api/enums.rst:40 +#: aeb8467bda844397bd89efd7ed2d6e51 +msgid "A boolean." +msgstr "" + +#: ../../api/enums.rst:43 +#: b441f0733b824c1c90e5af72c6428036 +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "" + +#: ../../api/enums.rst:46 +#: c1d9b05304ed4d9782bca5b63910f471 +msgid "A channel from the current guild." +msgstr "" + +#: ../../api/enums.rst:49 +#: 8af7497f3271434a9221371639bf0a20 +msgid "A role from the current guild." +msgstr "" + +#: ../../api/enums.rst:52 +#: 29768171f9034607ac74932b5b671189 +msgid "A mentionable (user or role)." +msgstr "" + +#: ../../api/enums.rst:55 +#: 3678469398f4443d949e846231813f41 +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "" + +#: ../../api/enums.rst:63 +#: 8518d8d0bc574c7bbda674dcb9fc74e4 +msgid "An attachment." +msgstr "" + +#: ../../api/enums.rst:67 +#: 5dc42347281244ac9245a598cee06ef6 +msgid "Specifies the type of channel." +msgstr "" + +#: ../../api/enums.rst:71 +#: 811232ae673c4d43926ab75b4ff53889 +msgid "A text channel." +msgstr "" + +#: ../../api/enums.rst:75 +#: e66f26c0877b46c2a74930543ec5dda3 +msgid "A voice channel." +msgstr "" + +#: ../../api/enums.rst:79 +#: eb457db22b6f4992b255e5f8f3b35cea +msgid "A private text channel. Also called a direct message." +msgstr "" + +#: ../../api/enums.rst:83 +#: 4c89995ca9c04d3e939768d30f72f6b0 +msgid "A private group text channel." +msgstr "" + +#: ../../api/enums.rst:87 +#: 0f8a9c0389de4ff3b66bcf5e58f20346 +msgid "A category channel." +msgstr "" + +#: ../../api/enums.rst:91 +#: ec7bb4b12e9044d7be4521fe4c4dfc5a +msgid "A guild news channel." +msgstr "" + +#: ../../api/enums.rst:95 +#: cfd6ca96420f4b7b8e2f211569d82926 +msgid "A guild stage voice channel." +msgstr "" + +#: ../../api/enums.rst:101 +#: 15e714bf45b64bfba322a1fa4decb9e0 +msgid "A news thread." +msgstr "" + +#: ../../api/enums.rst:107 +#: d873c480bdcd4fe4bc547139c961bc99 +msgid "A public thread." +msgstr "" + +#: ../../api/enums.rst:113 +#: 5b47a4c12c3547c4876c1a68d67d2729 +msgid "A private thread." +msgstr "" + +#: ../../api/enums.rst:119 +#: 7ebdf56610c44fbaa6d9dee200161197 +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "" + +#: ../../api/enums.rst:125 +#: 211b7a19c3ee433db673e226f56f938f +msgid "User can only write in threads, similar functionality to a forum." +msgstr "" + +#: ../../api/enums.rst:131 +#: fc3cd4ddb3b74613b0513faab63616e9 +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "" + +#: ../../api/enums.rst:138 +#: a7a6cd05d7eb4191a78e415784ba36bf +msgid "Checks if two messages are equal." +msgstr "" + +#: ../../api/enums.rst:141 +#: f5630a500dd8482b84bceada63ebaa2a +msgid "Checks if two messages are not equal." +msgstr "" + +#: ../../api/enums.rst:145 +#: af618381e61a4f44a8f1ca183ea3655a +msgid "The default message type. This is the same as regular messages." +msgstr "" + +#: ../../api/enums.rst:148 +#: 0437846f556d4b09a2d83ca98f6b4ee5 +msgid "The system message when a user is added to a group private message or a thread." +msgstr "" + +#: ../../api/enums.rst:152 +#: 495303b8a3cb49fd9dceba3da06944bb +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "" + +#: ../../api/enums.rst:156 +#: 44f702d90f1d4d63a913bc95a83439c3 +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "" + +#: ../../api/enums.rst:160 +#: d89cf744022a484a83f6742bdfcf6f20 +msgid "The system message denoting that a channel's name has been changed." +msgstr "" + +#: ../../api/enums.rst:163 +#: a033722ff74045c58e32708afe0429d1 +msgid "The system message denoting that a channel's icon has been changed." +msgstr "" + +#: ../../api/enums.rst:166 +#: 98b57a613ed3419a8bdf4d5c892266fa +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "" + +#: ../../api/enums.rst:169 +#: b493fbf3a6da442e97d2a46132bce3ec +msgid "The system message denoting that a new member has joined a Guild." +msgstr "" + +#: ../../api/enums.rst:173 +#: f0d57b0b7bd04689b669a24fd805c747 +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "" + +#: ../../api/enums.rst:176 +#: e423cd2290a74b4ab87c81bd0376da8c +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "" + +#: ../../api/enums.rst:180 +#: 721d284c53a94769b51b9d509a335fdb +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "" + +#: ../../api/enums.rst:184 +#: 6ab3d0acd4c3455186ff388965f8cd2a +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "" + +#: ../../api/enums.rst:188 +#: fb77bf0ae82f44f0b0a01b4b84f1f638 +msgid "The system message denoting that an announcement channel has been followed." +msgstr "" + +#: ../../api/enums.rst:193 +#: 7f9a47eb82674f4482ed2a477ba7dea9 +msgid "The system message denoting that a member is streaming in the guild." +msgstr "" + +#: ../../api/enums.rst:198 +#: 18a8ceefd10b4d009b3bf16bc802e1e7 +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "" + +#: ../../api/enums.rst:204 +#: 4db35fd8f97a438ab56a809bf764ddf2 +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "" + +#: ../../api/enums.rst:210 +#: 56ef390d6df84b8e8e8bf1f8ef25b248 +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "" + +#: ../../api/enums.rst:216 +#: 39734c8f19fb49dba5af36e56f055d4f +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "" + +#: ../../api/enums.rst:222 +#: 4e88f0a260624a6f887880b3c2979b5d +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "" + +#: ../../api/enums.rst:230 +#: c658f0e4f08540898166e76907aec5b7 +msgid "The system message denoting that the author is replying to a message." +msgstr "" + +#: ../../api/enums.rst:235 +#: 9204abcbf0d94e83a5038c8b433ff036 +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "" + +#: ../../api/enums.rst:240 +#: 3c0e282e20f74ec6b2a5fd2b8f91dc27 +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "" + +#: ../../api/enums.rst:245 +#: cc2f2d7948e1473aa2ea3650d4c05110 +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "" + +#: ../../api/enums.rst:251 +#: e6c19002d4ea4a579b30e7b3b0e0025e +msgid "The system message denoting that an context menu command was executed." +msgstr "" + +#: ../../api/enums.rst:256 +#: 80e276c807444d5cb17a265fa33fec81 +msgid "The system message denoting an action by automod." +msgstr "" + +#: ../../api/enums.rst:261 +#: ab90d66043534202a3eded21dfc4b98a +msgid "The system message denoting a role-subscription purchase." +msgstr "" + +#: ../../api/enums.rst:267 +#: ca98e7da88294704bcae6d05929c2ce0 +msgid "The system message denoting an interaction premium upsell." +msgstr "" + +#: ../../api/enums.rst:273 +#: 10a242e386334e56b0cbb2bb07eb6b2c +msgid "The system message denoting that a stage event has started." +msgstr "" + +#: ../../api/enums.rst:279 +#: 2d965c77932f419eb56f5ca8ea70ce06 +msgid "The system message denoting that a stage event has ended." +msgstr "" + +#: ../../api/enums.rst:285 +#: 19e883e516d44790a1b4ae8123962c72 +msgid "The system message denoting that a stage event has a new speaker." +msgstr "" + +#: ../../api/enums.rst:291 +#: 82c9e7d6f6444f30b9f2120480f1d261 +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "" + +#: ../../api/enums.rst:297 +#: f5ccefca15ae44df81088ad63aebd697 +msgid "The system message denoting that a stage event has a new topic." +msgstr "" + +#: ../../api/enums.rst:303 +#: e12495e3fdbf4b6ab3c0b33eb06bcaf5 +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "" + +#: ../../api/enums.rst:309 +#: d1b2db02188c4405a8fdc05c5185884c +msgid "Represents Discord User flags." +msgstr "" + +#: ../../api/enums.rst:313 +#: db076302bd274dd891362a95c450ee19 +msgid "The user is a Discord Employee." +msgstr "" + +#: ../../api/enums.rst:316 +#: 751304832a704b3bbb95d0a64761a7b1 +msgid "The user is a Discord Partner." +msgstr "" + +#: ../../api/enums.rst:319 +#: e8f8e65b3c75489e8407576ce7c7877c +msgid "The user is a HypeSquad Events member." +msgstr "" + +#: ../../api/enums.rst:322 +#: 7e3d6737fb6740fc89b66afefdf43bd2 +msgid "The user is a Bug Hunter." +msgstr "" + +#: ../../api/enums.rst:325 +#: f534b2c373a946d99ddefd438a23b652 +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "" + +#: ../../api/enums.rst:328 +#: e309f734cb2f4d45884824ebcc227101 +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "" + +#: ../../api/enums.rst:331 +#: 958daf6b65bc4c6bbf599daf544f20bd +msgid "The user is a HypeSquad Bravery member." +msgstr "" + +#: ../../api/enums.rst:334 +#: e5a0f53d13e141bdb1957dcb2971597a +msgid "The user is a HypeSquad Brilliance member." +msgstr "" + +#: ../../api/enums.rst:337 +#: 3d45427279a54e33865f258b5dad30a5 +msgid "The user is a HypeSquad Balance member." +msgstr "" + +#: ../../api/enums.rst:340 +#: c0270429a6704771b33f183d7875c56c +msgid "The user is an Early Supporter." +msgstr "" + +#: ../../api/enums.rst:343 +#: fc75d8c9c2a643318cefaa8d1da707e0 +msgid "The user is a Team User." +msgstr "" + +#: ../../api/enums.rst:346 +#: d30d781a82a8418db1ed989738bb34c2 +msgid "Relates to partner/verification applications." +msgstr "" + +#: ../../api/enums.rst:349 +#: bb9df3bd7c10469bbcfc6cef8a4d2566 +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "" + +#: ../../api/enums.rst:352 +#: fa1149684fc2412593ecb660ca6b670a +msgid "The user has an unread system message." +msgstr "" + +#: ../../api/enums.rst:355 +#: 725026bcdcf2468fb0fddb9fce267852 +msgid "The user is a Bug Hunter Level 2." +msgstr "" + +#: ../../api/enums.rst:358 +#: 60011fa78ac34e20825ce6de66234250 +msgid "The user was deleted for being underage." +msgstr "" + +#: ../../api/enums.rst:361 +#: 413b980c139b411d9710cf3871f624b6 +msgid "The user is a Verified Bot." +msgstr "" + +#: ../../api/enums.rst:364 +#: f9904f90fedd47a1aeeb230f775f851b +msgid "The user is an Early Verified Bot Developer." +msgstr "" + +#: ../../api/enums.rst:367 +#: 75c7a0e249be4a47b66e0c046af57986 +msgid "The user is a Moderator Programs Alumni." +msgstr "" + +#: ../../api/enums.rst:370 +#: 0ca562896cc7423281a975f5494cd845 +msgid "The bot has set an interactions endpoint url." +msgstr "" + +#: ../../api/enums.rst:373 +#: 2210c3a20a70450a96e94214a3357642 +msgid "The user is disabled for being a spammer." +msgstr "" + +#: ../../api/enums.rst:376 +#: 281d19bf6c19491e9c3a38b138fb2c78 +msgid "The user is an Active Developer." +msgstr "" + +#: ../../api/enums.rst:380 +#: 0b62632dec6147c9aae71cbe50ec3b88 +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "" + +#: ../../api/enums.rst:385 +#: cb5aa857d2e74dbca5ed598bfa4b83a7 +msgid "An unknown activity type. This should generally not happen." +msgstr "" + +#: ../../api/enums.rst:388 +#: 78b9ef2656fa4163a4221e114d6bc0e3 +msgid "A \"Playing\" activity type." +msgstr "" + +#: ../../api/enums.rst:391 +#: 744b4ca84d3b4522ac2e119a7b5c59eb +msgid "A \"Streaming\" activity type." +msgstr "" + +#: ../../api/enums.rst:394 +#: a0cc249c7b2449db995e1f19b310c2cd +msgid "A \"Listening\" activity type." +msgstr "" + +#: ../../api/enums.rst:397 +#: 21ca511d445542c1bbcc579172356e77 +msgid "A \"Watching\" activity type." +msgstr "" + +#: ../../api/enums.rst:400 +#: 7b3fc29cd8e04f94b40453acc74f8d9a +msgid "A custom activity type." +msgstr "" + +#: ../../api/enums.rst:403 +#: 3673101e51264eb4bf6747615b709662 +msgid "A competing activity type." +msgstr "" + +#: ../../api/enums.rst:409 +#: b1832754b0eb4f5384d3a9d69fdf9077 +msgid "Specifies the type of :class:`Interaction`." +msgstr "" + +#: ../../api/enums.rst:415 +#: 4ac9cd54f9324d6ea403f83bc2438983 +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "" + +#: ../../api/enums.rst:418 +#: 98ac7aa9cbff4e658b2c35bf9e4482e9 +msgid "Represents a slash command interaction." +msgstr "" + +#: ../../api/enums.rst:421 +#: 4057e136a5a34be2b63de5112cd66ada +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "" + +#: ../../api/enums.rst:424 +#: 1d288a3a908e4fe78bf568876c54d5ca +msgid "Represents a autocomplete interaction for slash commands." +msgstr "" + +#: ../../api/enums.rst:427 +#: 7b9dd73bb4b443f287ef44bb27a1c8bc +msgid "Represents a modal based interaction." +msgstr "" + +#: ../../api/enums.rst:431 +#: 9e176cc976b64630bec05ad11754bcae +msgid "Specifies the response type for the interaction." +msgstr "" + +#: ../../api/enums.rst:437 +#: fa591cd4599a4f05b1f5e841f1e4baf3 +msgid "Pongs the interaction when given a ping." +msgstr "" + +#: ../../api/enums.rst:439 +#: 4b837e2b0c904c6a979c1f95628cf7a5 +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "" + +#: ../../api/enums.rst:442 +#: 0d614902bed94b34a7fda8cb1d96d7ff +msgid "Respond to the interaction with a message." +msgstr "" + +#: ../../api/enums.rst:444 +#: b7642fbf5dfc40189da0c697a68596a8 +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "" + +#: ../../api/enums.rst:447 +#: 93f602a99b7e4bb38b36cf5514988a2e +msgid "Responds to the interaction with a message at a later time." +msgstr "" + +#: ../../api/enums.rst:449 +#: ../../api/enums.rst:455 +#: e330ae3ca05f42ce920b833974ede206 +#: f707eb8b54664d4b969081dec115130f +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "" + +#: ../../api/enums.rst:452 +#: c29479e9e1bd47d3939deb08f0e65473 +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "" + +#: ../../api/enums.rst:458 +#: 5592dad54ac44dbda11a34bdaf74ade5 +msgid "Responds to the interaction by editing the message." +msgstr "" + +#: ../../api/enums.rst:460 +#: 0fb171764af24d828e91710586137f16 +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "" + +#: ../../api/enums.rst:463 +#: c7f5bd0fccab49b1bc0f5b4efe913222 +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "" + +#: ../../api/enums.rst:465 +#: 3cc9bf7c3c33453d9cfb85a46738649a +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "" + +#: ../../api/enums.rst:468 +#: 1e1ee59416334ee0977d2a76bc53cca6 +msgid "Responds to the interaction by sending a modal dialog." +msgstr "" + +#: ../../api/enums.rst:470 +#: 80c98134ede1446c802b20484960a73b +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "" + +#: ../../api/enums.rst:474 +#: 79880e63219e47d999eaaaf7a536034c +msgid "Represents the component type of a component." +msgstr "" + +#: ../../api/enums.rst:480 +#: d30bdba858fb46e497c5f0c55f193d68 +msgid "Represents the group component which holds different components in a row." +msgstr "" + +#: ../../api/enums.rst:483 +#: 389c912e3d21445aa60707594022cbce +msgid "Represents a button component." +msgstr "" + +#: ../../api/enums.rst:486 +#: ../../api/enums.rst:492 +#: 3e83eaa0d1844924b452bc0453c951e1 +#: 9f02fd0355114b83b9ad4e2923235a6f +msgid "Represents a string select component." +msgstr "" + +#: ../../api/enums.rst:488 +#: cbc6e9d1411d4f8b95e3b81ecaa43458 +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "" + +#: ../../api/enums.rst:495 +#: 1a375b3f3c2149a18218a50153afbd76 +msgid "Represents an input_text component." +msgstr "" + +#: ../../api/enums.rst:498 +#: dd4d7eaeb3344260b86c54e9e2f6d05a +msgid "Represents a user select component." +msgstr "" + +#: ../../api/enums.rst:501 +#: c7939395f31d4630b1b14a652251afd0 +msgid "Represents a role select component." +msgstr "" + +#: ../../api/enums.rst:504 +#: 5efbf6efaa7743768aea8e2b57471242 +msgid "Represents a mentionable select component." +msgstr "" + +#: ../../api/enums.rst:507 +#: 448aec20bf2c45b1b36e0da5a1d006a5 +msgid "Represents a channel select component." +msgstr "" + +#: ../../api/enums.rst:511 +#: d3b5cb245cdb413e91512ec53ec704f4 +msgid "Represents the style of the button component." +msgstr "" + +#: ../../api/enums.rst:517 +#: 5147110dee214022bd8fa7c4fb1d2dc0 +msgid "Represents a blurple button for the primary action." +msgstr "" + +#: ../../api/enums.rst:520 +#: 1cafc57fe172466d9a3292c4ce8f9957 +msgid "Represents a grey button for the secondary action." +msgstr "" + +#: ../../api/enums.rst:523 +#: c46243584e72480695b518b1bc58612a +msgid "Represents a green button for a successful action." +msgstr "" + +#: ../../api/enums.rst:526 +#: cc2f997a688f42a9be197407721214ca +msgid "Represents a red button for a dangerous action." +msgstr "" + +#: ../../api/enums.rst:529 +#: 8b4e7393b35b417c908436be790e01e3 +msgid "Represents a link button." +msgstr "" + +#: ../../api/enums.rst:532 +#: d870b9c8c6fc49bda0956cafbe9d2dc1 +msgid "Represents a premium button." +msgstr "" + +#: ../../api/enums.rst:536 +#: 4a114ecfde0f415aa78c23ae95a03eef +msgid "An alias for :attr:`primary`." +msgstr "" + +#: ../../api/enums.rst:539 +#: ../../api/enums.rst:542 +#: 82535fcd360147e880dca049310bbe6f +#: 8321fe52ffb845e19b1b7d9aed7e6705 +msgid "An alias for :attr:`secondary`." +msgstr "" + +#: ../../api/enums.rst:545 +#: 3ac0aea49e2a45ca9d6688296413400f +msgid "An alias for :attr:`success`." +msgstr "" + +#: ../../api/enums.rst:548 +#: a12dc437275b4f269f536cd4658d804e +msgid "An alias for :attr:`danger`." +msgstr "" + +#: ../../api/enums.rst:551 +#: 8534814e7c964ade81128db570fe9b6e +msgid "An alias for :attr:`link`." +msgstr "" + +#: ../../api/enums.rst:555 +#: 66cbc8468aa84de2b570acda87ac130e +msgid "Represents the style of the input text component." +msgstr "" + +#: ../../api/enums.rst:561 +#: 48cbe43e6fb342169300a8f53803f539 +msgid "Represents a single-line input text field." +msgstr "" + +#: ../../api/enums.rst:564 +#: 77b11ba453194692b73e560ba59cb52a +msgid "Represents a multi-line input text field." +msgstr "" + +#: ../../api/enums.rst:567 +#: 60ab6349de2b49b39d9242a76836ba0e +msgid "An alias for :attr:`short`." +msgstr "" + +#: ../../api/enums.rst:570 +#: ../../api/enums.rst:573 +#: 02075561dbb8468d89db81730ef848ee +#: b1e4514a32ca4b6f8d3540036646f09e +msgid "An alias for :attr:`long`." +msgstr "" + +#: ../../api/enums.rst:577 +#: 14687525b9ad476bb6208d62748cf54b +msgid "Specifies the region a voice server belongs to." +msgstr "" + +#: ../../api/enums.rst:581 +#: 90f499fb4f134385bbfc3af0699539fb +msgid "The Amsterdam region." +msgstr "" + +#: ../../api/enums.rst:584 +#: b776b0a8473c45bd803f3b6a7eb18410 +msgid "The Brazil region." +msgstr "" + +#: ../../api/enums.rst:587 +#: 64cb8a3f20e849b4a9eb427399fbd903 +msgid "The Dubai region." +msgstr "" + +#: ../../api/enums.rst:593 +#: 66e324a8246644efa7fa06a3d95ab7ad +msgid "The EU Central region." +msgstr "" + +#: ../../api/enums.rst:596 +#: 0d0795530dc0414abf31cc814d1737de +msgid "The EU West region." +msgstr "" + +#: ../../api/enums.rst:599 +#: e0dd74b91b684d24bce94aa56f83166b +msgid "The Europe region." +msgstr "" + +#: ../../api/enums.rst:605 +#: a80849d6f4ce4ad383e30e781f322e13 +msgid "The Frankfurt region." +msgstr "" + +#: ../../api/enums.rst:608 +#: f61ccdd7bd194959897b4f24e4749d5e +msgid "The Hong Kong region." +msgstr "" + +#: ../../api/enums.rst:611 +#: efe001fde7084049845f0785b375921c +msgid "The India region." +msgstr "" + +#: ../../api/enums.rst:617 +#: 9862cb3b6d0a4f438ce362db4434fb41 +msgid "The Japan region." +msgstr "" + +#: ../../api/enums.rst:620 +#: 5d5b6e0af5c348f78a25651f1e1b2df4 +msgid "The London region." +msgstr "" + +#: ../../api/enums.rst:623 +#: d63a694b0fcf4b829467b9a98cc27faa +msgid "The Russia region." +msgstr "" + +#: ../../api/enums.rst:626 +#: 792f94d71ab242a5bde4f22c1b97068a +msgid "The Singapore region." +msgstr "" + +#: ../../api/enums.rst:629 +#: a4d6c698bba747428f33df48f401115c +msgid "The South Africa region." +msgstr "" + +#: ../../api/enums.rst:632 +#: c67af79dafd047d9b4d90bd0a4d6cc5d +msgid "The South Korea region." +msgstr "" + +#: ../../api/enums.rst:635 +#: 0c7bc1130add4b35aa955bcd3e55badd +msgid "The Sydney region." +msgstr "" + +#: ../../api/enums.rst:638 +#: ce77bd1b4d53463cadaa224887643131 +msgid "The US Central region." +msgstr "" + +#: ../../api/enums.rst:641 +#: ef82ec5d51974062a0ae97b3eb643d99 +msgid "The US East region." +msgstr "" + +#: ../../api/enums.rst:644 +#: 7b3d68f69b0c40d88d2cb95e84bdac4d +msgid "The US South region." +msgstr "" + +#: ../../api/enums.rst:647 +#: 793045d5ba3043d78311ec589d46636f +msgid "The US West region." +msgstr "" + +#: ../../api/enums.rst:650 +#: edfc1b9463f2411fa8c94042ccfb2138 +msgid "The Amsterdam region for VIP guilds." +msgstr "" + +#: ../../api/enums.rst:653 +#: 8b2691fc24fd496592d208408dec5829 +msgid "The US East region for VIP guilds." +msgstr "" + +#: ../../api/enums.rst:656 +#: 50201921761246bc9caa8e6c22c0a084 +msgid "The US West region for VIP guilds." +msgstr "" + +#: ../../api/enums.rst:660 +#: 3bf69f93ed404d34b15b826ae657bf5c +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "" + +#: ../../api/enums.rst:669 +#: fe1ad00c158c4c00acb1ea118a53928b +msgid "Checks if two verification levels are equal." +msgstr "" + +#: ../../api/enums.rst:672 +#: 46216c7a546b4c91912d7c8e9573c349 +msgid "Checks if two verification levels are not equal." +msgstr "" + +#: ../../api/enums.rst:675 +#: 2e0bb775b6df4ee8a04963d54dfb731f +msgid "Checks if a verification level is higher than another." +msgstr "" + +#: ../../api/enums.rst:678 +#: 7a3f52cd944049e887290b1231a1964a +msgid "Checks if a verification level is lower than another." +msgstr "" + +#: ../../api/enums.rst:681 +#: 620771d877bc4ef6aac111a4148a8bfb +msgid "Checks if a verification level is higher or equal to another." +msgstr "" + +#: ../../api/enums.rst:684 +#: e2b18998a2844ea8b31ae008fdbc6b58 +msgid "Checks if a verification level is lower or equal to another." +msgstr "" + +#: ../../api/enums.rst:688 +#: fb66916bd09d4ce1a73920a30968db22 +msgid "No criteria set." +msgstr "" + +#: ../../api/enums.rst:691 +#: bd647ba2a4774531947bfcf3f9ad1f89 +msgid "Member must have a verified email on their Discord account." +msgstr "" + +#: ../../api/enums.rst:694 +#: 21bbe20b61c84b9b9cb300365c10afa0 +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "" + +#: ../../api/enums.rst:698 +#: 299d3b3c431b4bae9a49515dfb2ddbec +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "" + +#: ../../api/enums.rst:703 +#: 1469ed3a1ca6460fa6c38ed7a7a2d52c +msgid "Member must have a verified phone on their Discord account." +msgstr "" + +#: ../../api/enums.rst:707 +#: ec6aa59281a448b2ac2592ee503e482d +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "" + +#: ../../api/enums.rst:715 +#: dc966a5e848642bea42db5392f380906 +msgid "Checks if two notification levels are equal." +msgstr "" + +#: ../../api/enums.rst:718 +#: 0be81a2959e048d69194270daa8d7163 +msgid "Checks if two notification levels are not equal." +msgstr "" + +#: ../../api/enums.rst:721 +#: fd3e2b62b4e9464381f697a2ce986496 +msgid "Checks if a notification level is higher than another." +msgstr "" + +#: ../../api/enums.rst:724 +#: f105280bb0c943be98437aa0c245d024 +msgid "Checks if a notification level is lower than another." +msgstr "" + +#: ../../api/enums.rst:727 +#: 846701cab8e64caa9e80f34c7bd03a54 +msgid "Checks if a notification level is higher or equal to another." +msgstr "" + +#: ../../api/enums.rst:730 +#: ba3d791aa9ff4ad8870b943ac0e1ae2e +msgid "Checks if a notification level is lower or equal to another." +msgstr "" + +#: ../../api/enums.rst:734 +#: be084b93aa534c83a085d8da3691a961 +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "" + +#: ../../api/enums.rst:737 +#: f92e661d81964e76a2c775a52c6657cb +msgid "Members receive notifications for messages they are mentioned in." +msgstr "" + +#: ../../api/enums.rst:741 +#: 95af5bd00d43462a906e5084192ed897 +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "" + +#: ../../api/enums.rst:751 +#: a306a70455c3408d8c5e838c614c2555 +msgid "Checks if two content filter levels are equal." +msgstr "" + +#: ../../api/enums.rst:754 +#: dfe076afd3cb44fd85205ba4d94cf663 +msgid "Checks if two content filter levels are not equal." +msgstr "" + +#: ../../api/enums.rst:757 +#: 0a9e650407c34c7f9dc886f8c8a775f9 +msgid "Checks if a content filter level is higher than another." +msgstr "" + +#: ../../api/enums.rst:760 +#: ce931389a4cf4b66a5f4b13d9045274d +msgid "Checks if a content filter level is lower than another." +msgstr "" + +#: ../../api/enums.rst:763 +#: dfcdb88cdef544e78bae9e35fa0459bb +msgid "Checks if a content filter level is higher or equal to another." +msgstr "" + +#: ../../api/enums.rst:766 +#: 1792e32dd6e843af9dd1121e4e8bc63d +msgid "Checks if a content filter level is lower or equal to another." +msgstr "" + +#: ../../api/enums.rst:770 +#: c66d2de8b0bd4072942c7a693c3b7ae3 +msgid "The guild does not have the content filter enabled." +msgstr "" + +#: ../../api/enums.rst:773 +#: ef98aa26fcaa4365b198f3e765a07fd6 +msgid "The guild has the content filter enabled for members without a role." +msgstr "" + +#: ../../api/enums.rst:776 +#: 8bc9bb4ad1ea4f1a89ce1889d698ec18 +msgid "The guild has the content filter enabled for every member." +msgstr "" + +#: ../../api/enums.rst:780 +#: f773f9149bb44c4d83e0298ae408fd6a +msgid "Specifies a :class:`Member` 's status." +msgstr "" + +#: ../../api/enums.rst:784 +#: 727979554bd64ac1a0b4393cd7bb5228 +msgid "The member is online." +msgstr "" + +#: ../../api/enums.rst:787 +#: 7b5be27e51204bcdaffd82a57a6de69c +msgid "The member is offline." +msgstr "" + +#: ../../api/enums.rst:790 +#: 74ddceb1cc1a4566ac34fe6a0b1abb54 +msgid "The member is idle." +msgstr "" + +#: ../../api/enums.rst:793 +#: 4490b159c76941dbab94c39b712ccaf2 +msgid "The member is \"Do Not Disturb\"." +msgstr "" + +#: ../../api/enums.rst:796 +#: 64dc5bb4a3954ac9ad8e84ee8959ba78 +msgid "An alias for :attr:`dnd`." +msgstr "" + +#: ../../api/enums.rst:799 +#: 6db87d8dee034d9d8685436fa8a26db0 +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "" + +#: ../../api/enums.rst:804 +#: 5638a65a34fa4c8b90930cd7817a2867 +msgid "The member is streaming." +msgstr "" + +#: ../../api/enums.rst:809 +#: 60612463044b4cde8d8308b993f3063e +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "" + +#: ../../api/enums.rst:814 +#: 632a23827cce4e32a73c4ba7e5176503 +msgid "The guild has updated. Things that trigger this include:" +msgstr "" + +#: ../../api/enums.rst:816 +#: 739c484cff324836b4bbc7e9a4ba5727 +msgid "Changing the guild vanity URL" +msgstr "" + +#: ../../api/enums.rst:817 +#: e2613a32359c47618dd6be48de2d7696 +msgid "Changing the guild invite splash" +msgstr "" + +#: ../../api/enums.rst:818 +#: bd56053367fa4283bb319f326001c04c +msgid "Changing the guild AFK channel or timeout" +msgstr "" + +#: ../../api/enums.rst:819 +#: 9822d25614704b7cb849ddd61ea89034 +msgid "Changing the guild voice server region" +msgstr "" + +#: ../../api/enums.rst:820 +#: 9f5b610f62304c51a1999c420d0b5c31 +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "" + +#: ../../api/enums.rst:821 +#: 8f44ea06843349ef910d0e022ee62ebd +msgid "Changing the guild moderation settings" +msgstr "" + +#: ../../api/enums.rst:822 +#: 2ba541de1193448fa261b50507c699fb +msgid "Changing things related to the guild widget" +msgstr "" + +#: ../../api/enums.rst:824 +#: c890e719787243a5af28be7c6f82f77b +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "" + +#: ../../api/enums.rst:827 +#: ../../api/enums.rst:853 +#: ../../api/enums.rst:872 +#: ../../api/enums.rst:894 +#: ../../api/enums.rst:913 +#: ../../api/enums.rst:929 +#: ../../api/enums.rst:944 +#: ../../api/enums.rst:1003 +#: ../../api/enums.rst:1017 +#: ../../api/enums.rst:1062 +#: ../../api/enums.rst:1082 +#: ../../api/enums.rst:1097 +#: ../../api/enums.rst:1112 +#: ../../api/enums.rst:1136 +#: ../../api/enums.rst:1153 +#: ../../api/enums.rst:1169 +#: ../../api/enums.rst:1182 +#: ../../api/enums.rst:1195 +#: ../../api/enums.rst:1206 +#: ../../api/enums.rst:1217 +#: ../../api/enums.rst:1314 +#: ../../api/enums.rst:1329 +#: ../../api/enums.rst:1350 +#: ../../api/enums.rst:1369 +#: ../../api/enums.rst:1388 +#: ../../api/enums.rst:1407 +#: ../../api/enums.rst:1428 +#: ../../api/enums.rst:1449 +#: ../../api/enums.rst:1470 +#: ../../api/enums.rst:1488 +#: ../../api/enums.rst:1506 +#: ../../api/enums.rst:1524 +#: ../../api/enums.rst:1534 +#: ../../api/enums.rst:1551 +#: ../../api/enums.rst:1567 +#: ../../api/enums.rst:1618 +#: ../../api/enums.rst:1632 +#: bfff5308473d4af998d5e90e81bd9d42 +#: 0776e36908074d45bfacf9e98b402a96 +#: ad53aecba09c4cff97fbe106a8aae4c3 +#: 9a20bd8774814a64b14884977510d1e6 +#: 0619742d7fa140278430c051be11dc1b +#: 69139dd3ef9e48d3b1af81c1e81c39d4 +#: ecd21b91f59c49bdabb7f8d74a287e1e +#: a2803ec37cea445fbe05eee14f7e763a +#: 38aec5e643c249b19b3d7b91ef993e5e +#: 1e5784f497904a1b8ea5e31e43b2a0ad +#: 752fd4d41eb541729116bdab7b643fc9 +#: c506008e4ec74cef851b196b09e69815 +#: 22d68de8370648cf9093a7a877656bf4 +#: f0e7616a583a47d4831939f3e25e8627 +#: fffb0afd84694213a281950c9c2906db +#: bd06e8336d7741e7adfae9936f1bf7fe +#: 5baecd9f1e2143c88378ba7f0e3ffb96 +#: 7499b8f78f014a8d8f9513dd6c5e69e3 +#: 4ad9e4ec222545458f27f958fe5bf43d +#: 0857346d12f54c63ba891ac188e985b3 +#: 95b8db2d9c284969b08a1156718090be +#: 61e23683148c4bf68627e0418b64f5f3 +#: 050b5f3e2f0b4e75b8f233a76bd515dd +#: a9cdc043a5fb4f8db268fa48136a2dfe +#: 96717b9a46964b4692326fe8a96295a2 +#: de04652441c24b81be6d3d268922492e +#: 093c3ea325f44f168aac272a73defeec +#: 6bfd123a5fca4eb0b0ac3ef7104dfac3 +#: a1736cc07b154021a682d4e42420bf9a +#: f1a1175365964973a77e600680c1613b +#: 91b67ae606ac453c9bf64b0b2012bac5 +#: 3411856d93a14776a6aa2dbfe75fdef0 +#: 5226c38d1fd44f3b816c29f729fa90c3 +#: 252bbee44ed14a1f9ddb9a6c43cbda0d +#: bc68c25f397a452f91ce7b919f52007c +#: a6e309f478874004a40055c758f64d0e +#: db4eb198caca4bd08cb1893c95ad57a7 +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "" + +#: ../../api/enums.rst:829 +#: 22e4308bba9c4789ad88e620c6469324 +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr "" + +#: ../../api/enums.rst:830 +#: f3892be329644776b547cf3fa7c32533 +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr "" + +#: ../../api/enums.rst:831 +#: c31a4836714247cc8ae5d1e97f1fa0a1 +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr "" + +#: ../../api/enums.rst:832 +#: b144fcde9e3e42499f4790871baa00c5 +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr "" + +#: ../../api/enums.rst:833 +#: 0d0e5e72f40447838c0a0c80fcdd0d6f +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr "" + +#: ../../api/enums.rst:834 +#: c2be22b8817b42c48e8a71489d583ebe +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr "" + +#: ../../api/enums.rst:835 +#: ../../api/enums.rst:855 +#: ../../api/enums.rst:874 +#: ../../api/enums.rst:896 +#: ../../api/enums.rst:1067 +#: ../../api/enums.rst:1087 +#: ../../api/enums.rst:1102 +#: ../../api/enums.rst:1156 +#: ../../api/enums.rst:1172 +#: ../../api/enums.rst:1185 +#: ../../api/enums.rst:1197 +#: ../../api/enums.rst:1208 +#: ../../api/enums.rst:1219 +#: ../../api/enums.rst:1352 +#: ../../api/enums.rst:1371 +#: ../../api/enums.rst:1390 +#: ../../api/enums.rst:1409 +#: ../../api/enums.rst:1430 +#: ../../api/enums.rst:1451 +#: ../../api/enums.rst:1472 +#: ../../api/enums.rst:1490 +#: ../../api/enums.rst:1508 +#: ../../api/enums.rst:1536 +#: ../../api/enums.rst:1553 +#: ../../api/enums.rst:1569 +#: 895caa8a7a2b40a3be55d2ec1baf44b1 +#: 99cc876d108e4eab8371a7d45c0ea1b9 +#: d5910caed39b4422a0bf2361a6565612 +#: d7fd5443343b4bc88ce6cd8918cdfeab +#: b44ca51adbc64e51b77c441b2878ad83 +#: 1de697d2ea2c4cae9ccab9fb6fc6d38a +#: ac7026819cf84b46ab62b7fc660eec2a +#: ac7b378f7a1046ebab645d5f7d3ff34e +#: c5d4dc545e724ea9989d999fa6992cce +#: fe717eea581f494ebf36019cc19d9964 +#: 558f751460d247b2a058a50b81e48a08 +#: 1394b20d84104b49a743fdfeb699c225 +#: e51f5200cbe140f19c8c3b3e2d75a534 +#: bfe00e359c3f448eace931206c0b2ee9 +#: b5339c2060384a359e7c71febf3ca2ce +#: b5ae5559c92341f9946a0237c88316b8 +#: 70b4a80497dc4c718cba972b132e9059 +#: 580ac06e34cc423d8a0c7804bcfa7dff +#: 515eb479a052419d88d9d9bd1eb338a0 +#: 2f935e45567444cca02d6e556a3e0904 +#: 46d1f8301ff548f1af259ccd664c3f42 +#: c31820d94e12407ba086b701f92569b0 +#: 646a54b16dff41a2b03ed31ac183c0b2 +#: 12c512f9e9f24101b8341757dbbeb0f4 +#: 0c293715eca54347b0f133a596ecfedf +msgid ":attr:`~AuditLogDiff.name`" +msgstr "" + +#: ../../api/enums.rst:836 +#: c02c63c7c88f4fe181dda7376bebc148 +msgid ":attr:`~AuditLogDiff.owner`" +msgstr "" + +#: ../../api/enums.rst:837 +#: 0c026e75724c47d7beb2a2c77e9f7c79 +msgid ":attr:`~AuditLogDiff.splash`" +msgstr "" + +#: ../../api/enums.rst:838 +#: 2e2b9b9568f446af9fc48b3fb53bf57c +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr "" + +#: ../../api/enums.rst:839 +#: eca51cbb07124eafb49aafd57720c935 +msgid ":attr:`~AuditLogDiff.icon`" +msgstr "" + +#: ../../api/enums.rst:840 +#: e88cfaca97164239924deb0947a3bb53 +msgid ":attr:`~AuditLogDiff.banner`" +msgstr "" + +#: ../../api/enums.rst:841 +#: 8f50869b6362417792226758c9cee340 +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr "" + +#: ../../api/enums.rst:845 +#: 902049bae0b942798334fe1b7ca30562 +msgid "A new channel was created." +msgstr "" + +#: ../../api/enums.rst:847 +#: e00bbae1ecc54cd4aa7b2f97761a2857 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "" + +#: ../../api/enums.rst:850 +#: a1df25c5f1984895b983d5275d8f8af5 +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "" + +#: ../../api/enums.rst:856 +#: ../../api/enums.rst:875 +#: ../../api/enums.rst:897 +#: ../../api/enums.rst:918 +#: ../../api/enums.rst:934 +#: ../../api/enums.rst:949 +#: ../../api/enums.rst:1354 +#: ../../api/enums.rst:1373 +#: ../../api/enums.rst:1392 +#: 9ec89df3159c46e287c1d83f1fa8ba27 +#: ff75120af4cd405d9f119936bb32f72d +#: a9329e3bd572430b8360afda3dd26ee0 +#: 998ef1796ea64671a79e87a4227e271c +#: 0ae29b838f1448d8b8f928d6939b92cd +#: 3de7a19ea4524c6bb59edd609646a050 +#: 1eec71ede8394476b9a4dc4ebffa9df6 +#: b61a8e74c58248e4a0d8c0c18806f0d4 +#: 2ee6e5873b53484eb7bd37f41c17a4bb +msgid ":attr:`~AuditLogDiff.type`" +msgstr "" + +#: ../../api/enums.rst:857 +#: ../../api/enums.rst:877 +#: ../../api/enums.rst:898 +#: 648726ce83124608809879a7571168a2 +#: 11cbe518c99642b49c959a2204a2c37a +#: b3e74457949d4229b324163fc858e635 +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr "" + +#: ../../api/enums.rst:861 +#: d3e3191004c34df799b5f5fbe25f013f +msgid "A channel was updated. Things that trigger this include:" +msgstr "" + +#: ../../api/enums.rst:863 +#: 98d0c561278d4e9d8096de31ee31173c +msgid "The channel name or topic was changed" +msgstr "" + +#: ../../api/enums.rst:864 +#: 5bc50a7dc2e240ad8f79a8c4704a3418 +msgid "The channel bitrate was changed" +msgstr "" + +#: ../../api/enums.rst:866 +#: ../../api/enums.rst:904 +#: 8f81efbdafac4745899e4ad861717ecd +#: 5257b72e408a46d4a7b06498d32f7209 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "" + +#: ../../api/enums.rst:869 +#: 48fbbcac84324aeeb2f83e415ad0b051 +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "" + +#: ../../api/enums.rst:876 +#: b9290b43388846c7a46f16bceccfbdbf +msgid ":attr:`~AuditLogDiff.position`" +msgstr "" + +#: ../../api/enums.rst:878 +#: ../../api/enums.rst:1316 +#: ../../api/enums.rst:1331 +#: 67ee76e83c454d32899f6326a4949701 +#: 51da4ef9f1994a6789fb2c54c371a367 +#: 7aeb804efb7d4bb8bd585a9b325278ba +msgid ":attr:`~AuditLogDiff.topic`" +msgstr "" + +#: ../../api/enums.rst:879 +#: 6464625c11634cc199dd526145504a9e +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr "" + +#: ../../api/enums.rst:880 +#: e914c09c71f34c58ab692ba1c54e5750 +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr "" + +#: ../../api/enums.rst:881 +#: d42f4667cecb4ff28a06c06c21882209 +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr "" + +#: ../../api/enums.rst:882 +#: e50b4d7fb0624f398085aa35aef1ce5b +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr "" + +#: ../../api/enums.rst:886 +#: 4bca3568aafc430883f16570fd625acb +msgid "A channel was deleted." +msgstr "" + +#: ../../api/enums.rst:888 +#: 5af5984da736481eae7b9ec37355167b +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "" + +#: ../../api/enums.rst:891 +#: aa14e43f332a43d2a9076ca32feb165e +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "" + +#: ../../api/enums.rst:902 +#: 0a3eeba6a561475bb1093b0e9c574110 +msgid "A channel permission overwrite was created." +msgstr "" + +#: ../../api/enums.rst:907 +#: 10f0d8428fb44ef8b43417b8f03cc667 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "" + +#: ../../api/enums.rst:915 +#: ../../api/enums.rst:931 +#: ../../api/enums.rst:946 +#: b424ed66d8e84fb79fbfe5ed3ed2cb86 +#: 5a13c30cb38b4c0b9d3a2a369009cf4c +#: 70e9189a4a7b4f49ac3a3308fb205f8a +msgid ":attr:`~AuditLogDiff.deny`" +msgstr "" + +#: ../../api/enums.rst:916 +#: ../../api/enums.rst:932 +#: ../../api/enums.rst:947 +#: 4c5c591191e04caca5c233d14a2705a7 +#: dc4242d8e2824db3a5e69e283a111660 +#: c7199b2fdb5742238c2221d7b22c7954 +msgid ":attr:`~AuditLogDiff.allow`" +msgstr "" + +#: ../../api/enums.rst:917 +#: ../../api/enums.rst:933 +#: ../../api/enums.rst:948 +#: 35f09304dc1349a39b5f06c5dcee6b92 +#: 4655625eec82495495f1912345214c5b +#: 1b799e07563746b4a908a2ec9213439b +msgid ":attr:`~AuditLogDiff.id`" +msgstr "" + +#: ../../api/enums.rst:922 +#: d2431e9dfea74688bba2536e6c35b787 +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "" + +#: ../../api/enums.rst:925 +#: ../../api/enums.rst:940 +#: b74dea0f59eb486f98c229b259e001f9 +#: 548a7a8ca0314acf9735eac331d866e9 +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "" + +#: ../../api/enums.rst:938 +#: 80f46495697548b5a7050db9f950fbae +msgid "A channel permission overwrite was deleted." +msgstr "" + +#: ../../api/enums.rst:953 +#: da1fc8cf0b4b4f41a454b0142a8cfdb4 +msgid "A member was kicked." +msgstr "" + +#: ../../api/enums.rst:955 +#: 9462b1de374b4d8696d91df0e11eaf2e +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "" + +#: ../../api/enums.rst:958 +#: ../../api/enums.rst:973 +#: ../../api/enums.rst:982 +#: ../../api/enums.rst:991 +#: 8d80f3e4c17140e9ac2805db8431e4e8 +#: 27a6a127989d4532a61debf08a3fa570 +#: a414b2f116ac46ada7444b1b3e19804c +#: 71e96ce05c754141bdccada47c638e79 +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "" + +#: ../../api/enums.rst:962 +#: a42f6c019433416db0d63e147f403d85 +msgid "A member prune was triggered." +msgstr "" + +#: ../../api/enums.rst:964 +#: 4c83a0acb3cc4f5d9f86ee20117108e6 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "" + +#: ../../api/enums.rst:967 +#: ../../api/enums.rst:1026 +#: ../../api/enums.rst:1229 +#: ../../api/enums.rst:1256 +#: ../../api/enums.rst:1271 +#: 812eb56e424040508ad06db116cc0f17 +#: 96a3ff2630e046b69b446776774304a9 +#: 2dbf8d34537d45518170b5a4c8ffb3cc +#: b77778578eb74355ae650d2fd52036ed +#: 7716d95527c348e5b78e86a177044241 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "" + +#: ../../api/enums.rst:970 +#: 97c74c62f95b40a3a6cbff5163170239 +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "" + +#: ../../api/enums.rst:971 +#: 096f33ff779c4097a1ef75c0e894457e +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "" + +#: ../../api/enums.rst:977 +#: 877a04c39e16466dade6cfadc93f7c27 +msgid "A member was banned." +msgstr "" + +#: ../../api/enums.rst:979 +#: 770451079d8d4b5f8e33b6c52da5f3ff +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "" + +#: ../../api/enums.rst:986 +#: 3b2ae463eb7b4f7a9791c566854c5c1a +msgid "A member was unbanned." +msgstr "" + +#: ../../api/enums.rst:988 +#: 456609aa1df0460dbb3dcd6b5414aca8 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "" + +#: ../../api/enums.rst:995 +#: 9f69f34e9ff743b994009ea40c627614 +msgid "A member has updated. This triggers in the following situations:" +msgstr "" + +#: ../../api/enums.rst:997 +#: a544a120b4ee4844a5309e3925de5b11 +msgid "A nickname was changed" +msgstr "" + +#: ../../api/enums.rst:998 +#: 4633d30e1e5045e2b6c5c1c0695a0636 +msgid "They were server muted or deafened (or it was undone)" +msgstr "" + +#: ../../api/enums.rst:1000 +#: 3685711e4704496c8312ef6113636f20 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "" + +#: ../../api/enums.rst:1005 +#: c510c63833424799981d8707385c2273 +msgid ":attr:`~AuditLogDiff.nick`" +msgstr "" + +#: ../../api/enums.rst:1006 +#: df5ef4a4cc2947b68d3a3009467c3315 +msgid ":attr:`~AuditLogDiff.mute`" +msgstr "" + +#: ../../api/enums.rst:1007 +#: 669b0e98d96f4a4bb1d02efd76cc2f33 +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr "" + +#: ../../api/enums.rst:1011 +#: 3168c0f6dd594f0eaefc02e12dbc54c8 +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "" + +#: ../../api/enums.rst:1014 +#: a57b479bb72143a6b0e1fa6cff760c1a +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "" + +#: ../../api/enums.rst:1019 +#: cb8587e29f82416e87ff25127dc06b2e +msgid ":attr:`~AuditLogDiff.roles`" +msgstr "" + +#: ../../api/enums.rst:1023 +#: c70c7e8ef89345efafdbab17bf609ff9 +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "" + +#: ../../api/enums.rst:1029 +#: 5440bab9f6a64c3fb332fe281170aefd +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "" + +#: ../../api/enums.rst:1030 +#: 797d8b3c02204f6ebfed77b79d469a69 +msgid "``count``: An integer specifying how many members were moved." +msgstr "" + +#: ../../api/enums.rst:1036 +#: b317d4610f7e4869b25a224b1fbdca0b +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "" + +#: ../../api/enums.rst:1039 +#: ../../api/enums.rst:1242 +#: a7df0bd89c504de1bd34eb9aae01ffdd +#: f1c87b2f6b27443a9bfb2f71e47d823b +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "" + +#: ../../api/enums.rst:1042 +#: a37ce51898424e1588bffced6528805d +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "" + +#: ../../api/enums.rst:1048 +#: 767c4131a5a44823a1e7f53894454c9e +msgid "A bot was added to the guild." +msgstr "" + +#: ../../api/enums.rst:1050 +#: aad1bbec2f2a487784929c43e432558a +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "" + +#: ../../api/enums.rst:1057 +#: 113e9849b1e74752a8869a0c1ffd14e4 +msgid "A new role was created." +msgstr "" + +#: ../../api/enums.rst:1059 +#: ../../api/enums.rst:1079 +#: ../../api/enums.rst:1094 +#: 5547887ba3e64a6cadc87783c1bcecf7 +#: 91ed6f1edab04e8aad95cd8d9aa069f7 +#: f5e5f97f23e7451c8914aad7c3391dd4 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "" + +#: ../../api/enums.rst:1064 +#: ../../api/enums.rst:1084 +#: ../../api/enums.rst:1099 +#: 78a55e9bc42241f9a96d7224c5f829b9 +#: c8f52d8ffd564aeeb79100f37e0325a9 +#: c9397379c14f4c23ac15cd0553fafd82 +msgid ":attr:`~AuditLogDiff.colour`" +msgstr "" + +#: ../../api/enums.rst:1065 +#: ../../api/enums.rst:1085 +#: ../../api/enums.rst:1100 +#: eedbba5c376e47df94bda7b4263dad48 +#: 42aa4a1fa28042b6880c172318537e00 +#: 16cea7c03f6f467cb4885cc212ad03ed +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr "" + +#: ../../api/enums.rst:1066 +#: ../../api/enums.rst:1086 +#: ../../api/enums.rst:1101 +#: cae8f831afd84c8f8ec3f34a605bf3a5 +#: a6bebfacdbd34302b9f9d66309f5cdac +#: c3a50507a9ed44eaa961e0cd5cf90b8b +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr "" + +#: ../../api/enums.rst:1068 +#: ../../api/enums.rst:1088 +#: ../../api/enums.rst:1103 +#: 9eb0712d85af4316b0ce621843c8e83a +#: 6291a02bf06e4893b114eb374c0972ea +#: add7cd11dbb04b919e545c8027e3abac +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr "" + +#: ../../api/enums.rst:1072 +#: d9dfda6a35974401a26b2c11d5bbbc7a +msgid "A role was updated. This triggers in the following situations:" +msgstr "" + +#: ../../api/enums.rst:1074 +#: c0be7ff1754a484db3ff044dc08a5819 +msgid "The name has changed" +msgstr "" + +#: ../../api/enums.rst:1075 +#: 6fa2713e239b4564bf5605320b494175 +msgid "The permissions have changed" +msgstr "" + +#: ../../api/enums.rst:1076 +#: 4ff2b1766c94484b96274b722058b292 +msgid "The colour has changed" +msgstr "" + +#: ../../api/enums.rst:1077 +#: 98644645ef474f4396c1f75dc07216c1 +msgid "Its hoist/mentionable state has changed" +msgstr "" + +#: ../../api/enums.rst:1092 +#: 3254c9db3f0e44e79d2d800a84c5e124 +msgid "A role was deleted." +msgstr "" + +#: ../../api/enums.rst:1107 +#: 07b94a8a9e374347b683f0f1830b37d3 +msgid "An invite was created." +msgstr "" + +#: ../../api/enums.rst:1109 +#: ce279e2749bb47529031e1755e0740c2 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "" + +#: ../../api/enums.rst:1114 +#: ../../api/enums.rst:1138 +#: 4b17ff80832c43dc985fef67f54f8867 +#: 63ed30d0cf114ac7897b93dbf0ebf677 +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr "" + +#: ../../api/enums.rst:1115 +#: ../../api/enums.rst:1139 +#: 98082e38b018425aad8bb7cba4329f6b +#: 80061f89311c4b1c840a03cb3d637b8a +msgid ":attr:`~AuditLogDiff.code`" +msgstr "" + +#: ../../api/enums.rst:1116 +#: ../../api/enums.rst:1140 +#: a06a13e2c7fd4ea58ff641ae8758f789 +#: 491537ae15b2481b96f5f897cbc0f594 +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr "" + +#: ../../api/enums.rst:1117 +#: ../../api/enums.rst:1141 +#: 7d631cc9c2c84b1f87e678854919422a +#: a2b61b72f027412aaf6e17de2db74522 +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr "" + +#: ../../api/enums.rst:1118 +#: ../../api/enums.rst:1142 +#: ../../api/enums.rst:1155 +#: ../../api/enums.rst:1171 +#: ../../api/enums.rst:1184 +#: ../../api/enums.rst:1411 +#: ../../api/enums.rst:1432 +#: ../../api/enums.rst:1453 +#: fe4c5c753de54249aa866828f408a565 +#: d0f57a601eda4711a767462d7dcd2f7e +#: 28ea5cd1a0434d598a0aef1d8ed865b9 +#: f6760b3a7eeb420bae78324ec9219b80 +#: a5886d55b844447395a66697a447146e +#: 4237027b541d4783b363e232e7b14c04 +#: 80cd12851d3d4ef3a24a79f9a22518ee +#: 723c64f924f24657939b655291a50d47 +msgid ":attr:`~AuditLogDiff.channel`" +msgstr "" + +#: ../../api/enums.rst:1119 +#: ../../api/enums.rst:1143 +#: f0cb2c7e0fd845bf97ab419451436a0d +#: 58673fccfc5e44d693f2c5a9b836cfd6 +msgid ":attr:`~AuditLogDiff.uses`" +msgstr "" + +#: ../../api/enums.rst:1120 +#: ../../api/enums.rst:1144 +#: ed096900498d4549bfcca4bfce2acfcf +#: 9c22d47dc70d4bf6b8eb85c93024ecea +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr "" + +#: ../../api/enums.rst:1124 +#: 6fba5968ea2140edaf5c6920b4177d38 +msgid "An invite was updated." +msgstr "" + +#: ../../api/enums.rst:1126 +#: c0adb6372c474dd9a6fa1b79ababb781 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "" + +#: ../../api/enums.rst:1131 +#: 89c1b80cc1114e8a89ba6aa80e3b635a +msgid "An invite was deleted." +msgstr "" + +#: ../../api/enums.rst:1133 +#: 951939c17ece4b73a544877c61858520 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "" + +#: ../../api/enums.rst:1148 +#: d8d5352632bd48d381951430129bba1d +msgid "A webhook was created." +msgstr "" + +#: ../../api/enums.rst:1150 +#: ../../api/enums.rst:1166 +#: ../../api/enums.rst:1179 +#: 2fe79b01b896449f8a2711781524a8df +#: ef972dbe7ec941a5907d624c86a390d6 +#: 59d99fea521c4d5f9ce1c97173c5a522 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "" + +#: ../../api/enums.rst:1157 +#: ../../api/enums.rst:1186 +#: 4cd9b18b6fd844f084981705eb37900e +#: 0bdfb34cd2b849d0a7293c9a911f4adf +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr "" + +#: ../../api/enums.rst:1161 +#: 41467b9018c348b4ada46a61a597aae0 +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "" + +#: ../../api/enums.rst:1163 +#: 7fdd2431c3c246bc83d907abb08f3801 +msgid "The webhook name changed" +msgstr "" + +#: ../../api/enums.rst:1164 +#: b0d8e438c965430ab7887a917e0e8e59 +msgid "The webhook channel changed" +msgstr "" + +#: ../../api/enums.rst:1173 +#: db08795bf6dc4cdf875deacb581bf66d +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr "" + +#: ../../api/enums.rst:1177 +#: 53f84f6d911b427a82d7422c010c7be6 +msgid "A webhook was deleted." +msgstr "" + +#: ../../api/enums.rst:1190 +#: e7175cc208c84d12957322bfb535b34b +msgid "An emoji was created." +msgstr "" + +#: ../../api/enums.rst:1192 +#: ../../api/enums.rst:1203 +#: 41aeb9dc3c5840aeb56f92ec751f6cd0 +#: df5de1fd8daa4ce2a481835fc9ae71f4 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "" + +#: ../../api/enums.rst:1201 +#: 68f03695f66b4169a03ed9c1dc80389f +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "" + +#: ../../api/enums.rst:1212 +#: 48163ca0ef4c45ae844e45109240ea51 +msgid "An emoji was deleted." +msgstr "" + +#: ../../api/enums.rst:1214 +#: 6c4676bf1a414f30a39f7196f7d82d10 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "" + +#: ../../api/enums.rst:1223 +#: 00ed260437894ceca3ae37e9a173fe0d +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "" + +#: ../../api/enums.rst:1226 +#: 8982961c175341f9a00e1d4196d2528a +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "" + +#: ../../api/enums.rst:1232 +#: ../../api/enums.rst:1245 +#: 4468836a846542d6a6df219845f7c8c0 +#: 92a746616613438f9e44ef14f58c45f6 +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "" + +#: ../../api/enums.rst:1233 +#: 0465bcc39989438fbc4fc946201f3198 +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "" + +#: ../../api/enums.rst:1237 +#: b666af6168ac4da4925c44e8955fd829 +msgid "Messages were bulk deleted by a moderator." +msgstr "" + +#: ../../api/enums.rst:1239 +#: b496e7abbf6641c6aa0ecb2f408fa88d +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "" + +#: ../../api/enums.rst:1251 +#: 26b1fef40156492aade7797dec762c5b +msgid "A message was pinned in a channel." +msgstr "" + +#: ../../api/enums.rst:1253 +#: d1e5158c3f894e9098ce7240dda29673 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "" + +#: ../../api/enums.rst:1259 +#: 33b6b5d83e1b460da4ba77c314d523a0 +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "" + +#: ../../api/enums.rst:1260 +#: b02423c690af4a9fb690657d4b07c8e5 +msgid "``message_id``: the ID of the message which was pinned." +msgstr "" + +#: ../../api/enums.rst:1266 +#: 044f2e7645914a0ba5e4145600a04267 +msgid "A message was unpinned in a channel." +msgstr "" + +#: ../../api/enums.rst:1268 +#: 9133756a00814e1591bec12ddd56edb6 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "" + +#: ../../api/enums.rst:1274 +#: 88df13e8f17342db8d4441d72f234b2a +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "" + +#: ../../api/enums.rst:1275 +#: b626f07690e84a63af8a2164b849883c +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "" + +#: ../../api/enums.rst:1281 +#: 3dd421c8d563469a97e25a3e6ddea1e8 +msgid "A guild integration was created." +msgstr "" + +#: ../../api/enums.rst:1283 +#: 28a61562db5c42e58719d9abdd270252 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "" + +#: ../../api/enums.rst:1290 +#: 760589bb3a7d45058bd7bef6a304f95d +msgid "A guild integration was updated." +msgstr "" + +#: ../../api/enums.rst:1292 +#: cc4ffb3112c04683842b7de2775fb45d +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "" + +#: ../../api/enums.rst:1299 +#: 933106178e5547948aa91bdcbd78433d +msgid "A guild integration was deleted." +msgstr "" + +#: ../../api/enums.rst:1301 +#: f5bd9a45dda249209e96a6ee8751ca52 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "" + +#: ../../api/enums.rst:1308 +#: 5f8e9f5c32bf4508b5f303a3410265aa +msgid "A stage instance was started." +msgstr "" + +#: ../../api/enums.rst:1310 +#: c2e9a68539184e2fa02ef00208b3a2aa +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "" + +#: ../../api/enums.rst:1317 +#: ../../api/enums.rst:1332 +#: ../../api/enums.rst:1412 +#: ../../api/enums.rst:1433 +#: ../../api/enums.rst:1454 +#: f8fdb84c50e44daeb4c36d389b641c96 +#: d65c3aecb6c0489696f90eadd54ecddf +#: 44e35106f7094f5fb9455ee772ec0ab6 +#: fad91e851d004a6b90a25284db67decf +#: 625caa87aa24485fb1397616cf577a7a +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr "" + +#: ../../api/enums.rst:1323 +#: 39f42f6186ef44da90259d27f7714aaa +msgid "A stage instance was updated." +msgstr "" + +#: ../../api/enums.rst:1325 +#: 5f94e6a27480458483dd65b0a69b1037 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "" + +#: ../../api/enums.rst:1338 +#: 68be42754dcf431aa9cbbc788139632b +msgid "A stage instance was ended." +msgstr "" + +#: ../../api/enums.rst:1344 +#: b272d864a7ce4045bafbee2d91846c0d +msgid "A sticker was created." +msgstr "" + +#: ../../api/enums.rst:1346 +#: ../../api/enums.rst:1365 +#: ../../api/enums.rst:1384 +#: a544a30d24fe44ce9cbd11c4d6bf9f7c +#: 83e568d602594a06a3755e2645cea0e5 +#: 3d62e77b4351433b96277edb798f3ce3 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "" + +#: ../../api/enums.rst:1353 +#: ../../api/enums.rst:1372 +#: ../../api/enums.rst:1391 +#: 583a543779cf4d9c86a08d861082267b +#: 7d2c2dae92fa4be7bcd52331157da5bb +#: 2c0f60d87b514b59b8c45d1eb06bf0dd +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr "" + +#: ../../api/enums.rst:1355 +#: ../../api/enums.rst:1374 +#: ../../api/enums.rst:1393 +#: 98d494cb41e24671a60a79da9eafe995 +#: 591225f4c32c4c6cb4296ef99a4a5aea +#: 123dd92166354b2782efe70594d4c669 +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr "" + +#: ../../api/enums.rst:1356 +#: ../../api/enums.rst:1375 +#: ../../api/enums.rst:1394 +#: ../../api/enums.rst:1410 +#: ../../api/enums.rst:1431 +#: ../../api/enums.rst:1452 +#: 799a4b9a391c4475baa04647431d2cf1 +#: be345a6986ef4009a3e94c8dcab51547 +#: 7d0a742e6503449abe9e681184246edf +#: 1c84003999434ea1b83339033d6f1b08 +#: 0e3cd3da365646e3a19d92b79ab09390 +#: efb8bf105929454c942dbc678084c415 +msgid ":attr:`~AuditLogDiff.description`" +msgstr "" + +#: ../../api/enums.rst:1357 +#: ../../api/enums.rst:1376 +#: ../../api/enums.rst:1395 +#: 2364c53b67874e0bb8ef85cc03081b1e +#: 91fe394c81e54010909f486a0a62ccda +#: e621569837954f27972fc94f56f0b1bb +msgid ":attr:`~AuditLogDiff.available`" +msgstr "" + +#: ../../api/enums.rst:1363 +#: 899d08deac6348098bd7c041fbf23728 +msgid "A sticker was updated." +msgstr "" + +#: ../../api/enums.rst:1382 +#: f9aabd9368034d05978e3ee12f1155fc +msgid "A sticker was deleted." +msgstr "" + +#: ../../api/enums.rst:1401 +#: 38576243ba11499c8f6670a8e071b23b +msgid "A scheduled event was created." +msgstr "" + +#: ../../api/enums.rst:1403 +#: ../../api/enums.rst:1424 +#: ../../api/enums.rst:1445 +#: af920a7bbbc94e369a1d93f7a1cc290a +#: 5a0b011e635a4d84895b73b59e7641c9 +#: 3a98586e07cd4bd4b61d000b98c58dec +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "" + +#: ../../api/enums.rst:1413 +#: ../../api/enums.rst:1434 +#: ../../api/enums.rst:1455 +#: 3ce8b3fb8cdb40feb984d3851b53ed2d +#: 4e176938b5ab445290fa6b9fe22d0261 +#: a42a905118e545359543f03054ca8874 +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr "" + +#: ../../api/enums.rst:1414 +#: ../../api/enums.rst:1435 +#: ../../api/enums.rst:1456 +#: e59ba5034b72405cba2bd082ef739063 +#: c47fb618a6a947ec9ff4a6875bf364ae +#: b6a63604628744a3bc3aa26a49390e7f +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr "" + +#: ../../api/enums.rst:1415 +#: ../../api/enums.rst:1436 +#: ../../api/enums.rst:1457 +#: 9d33cef93ba04aaeaa2ad8cae3d8dc49 +#: b89408ceb4084309b42b7239e9feb62b +#: 0c99d4fce1d04a07812e647b68078da6 +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr "" + +#: ../../api/enums.rst:1416 +#: ../../api/enums.rst:1437 +#: ../../api/enums.rst:1458 +#: 0e093f4fc20c4d4c93052a0e73f2c90c +#: 6a7f6324a52842f78660d3d570b3474f +#: 28f6a91e32b84ed0a6993a51d9b36113 +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr "" + +#: ../../api/enums.rst:1422 +#: 2252dcfbdddc4518ba9f0199a082b519 +msgid "A scheduled event was updated." +msgstr "" + +#: ../../api/enums.rst:1443 +#: bb429c2196f24695b2d8d9eb0078ecd6 +msgid "A scheduled event was deleted." +msgstr "" + +#: ../../api/enums.rst:1464 +#: cceba1207c31456faba4376926117457 +msgid "A thread was created." +msgstr "" + +#: ../../api/enums.rst:1466 +#: afb06852a1554bf69f47285f8ffc16d4 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "" + +#: ../../api/enums.rst:1473 +#: ../../api/enums.rst:1491 +#: ../../api/enums.rst:1509 +#: 043230d39cfa4461a1c9f34486530bfe +#: 912ddcb3355a458d90aeab0137082161 +#: 5e10df6626994f96aa8ca205bb584fdf +msgid ":attr:`~AuditLogDiff.archived`" +msgstr "" + +#: ../../api/enums.rst:1474 +#: ../../api/enums.rst:1492 +#: ../../api/enums.rst:1510 +#: c83aa80e1c8642d6bfa6257faf79c176 +#: 85bc413b27d047e89aec8a40c120b255 +#: e862a1e81d244239be82de48fc3618c1 +msgid ":attr:`~AuditLogDiff.locked`" +msgstr "" + +#: ../../api/enums.rst:1475 +#: ../../api/enums.rst:1493 +#: ../../api/enums.rst:1511 +#: 0d034477efc24673bc7165634eec50bc +#: 81ec3efdb28a4f1da2a70783422b8b6e +#: 6ee5745a5889407f923396b63d2c0be9 +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr "" + +#: ../../api/enums.rst:1476 +#: ../../api/enums.rst:1494 +#: ../../api/enums.rst:1512 +#: adce5da724a64308a735139135250eb8 +#: 4f086715273847ed83469dd67b4c9823 +#: b78b252d467f4092846c5159c58b890b +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr "" + +#: ../../api/enums.rst:1482 +#: df6fa3e3ec454818b8d9a17d68135162 +msgid "A thread was updated." +msgstr "" + +#: ../../api/enums.rst:1484 +#: 43b8091416ca4f4987c31bc8136e00f5 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "" + +#: ../../api/enums.rst:1500 +#: 1ac5abed8f7042188c6f9a597b4d9e1f +msgid "A thread was deleted." +msgstr "" + +#: ../../api/enums.rst:1502 +#: 438ec881b324479aad7b59bb720a7b9c +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "" + +#: ../../api/enums.rst:1518 +#: 2bfad9ddfb214fa4a9ca9516c683488c +msgid "An application command's permissions were updated." +msgstr "" + +#: ../../api/enums.rst:1520 +#: e7552f8804b04c728f78efa08726afe8 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "" + +#: ../../api/enums.rst:1526 +#: 78afc906ed3c4751996fd204584c1948 +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr "" + +#: ../../api/enums.rst:1532 +#: df674749995940d79c7bd5cfb222a814 +msgid "A guild auto moderation rule was created." +msgstr "" + +#: ../../api/enums.rst:1537 +#: ../../api/enums.rst:1554 +#: ../../api/enums.rst:1570 +#: 31b47099c3d143e38933e93b4bed7600 +#: c0e72ba6aeee400ba6b6be2c8179c441 +#: 1a6da37f97714504b63b3cc67cd287dd +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr "" + +#: ../../api/enums.rst:1538 +#: ../../api/enums.rst:1555 +#: ../../api/enums.rst:1571 +#: e55b2c534b8a48b28c7486027a472d80 +#: 96f0dbd43fab42cd8da1b295291534a8 +#: a29d09b8d1a54079b17bf108895a1d2c +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr "" + +#: ../../api/enums.rst:1539 +#: ../../api/enums.rst:1572 +#: e4de7bbff1904eb083376272e84eebd8 +#: e6e0f32618fe463999317e89c13b2b4c +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr "" + +#: ../../api/enums.rst:1540 +#: ../../api/enums.rst:1556 +#: ../../api/enums.rst:1573 +#: 53ff474414c545e0877c9dcfa81b07e9 +#: c1d3188e8fff44d683c45799cc96404b +#: f158418a61d24685822ad2d4026e7fb9 +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr "" + +#: ../../api/enums.rst:1541 +#: ../../api/enums.rst:1557 +#: ../../api/enums.rst:1574 +#: 60f92a70f105440b83650e54eeb14221 +#: 75430aa557ed4c2a87460a3fadad5137 +#: b792aaf740e045babb81c2f58ab9407a +msgid ":attr:`~AuditLogDiff.actions`" +msgstr "" + +#: ../../api/enums.rst:1542 +#: ../../api/enums.rst:1558 +#: ../../api/enums.rst:1575 +#: c38f20feb116471888fe077289ce8040 +#: 8a6a24983308476d8bb356863b85873f +#: a3b6f535700543959d3bb54fb078e015 +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr "" + +#: ../../api/enums.rst:1543 +#: ../../api/enums.rst:1559 +#: ../../api/enums.rst:1576 +#: 6db5bcd67f51475aacbe4e00cfd33b12 +#: 70b8c754ddd74892ac549fe3d22f8772 +#: d0fcfcce917e4cdba1501e04cd870554 +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr "" + +#: ../../api/enums.rst:1549 +#: 08714b4c79eb4a06bd4bad4c53f201af +msgid "A guild auto moderation rule was updated." +msgstr "" + +#: ../../api/enums.rst:1565 +#: b6818219409d4e6aacbe23037c32b8ac +msgid "A guild auto moderation rule was deleted." +msgstr "" + +#: ../../api/enums.rst:1582 +#: 9c85ec4f6e2f48cdaa7c1697b08dbd12 +msgid "A message was blocked by auto moderation." +msgstr "" + +#: ../../api/enums.rst:1588 +#: 20649608cd1c49eb8887ce7a5a1064c3 +msgid "A message was flagged by auto moderation." +msgstr "" + +#: ../../api/enums.rst:1594 +#: a271ec7a81804ceaa6c9e8de7f8c16ac +msgid "A member was timed out by auto moderation." +msgstr "" + +#: ../../api/enums.rst:1600 +#: db5791aff5df4a76b6dd46f17ba8eb10 +msgid "A creator monetization request was created." +msgstr "" + +#: ../../api/enums.rst:1606 +#: 29b4fe1bf2594cd6923b822ddb23f607 +msgid "The creator monetization terms were accepted." +msgstr "" + +#: ../../api/enums.rst:1612 +#: 6d784c3658104e46b3553fa88209e336 +msgid "A voice channel status was updated." +msgstr "" + +#: ../../api/enums.rst:1614 +#: ../../api/enums.rst:1628 +#: d09aa244691540dbaeff35ae7f802cd6 +#: 21d7aa25fa2449bdbc086189b5743a39 +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "" + +#: ../../api/enums.rst:1620 +#: ../../api/enums.rst:1634 +#: 9e02b19e51fd49449aacc3c074f5918a +#: 73946b20ffa0408d809d244e405077f2 +msgid ":attr:`~AuditLogDiff.status`" +msgstr "" + +#: ../../api/enums.rst:1626 +#: d1f055c436d14c188223461f9ca0cb1f +msgid "A voice channel status was deleted." +msgstr "" + +#: ../../api/enums.rst:1641 +#: 4b5b16167df54688914416bf0caf7627 +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "" + +#: ../../api/enums.rst:1643 +#: 9dbab0a232604abd8953a7df6a0bdf70 +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "" + +#: ../../api/enums.rst:1647 +#: f06b452c09974142b467507b70205eab +msgid "The action is the creation of something." +msgstr "" + +#: ../../api/enums.rst:1651 +#: 7dd989a90a0e43eca243d490ffef3bff +msgid "The action is the deletion of something." +msgstr "" + +#: ../../api/enums.rst:1655 +#: 183aa68fd5254ee7a6db373fb9097160 +msgid "The action is the update of something." +msgstr "" + +#: ../../api/enums.rst:1659 +#: 6a3f9302095245598ef3c8f0ffd44f83 +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "" + +#: ../../api/enums.rst:1665 +#: f99b7db7002a426498d6216ff366a87f +msgid "Represents an invited member." +msgstr "" + +#: ../../api/enums.rst:1669 +#: 5932ead93d9b4001a809e94b536efbaf +msgid "Represents a member currently in the team." +msgstr "" + +#: ../../api/enums.rst:1673 +#: d78900c618414d258b8bf82e4c53d0ce +msgid "Represents the type of webhook that can be received." +msgstr "" + +#: ../../api/enums.rst:1679 +#: 45607f9417c8476bbe61af59ae2145bb +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "" + +#: ../../api/enums.rst:1683 +#: 92040f62183548ba9f04a9c654fb5b9f +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "" + +#: ../../api/enums.rst:1687 +#: edd45f91b353433baa215c38fb8cfcfe +msgid "Represents a webhook that is used for interactions or applications." +msgstr "" + +#: ../../api/enums.rst:1693 +#: b9a957369e784999aa4db4b99d37e718 +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "" + +#: ../../api/enums.rst:1696 +#: e3e3956bce32458eab440f079ac72be1 +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "" + +#: ../../api/enums.rst:1702 +#: dde2cba259b942be9d7daa7f75050e95 +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "" + +#: ../../api/enums.rst:1707 +#: 8f56b4a6ec50439d8486352d8f2ec42c +msgid "This will kick the user when their subscription is finished." +msgstr "" + +#: ../../api/enums.rst:1711 +#: 110f5f127cf34700aebef11bd948132d +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "" + +#: ../../api/enums.rst:1715 +#: 95430a94d7b947f3a821f07b70aab0c5 +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "" + +#: ../../api/enums.rst:1719 +#: 58fcc73eebea461890325809557e6dc8 +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "" + +#: ../../api/enums.rst:1723 +#: d96b0ce740304a21a5d1db1f45051d0c +msgid "An alias for :attr:`grey`." +msgstr "" + +#: ../../api/enums.rst:1726 +#: 01c0705a0c01418ba8c2bee502a423b7 +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "" + +#: ../../api/enums.rst:1730 +#: acdf3d58f3ac468592d6eb672e7927ab +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "" + +#: ../../api/enums.rst:1734 +#: 63d1d5cafeb745c1a8da433c1c130535 +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "" + +#: ../../api/enums.rst:1739 +#: ae3f995775e245e5abf45bc2dda7078c +msgid "Represents the type of sticker." +msgstr "" + +#: ../../api/enums.rst:1745 +#: 151fd406272c490e93b3cf88e7ab8974 +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "" + +#: ../../api/enums.rst:1749 +#: 39793037eae8422ba9536d90e842bb02 +msgid "Represents a custom sticker created in a guild." +msgstr "" + +#: ../../api/enums.rst:1753 +#: b05e06d5a5354367b3b7a284ac12d311 +msgid "Represents the type of sticker images." +msgstr "" + +#: ../../api/enums.rst:1759 +#: 4e9c50adfad0429eacfe68de8c0581d6 +msgid "Represents a sticker with a png image." +msgstr "" + +#: ../../api/enums.rst:1763 +#: e8bfe207df5b45708af4bbd905129a8b +msgid "Represents a sticker with an apng image." +msgstr "" + +#: ../../api/enums.rst:1767 +#: b0fde2a0da464265ab504c4c9bef1f2a +msgid "Represents a sticker with a lottie image." +msgstr "" + +#: ../../api/enums.rst:1771 +#: 1381383432f44e6eb5368c0835da0f62 +msgid "Represents a sticker with a gif image." +msgstr "" + +#: ../../api/enums.rst:1777 +#: 8e5bfa0150ba4362936661ad4d6a554f +msgid "Represents the invite type for voice channel invites." +msgstr "" + +#: ../../api/enums.rst:1783 +#: c7f7db69ae9f4aac9e422022c828aa9b +msgid "The invite doesn't target anyone or anything." +msgstr "" + +#: ../../api/enums.rst:1787 +#: 99696cffc0224f118163d8732e9a10d6 +msgid "A stream invite that targets a user." +msgstr "" + +#: ../../api/enums.rst:1791 +#: 4721dd8e936842c5bbd1a61a15097822 +msgid "A invite that targets an embedded application." +msgstr "" + +#: ../../api/enums.rst:1793 +#: 9b51feef851e411aabb0c0038cd3b750 +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "" + +#: ../../api/enums.rst:1797 +#: dc0bb1003ef04faaa4b36bd79dd3badc +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "" + +#: ../../api/enums.rst:1803 +#: 088bf995fa014f37a03bf9c347e018c7 +msgid "Represents auto camera video quality." +msgstr "" + +#: ../../api/enums.rst:1807 +#: f5c93fe91c704114af9cb34d427c1921 +msgid "Represents full camera video quality." +msgstr "" + +#: ../../api/enums.rst:1811 +#: 965f3cd4c033475cb1cc38b821f8bded +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "" + +#: ../../api/enums.rst:1819 +#: 8fca712babea4c3a9a70f16a55863fad +msgid "The stage instance can only be joined by members of the guild." +msgstr "" + +#: ../../api/enums.rst:1823 +#: eb7b9565987841f0b48a3db792db276a +msgid "Alias for :attr:`.closed`" +msgstr "" + +#: ../../api/enums.rst:1827 +#: d5c29b81b2c14cc18c675c80d475f6a1 +msgid "Represents the NSFW level of a guild." +msgstr "" + +#: ../../api/enums.rst:1835 +#: 12bcaa8cfcb842c5a148f65f193cc74f +msgid "Checks if two NSFW levels are equal." +msgstr "" + +#: ../../api/enums.rst:1838 +#: 654b4dfd63874e9f819b003f72cf07b2 +msgid "Checks if two NSFW levels are not equal." +msgstr "" + +#: ../../api/enums.rst:1841 +#: f7c2e3b237eb4ce0a21fefe5b1189439 +msgid "Checks if a NSFW level is higher than another." +msgstr "" + +#: ../../api/enums.rst:1844 +#: 2305a4e94a2f4497bd17faa6e1171158 +msgid "Checks if a NSFW level is lower than another." +msgstr "" + +#: ../../api/enums.rst:1847 +#: d63e8c2fcee54c94a148283479fcdaba +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "" + +#: ../../api/enums.rst:1850 +#: 0bdeecdc326a477f99e3d20b23060fbd +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "" + +#: ../../api/enums.rst:1854 +#: 73f672f9e2dc41f3868c069d8f016e01 +msgid "The guild has not been categorised yet." +msgstr "" + +#: ../../api/enums.rst:1858 +#: 281c15a151fb4dcb95ea4c02e970ede6 +msgid "The guild contains NSFW content." +msgstr "" + +#: ../../api/enums.rst:1862 +#: f4359419ec5941e8b5e91c4ef5403f4a +msgid "The guild does not contain any NSFW content." +msgstr "" + +#: ../../api/enums.rst:1866 +#: 03593a6c2994467b9ed47bf3876b3622 +msgid "The guild may contain NSFW content." +msgstr "" + +#: ../../api/enums.rst:1870 +#: 1702f291fcb34353a6ab9d1d950767f0 +msgid "Represents an embedded activity application." +msgstr "" + +#: ../../api/enums.rst:1872 +#: e09b1261ff9e4aed838e56dc0f2d0ba1 +msgid "Some might be boost-only or gated." +msgstr "" + +#: ../../api/enums.rst:1876 +#: 51a321ee62d54d98a9eccf81b593ba9d +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "" + +#: ../../api/enums.rst:1878 +#: e421667f43d645a19bf6e4f2ec7619d3 +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "" + +#: ../../api/enums.rst:1884 +#: 8634ae2fdeae4337b6d96d3695dcfd5b +msgid "Represents the embedded application Ask Away." +msgstr "" + +#: ../../api/enums.rst:1890 +#: 4d3efac29bec4fea95eb83fb78c5e715 +msgid "Represents the embedded application Awkword." +msgstr "" + +#: ../../api/enums.rst:1894 +#: ../../api/enums.rst:1902 +#: ../../api/enums.rst:1982 +#: ../../api/enums.rst:1990 +#: ../../api/enums.rst:1998 +#: ../../api/enums.rst:2086 +#: ../../api/enums.rst:2106 +#: ../../api/enums.rst:2114 +#: 46a7b3bd09264237b2c107acc73ecd72 +#: 26a17bd0648f42319205d7e93d492172 +#: a79b808e86594cdb8093ee9de1e8d5ec +#: 9db4622ff7d24f809e4ebf3a64cd2d2d +#: 5d37fd74de88463abc545e8a9bc6c324 +#: 88f0d371b1894498954ed6863c819b42 +#: 6f540ae1a6bc40778c30e5b6ed6c1ebd +#: 7e84904cbf23461b85b39425620e25ed +msgid "This activity has been removed." +msgstr "" + +#: ../../api/enums.rst:1898 +#: 7df3a9c26b4f4fac8b39048deb5657dc +msgid "Development version of :attr:`.awkword`." +msgstr "" + +#: ../../api/enums.rst:1906 +#: abbce992b4e24550996b4cd9cbf4eb60 +msgid "Represents the embedded application Bash Out." +msgstr "" + +#: ../../api/enums.rst:1912 +#: 262e49924cc14a02865aa50c57045b60 +msgid "Represents the embedded application Betrayal.io." +msgstr "" + +#: ../../api/enums.rst:1916 +#: ca9d81dfd82f4031b335c4bc19933a46 +msgid "Represents the embedded application Blazing 8s." +msgstr "" + +#: ../../api/enums.rst:1922 +#: 37e760d58a7143b89abba2d5b19e1078 +msgid "Development version of :attr:`.blazing_8s`." +msgstr "" + +#: ../../api/enums.rst:1928 +#: 126662fd83ef43cd965f2fde2fbc3d90 +msgid "QA version of :attr:`.blazing_8s`." +msgstr "" + +#: ../../api/enums.rst:1934 +#: bceb40c70ad54faea89657ff53a8b6ed +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "" + +#: ../../api/enums.rst:1940 +#: ece980f3196e4e22826bf0b9fbd9ba4d +msgid "Represents the embedded application Bobble League." +msgstr "" + +#: ../../api/enums.rst:1946 +#: 2cd323b60d65453680bf7e879ce98f88 +msgid "Represents the embedded application Checkers in the Park." +msgstr "" + +#: ../../api/enums.rst:1950 +#: a78c47930e5a4ba8b51f71dcea78c7ce +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "" + +#: ../../api/enums.rst:1954 +#: c2cc29ea6e184e83b2be17704af74c56 +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "" + +#: ../../api/enums.rst:1958 +#: 7eb39863607f40c380be079505668760 +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "" + +#: ../../api/enums.rst:1962 +#: ef05be1c5f7e4079ac7c56305f89ebfa +msgid "Represents the embedded application Chess in the Park." +msgstr "" + +#: ../../api/enums.rst:1966 +#: 6320ce907144405b876049b648120b12 +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "" + +#: ../../api/enums.rst:1970 +#: 749604a85ea64bbf996c3637266a7dfd +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "" + +#: ../../api/enums.rst:1974 +#: 4d7d5cbee8df40f39c5bd67d2a5cf15a +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "" + +#: ../../api/enums.rst:1978 +#: bf380b08e1e1407eafa744eae41fbb85 +msgid "Represents the embedded application Decoders Development." +msgstr "" + +#: ../../api/enums.rst:1986 +#: 5f272d25b38e42c5b02ff61dfc3ded42 +msgid "Represents the embedded application Doodle Crew." +msgstr "" + +#: ../../api/enums.rst:1994 +#: 90460a782454406b9eba77e90bbc0d65 +msgid "Development version of :attr:`.doodle_crew`." +msgstr "" + +#: ../../api/enums.rst:2002 +#: adbde9ea5c7740d88be1a57b89ad8046 +msgid "Represents the embedded application Fishington.io." +msgstr "" + +#: ../../api/enums.rst:2006 +#: d6011665aa3848a8810933d33109f014 +msgid "Represents the embedded application Gartic Phone." +msgstr "" + +#: ../../api/enums.rst:2012 +#: 5b98bc6e985645759adce7b6dc973bc2 +msgid "Represents the embedded application Jamspace." +msgstr "" + +#: ../../api/enums.rst:2018 +#: 8cb40366f76a471182114e1d2bf663a4 +msgid "Represents the embedded application Know What I Meme." +msgstr "" + +#: ../../api/enums.rst:2024 +#: 4611eb49709143a7943172b1ecd4af36 +msgid "Represents the embedded application Land.io." +msgstr "" + +#: ../../api/enums.rst:2030 +#: 1cef475005fa4d3e977b4a250336eaff +msgid "Represents the embedded application Letter League." +msgstr "" + +#: ../../api/enums.rst:2034 +#: 90d3eb8aa9354387bab79c9666a7f6be +msgid "Development version of :attr:`.letter_league`." +msgstr "" + +#: ../../api/enums.rst:2040 +#: 5900632eb0bd408aaeaceea4df6a3400 +msgid "Represents the embedded application Poker Night." +msgstr "" + +#: ../../api/enums.rst:2044 +#: 859bd24025a04598a607f82fe33e2303 +msgid "Development version of :attr:`.poker_night`." +msgstr "" + +#: ../../api/enums.rst:2050 +#: 364952c675e345bfa20f62bb6295b569 +msgid "QA version of :attr:`.poker_night`." +msgstr "" + +#: ../../api/enums.rst:2054 +#: 306415ef45014befbf99265bc432d5d5 +msgid "Staging version of :attr:`.poker_night`." +msgstr "" + +#: ../../api/enums.rst:2058 +#: 6b68a438b88f4507bfaea1747c902c24 +msgid "Represents the embedded application Putt Party." +msgstr "" + +#: ../../api/enums.rst:2064 +#: 1db9baa076ee480d8d0aa84283c03a90 +msgid "Development version of :attr:`.putt_party`." +msgstr "" + +#: ../../api/enums.rst:2070 +#: 28f5321d2a88463a87a98cc3fe977eee +msgid "QA version of :attr:`.putt_party`." +msgstr "" + +#: ../../api/enums.rst:2076 +#: d1c4dbb002ad4b59b6f095bd3c9e8241 +msgid "Staging version of :attr:`.putt_party`." +msgstr "" + +#: ../../api/enums.rst:2082 +#: 10dffbd7ae7346b1a9adb510b348b139 +msgid "Represents the embedded application Putts." +msgstr "" + +#: ../../api/enums.rst:2090 +#: 1a64c939106a47e89fa93d72ccffb2dd +msgid "Represents the embedded application Sketch Heads." +msgstr "" + +#: ../../api/enums.rst:2096 +#: fe0828898e684c07ac1bb2b084c6b92e +msgid "Development version of :attr:`.sketch_heads`." +msgstr "" + +#: ../../api/enums.rst:2102 +#: 2abfe4abd47a4b16a8759924e64d5f61 +msgid "Represents the embedded application Sketchy Artist." +msgstr "" + +#: ../../api/enums.rst:2110 +#: 0c2730bb638249d491ca800b236c561d +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "" + +#: ../../api/enums.rst:2118 +#: 57f7dbca4655440a93c3fd350e137039 +msgid "Represents the embedded application Spell Cast." +msgstr "" + +#: ../../api/enums.rst:2122 +#: 5db2665a5810470ebfdcde53e0c9844e +msgid "Staging version of :attr:`.spell_cast`." +msgstr "" + +#: ../../api/enums.rst:2128 +#: e5f509a034fc4e12b38a85f3efc3e443 +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "" + +#: ../../api/enums.rst:2132 +#: 40693975970c4aba91b20cbb710c3df5 +msgid "Development version of :attr:`.watch_together`." +msgstr "" + +#: ../../api/enums.rst:2136 +#: b171892fb9124323bb2b98d60e1b7a85 +msgid "Represents the embedded application word snacks." +msgstr "" + +#: ../../api/enums.rst:2140 +#: f667ed7f17934a5886e9dbab4028d854 +msgid "Development version of :attr:`.word_snacks`." +msgstr "" + +#: ../../api/enums.rst:2144 +#: f2e8046479ab4befb1b09badb53ceac4 +msgid "Represents the embedded application Youtube Together." +msgstr "" + +#: ../../api/enums.rst:2148 +#: 3aafbe2b679b447ba75d81c817faba38 +msgid "Represents the status of a scheduled event." +msgstr "" + +#: ../../api/enums.rst:2154 +#: 203576378c61466aafba5a0280b7d8d7 +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "" + +#: ../../api/enums.rst:2158 +#: 11cbb117b6e540df9c5cf85a8692ddd0 +msgid "The scheduled event is in progress." +msgstr "" + +#: ../../api/enums.rst:2162 +#: 59952e0eaaed49e283b98e7bc4fc4827 +msgid "The scheduled event is over." +msgstr "" + +#: ../../api/enums.rst:2166 +#: 347d83904c7c44bc93ff95674bf1dc88 +msgid "The scheduled event has been canceled before it can start." +msgstr "" + +#: ../../api/enums.rst:2170 +#: f3e431347c5e494ab804674c1a47785e +msgid "Alias to :attr:`canceled`." +msgstr "" + +#: ../../api/enums.rst:2174 +#: 9367cb26de98424599dc80ef69d1a73d +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "" + +#: ../../api/enums.rst:2180 +#: 4266c50b2bdf4fcf8936d92fa70abac3 +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "" + +#: ../../api/enums.rst:2184 +#: f9e4297eb07d41a3bde1dbf3e89b5675 +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "" + +#: ../../api/enums.rst:2188 +#: e4af5f9d382340e3828ebe79f1ebfee7 +msgid "Represents a generic location as a :class:`str`." +msgstr "" + +#: ../../api/enums.rst:2192 +#: fe8d3a7422cf4811950c7096d1a6910d +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "" + +#: ../../api/enums.rst:2198 +#: e258adae10a24e399876694c35f291ee +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "" + +#: ../../api/enums.rst:2202 +#: 43c0ea119a5d4ddeae31a1891ab90bba +msgid "Represents an application role connection metadata type." +msgstr "" + +#: ../../api/enums.rst:2204 +#: a48a777f05f8404ea3f84c2eea0b407b +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "" + +#: ../../api/enums.rst:2213 +#: 7a2243082c9146148a159adfd210797b +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "" + +#: ../../api/enums.rst:2217 +#: e05c266364924b249c892a96ae04c509 +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "" + +#: ../../api/enums.rst:2221 +#: dc164a530b7748a890b89df5f1d48a3a +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "" + +#: ../../api/enums.rst:2225 +#: 271247e528204d5caec08f683630d00c +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "" + +#: ../../api/enums.rst:2229 +#: c5cbe1ee08764e95af0db6111e8f10c0 +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "" + +#: ../../api/enums.rst:2234 +#: 4f4f013f472b4670a51d9240fd8f71cb +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "" + +#: ../../api/enums.rst:2239 +#: fa757acb4e9841578e85bd76d6678b17 +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "" + +#: ../../api/enums.rst:2243 +#: 0f6c437fb349410593e5fc67633b1ed0 +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "" + +#: ../../api/enums.rst:2247 +#: 6cd1703bdbcb49af8199d10e0be98536 +msgid "Represents an AutoMod trigger type." +msgstr "" + +#: ../../api/enums.rst:2253 +#: 92785878e944483596614511844290d9 +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "" + +#: ../../api/enums.rst:2255 +#: ../../api/enums.rst:2265 +#: ../../api/enums.rst:2280 +#: 2748f446a4944afcac405b4e6431d085 +#: 6b22e3f8c2104c49a2126255db4d2a25 +#: 6e7fe5085c2c473ebe25b9e17a6473c3 +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "" + +#: ../../api/enums.rst:2257 +#: 164ea467f5a74a77a09fffe0604d2e6f +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr "" + +#: ../../api/enums.rst:2258 +#: 3a554f78cf8f4a0386b8cde531dbbbf4 +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr "" + +#: ../../api/enums.rst:2259 +#: ../../api/enums.rst:2268 +#: f18a268f3f3847c59e0ef614ee5a88ca +#: e648d4c07e7849498fa1e37f3dc9d7a4 +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr "" + +#: ../../api/enums.rst:2263 +#: 9cb29d61a6674cc58252b6ff7ec0ee65 +msgid "Represents a preset keyword rule trigger." +msgstr "" + +#: ../../api/enums.rst:2267 +#: d6aa05f209664d85a235c190d3043cd9 +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr "" + +#: ../../api/enums.rst:2272 +#: fc23e3e17deb4d2db2f13578e975407f +msgid "Represents the spam rule trigger." +msgstr "" + +#: ../../api/enums.rst:2274 +#: 5052fa1e23f84d919094b527e6780760 +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "" + +#: ../../api/enums.rst:2278 +#: c1b72bd121c64fd9b20ca8fdb200b748 +msgid "Represents a mention spam keyword rule trigger." +msgstr "" + +#: ../../api/enums.rst:2282 +#: cca7bd82a2394c6083489b7e39c4c738 +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr "" + +#: ../../api/enums.rst:2288 +#: 70879d5f0ea545c6a8e2c43268f3a44a +msgid "Represents a harmful link rule trigger." +msgstr "" + +#: ../../api/enums.rst:2290 +#: ab821fbd1d1c44e7b9adfaccc49878cc +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "" + +#: ../../api/enums.rst:2295 +#: 1d15948ea48048f3a54cb3fd56f98949 +msgid "Represents an AutoMod event type." +msgstr "" + +#: ../../api/enums.rst:2301 +#: de04935db43e47bb8ad4d5ad0a2e794a +msgid "Represents a message send AutoMod event." +msgstr "" + +#: ../../api/enums.rst:2305 +#: 20ab54c4886942d6a8b40c6cb79dc15e +msgid "Represents the type of action AutoMod is performing." +msgstr "" + +#: ../../api/enums.rst:2311 +#: 2052ac6a159c413096526b93f53fc40f +msgid "Represents a block message action." +msgstr "" + +#: ../../api/enums.rst:2315 +#: 52326fdbc82c40b78fb2d012ee46d6e0 +msgid "Represents a send alert message action." +msgstr "" + +#: ../../api/enums.rst:2319 +#: e71766619bd345e6adacc517795aa546 +msgid "Represents a timeout action." +msgstr "" + +#: ../../api/enums.rst:2323 +#: a67c1f449b7b46a6b3945dbe581eecf5 +msgid "Represents an AutoMod keyword preset type." +msgstr "" + +#: ../../api/enums.rst:2329 +#: 16fae1e09da548e194ff3e9b141d0b3e +msgid "Represents the profanity keyword preset rule." +msgstr "" + +#: ../../api/enums.rst:2333 +#: ab390cf38fb84df4a3a96714d0211fb6 +msgid "Represents the sexual content keyword preset rule." +msgstr "" + +#: ../../api/enums.rst:2337 +#: 1a4ffd11aed54240903e82e327560e9b +msgid "Represents the slurs keyword preset rule." +msgstr "" + +#: ../../api/enums.rst:2341 +#: e06b2688ab0040a886ef9dc2896bc3a3 +msgid "Represents how each prompt's options are displayed." +msgstr "" + +#: ../../api/enums.rst:2347 +#: 49a64ce72b5949fbb573a3ccaee7703f +msgid "The options will appear in a grid form, showing the name and description." +msgstr "" + +#: ../../api/enums.rst:2351 +#: 0a3bb3bdb2714e2cbf932539ebc78a91 +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "" + +#: ../../api/enums.rst:2355 +#: a23abfb2ecad4cd8ad6e055957bf964e +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "" + +#: ../../api/enums.rst:2361 +#: 6aa44f6eace5404f9d4a7f22c35aa583 +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "" + +#: ../../api/enums.rst:2365 +#: fb8b2393e31646fea2a6b5c6cff080cb +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "" + +#: ../../api/enums.rst:2369 +#: d984d2edafa0494198f40de75ba4ee65 +msgid "Represents a Reaction's type." +msgstr "" + +#: ../../api/enums.rst:2375 +#: 7093ffd76bf040fbabd2de615bea62a7 +msgid "Represents a normal reaction." +msgstr "" + +#: ../../api/enums.rst:2379 +#: 7ff6dcebaa89470b8b1b9ee4585e7e04 +msgid "Represents a super reaction." +msgstr "" + +#: ../../api/enums.rst:2383 +#: 8441ff853aa64a7da5c19e1df2a877a2 +msgid "Represents an SKU's type." +msgstr "" + +#: ../../api/enums.rst:2389 +#: bc04deae624c4ff79197fba79bb3d505 +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "" + +#: ../../api/enums.rst:2394 +#: ac5ad3bc7e1642909644aad6bf116481 +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "" + +#: ../../api/enums.rst:2399 +#: ac2cba0273274f94888cf5be8147f0b0 +msgid "Represents a recurring subscription." +msgstr "" + +#: ../../api/enums.rst:2403 +#: 9755ce16658e4e5aaf283233f4ba8e6c +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "" + +#: ../../api/enums.rst:2408 +#: f47ba3afb4144d7cb79cacb32af9f292 +msgid "Represents an entitlement's type." +msgstr "" + +#: ../../api/enums.rst:2414 +#: f0c9c5eeaf1d4576b1977a50ebff3be9 +msgid "Entitlement was purchased by the user." +msgstr "" + +#: ../../api/enums.rst:2418 +#: 0fd3167c06bb4f73a4373acc350c29f4 +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "" + +#: ../../api/enums.rst:2422 +#: 6e360623ccd14c7ba737664a0720387b +msgid "Entitlement was gifted by the developer." +msgstr "" + +#: ../../api/enums.rst:2426 +#: a3753cbe720248baad7006b741b83d0f +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "" + +#: ../../api/enums.rst:2430 +#: c50fbfb4231547299d0b58c756a526ef +msgid "Entitlement was granted when the SKU was free." +msgstr "" + +#: ../../api/enums.rst:2434 +#: 664d88fce1c945589b43e457c0a039ab +msgid "Entitlement was gifted by another user." +msgstr "" + +#: ../../api/enums.rst:2438 +#: bcce02698e7c4d93b0593a4738376114 +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "" + +#: ../../api/enums.rst:2442 +#: 94fb5669a76e4d5799331d41c4367469 +msgid "Entitlement was purchased as an app subscription." +msgstr "" + +#: ../../api/enums.rst:2447 +#: 043f69aa903442b79ab0a54119892850 +msgid "Represents an entitlement's ownership type." +msgstr "" + +#: ../../api/enums.rst:2453 +#: 72cb5e1565fc455191948cdc346b5907 +msgid "Entitlement is owned by a guild." +msgstr "" + +#: ../../api/enums.rst:2457 +#: e781c8a6bbb243499cddce3c2086358f +msgid "Entitlement is owned by a user." +msgstr "" + +#: ../../api/enums.rst:2462 +#: 61f4a928d66440c58ffbf67cfb15c5a1 +msgid "Represents a poll's layout type." +msgstr "" + +#: ../../api/enums.rst:2468 +#: f54fed3455b144949f6a44f072c31a50 +msgid "Represents the default layout." +msgstr "" + +#: ../../api/enums.rst:2473 +#: 2b0b8bc9cad04acebb5612d68a8de5bc +msgid "The integration type for an application." +msgstr "" + +#: ../../api/enums.rst:2479 +#: a15a8b77c15e4992bc42c8bb77ef4798 +msgid "The integration is added to a guild." +msgstr "" + +#: ../../api/enums.rst:2483 +#: 3c01a27a108a44fd993f5951533ed1d6 +msgid "The integration is added to a user account." +msgstr "" + +#: ../../api/enums.rst:2488 +#: d351c5701a90482b9a4914a152ef4078 +msgid "The context where an interaction occurs." +msgstr "" + +#: ../../api/enums.rst:2494 +#: e8e8e4cc8a314af0b8169d0786b9b761 +msgid "The interaction is in a guild." +msgstr "" + +#: ../../api/enums.rst:2498 +#: 9c92e2dd1a0f4c0c85a016d87b6eef8f +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "" + +#: ../../api/enums.rst:2502 +#: 1e9f15c549cb42a1974d9ba887984e15 +msgid "The interaction is in a private DM or group DM channel." +msgstr "" diff --git a/docs/build/locales/api/events.pot b/docs/build/locales/api/events.pot new file mode 100644 index 0000000000..6934b068cd --- /dev/null +++ b/docs/build/locales/api/events.pot @@ -0,0 +1,1900 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/events.rst:6 +#: b2b93f092885467db7bfd392648d888f +msgid "Event Reference" +msgstr "" + +#: ../../api/events.rst:8 +#: bdee4bc49e3e4607b4c21d82fe93e090 +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "" + +#: ../../api/events.rst:10 +#: 2f7235d8cacd43e89e3c134128adb29d +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "" + +#: ../../api/events.rst:50 +#: adc23d509127474b8d15bcc0824ba0b8 +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "" + +#: ../../api/events.rst:55 +#: 47882c01d8f44f12a233f6e23da1bc8e +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "" + +#: ../../api/events.rst:60 +#: dcdd13d7ae4f41668bc09a5e8891be30 +msgid "Application Commands" +msgstr "" + +#: ../../api/events.rst:63 +#: 1bb731d89f9d453bb72c8525a0000c04 +msgid "Called when an application command is received." +msgstr "" + +#: ../../api/events.rst:0 +#: 4f354ed77ba74f58a8bfe8f9e4523bc8 +#: 0d3719138c324b9b86dfd4e1f7c983c2 +#: a3d7e20844c140bfae16d8b945ec35b3 +#: a9ebc9dfbb2342c09e6f908ff8b05b61 +#: fb18645345c14733936ee43bac2428ab +#: be24ecbc72b54a3390c05a17b44d15b6 +#: 47834821ad7340b2a0c1b302cf59221a +#: f4f36adbe07941dbb50a3375686a7f96 +#: 69f16d3ebdce40d299735d1b99859fc4 +#: 99b1f8fedb1a4fab9e06d830c354345b +#: fe865df5dd99489498c73d866ac670dc +#: 8ae7a130296f41c286012b115ac400f6 +#: 78efea9536c547dea9bcf4f0fb904c57 +#: a3d69eddf6564725bc67771befc4aeca +#: 96b417dff47e45afba7e2b6cd8b168f6 +#: 8f134176570e4223ac70dfaf54649fd3 +#: f19251d202354981b849ab1942b91951 +#: 17839a738d044231b7bb90c4f01bdc9b +#: 73dad0dff0974575a4f932f888e57e50 +#: d057103729ff4f3b8dbe93fe0bc1262e +#: cf1af74adcc940c6b88151caa220ceb0 +#: 13bb21ffd48c4d37b43cae9d0af4273a +#: 1031328b8ab2414c85e5725dc3c4efbf +#: 450ea7dd8b0742b6a95034bc736a0b26 +#: 349abfcdf56240438f5690772fe0a18d +#: e3455443ac954b88b181ebe074279d1a +#: 847adddbea6a47e4b9b7e13a7f352ad5 +#: a62f5e8fc8174aa7881c7c7803d52529 +#: 9d17e39474da4efb97dc8dba285d4e27 +#: 2047ad9931154d87a4d5f8a7090fd208 +#: d945cfa6fb84406aada47da35d94e1b0 +#: eb2b8d62e3094050ababe6c81875b9a3 +#: 0d00d17e652745278bde98e5a9baac57 +#: 81c162aa46b14ab0a333ed9962606f0a +#: 281495434b004210ae4aaff83990d327 +#: 677c6a863bc24ae1a5ad297c49517cd8 +#: 1678169629ec4355a18db9887c5dbc22 +#: 900882c0284c4bc4a079c467bf577de2 +#: 176ab3d1374941268495018745427ade +#: 60b3d7ac967d4fbaa7ab300016181e83 +#: 78208569a83144aa920b951012b5ce70 +#: b04fccd185f843d1aca16ec4a414e75c +#: 6d7428028f5f4c47a87e228b3382926a +#: e6e388c1d5e74cfcb8a83eb43c1ea8c0 +#: 4aa9dc788bbb4783842e434f794ea2be +#: d5cd6b0856484ad1a5f1be0f36dbca84 +#: 559e63e7918344a8afdb26e8d8af2bae +#: 681f4a0621c84af5b603e302957fca24 +#: 40ac5755dc1642c89e6bc723e5950d7a +#: 9ac90eb414af4d83b9c363cc85e04e26 +#: a88f1812c49f42f1ac7a744c1c840822 +#: d71e0e6a13fe4d9990262d983c4aea4b +#: d4d90a7f98cf4fa785b0c5df1c055240 +#: 9a16c00d4a624d2aa7e42be17f5e9e41 +#: da5228275de345319b40abae16fbe8b7 +#: 962d87d49ce14c0ea1cceabda7c9cc2d +#: 6b62d4d670624d2590578fa265eae9af +#: 4866914077374dcabb7961c78d04b703 +#: 99b97506806e4f40b1382cef723cca78 +#: 0450b87209e04abf999c6d16346f74ad +#: c914a36558cb4bc98abd8de320e5cfc0 +#: a2a4098c99f44db3990a9980266e23aa +#: 72ce7e3d4c314950a9bc3410fd54a91a +#: ab5d8aefc1db4a4c817b5368caa5543e +#: 4ab35ccbcc7a421bba4f7493d8ae96c4 +#: a6c90e28198047819bbc09741d0e820b +#: ca0cd7fa385341149261f81c4cb9db61 +#: 6dab0c0a2e24494ab8395fce18a6640a +#: 80f30be1218d4627ac862062d98f65b9 +#: de18df4128cb43da8ea61b66283e75f2 +#: 5015785657bd461bb6bf2bc0a2125668 +#: 8432d53ccc6b4c218b0be97b5c783d06 +#: 70306a7be41d4b578c334a0619ba1f3c +#: 1938a7564e7f49a4a0c3d07f69097a01 +#: 6d8d97277dc24519b84ce4eddbcf5e6c +#: c41c21d6e6304513afc6ce518472f17b +#: 60839dcce1c248789ade9b533e7911db +#: e9aab89b208b4e639310868813af5a3a +#: 620a42e608284789b3c467b464c96dad +#: ee9815d10d0f4b26aa8a87feed666d51 +#: 69f826f1232a4d53a56d0d5f09d6091a +#: 37ee4bf65332432b844f4c82c96e130f +#: fca243bce7384dd5a65201e550249536 +#: 8f50058a92a84b47a4211733aacacd7e +#: 18ff51c5a3704f5a9fa461a57b8e9b66 +#: 743a2e37a02c4c5fb8f7dd22c8217882 +#: ddbc0fd0c67b4c47b95f888da332497a +#: 13c8a10e7a204b58956db583cfa99493 +#: b71cd393e4bb46869fc9b5aa74556aea +#: 5f9dfeae511c4e658ed3c94bd40b4560 +#: d907a1e1ec6441fda3a2d770dd044ffb +#: 67c06d15edc74df8ac0d765f1893023e +msgid "Parameters" +msgstr "" + +#: ../../api/events.rst:67 +#: 263f3d12d8884506a406695110c94d1d +msgid "The ApplicationContext associated to the command being received." +msgstr "" + +#: ../../api/events.rst:72 +#: 24711ddc6949466a8b86ec45748ae3ce +msgid "Called when an application command is completed, after any checks have finished." +msgstr "" + +#: ../../api/events.rst:76 +#: 2fd180ffd6ff42b3b6e01dbd5969e3e3 +msgid "The ApplicationContext associated to the command that was completed." +msgstr "" + +#: ../../api/events.rst:81 +#: 44821c55ef8945558c1f43451f5cb497 +msgid "Called when an application command has an error." +msgstr "" + +#: ../../api/events.rst:85 +#: c10680f322e14111ac67af055eb489a3 +msgid "The ApplicationContext associated to the command that has an error." +msgstr "" + +#: ../../api/events.rst:88 +#: 5a47fd2e7d014a1d946b87ebc4c84417 +msgid "The DiscordException associated to the error." +msgstr "" + +#: ../../api/events.rst:93 +#: 56a473725976471ea908f69efac826f1 +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "" + +#: ../../api/events.rst:97 +#: c2d326f68bb44a35a20d93fb7c97652c +msgid "The interaction associated to the unknown command." +msgstr "" + +#: ../../api/events.rst:101 +#: 3e1b520c5ed4477ba2feec46353c8793 +msgid "Audit Logs" +msgstr "" + +#: ../../api/events.rst:105 +#: a524eb8a295b41a293f359f7a21b8c96 +msgid "Called when an audit log entry is created." +msgstr "" + +#: ../../api/events.rst:107 +#: ../../api/events.rst:121 +#: 4612cca4e358409f9d68b50876c6eec4 +#: bade2e1e4cf04f0686e4f797a2a839f2 +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "" + +#: ../../api/events.rst:112 +#: d0f5bab6c26a4183877ddb9f443b1f59 +msgid "The audit log entry that was created." +msgstr "" + +#: ../../api/events.rst:117 +#: b58b216d81fb40f89ff0d0650b13b0d8 +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "" + +#: ../../api/events.rst:126 +#: ../../api/events.rst:610 +#: ../../api/events.rst:705 +#: ../../api/events.rst:844 +#: ../../api/events.rst:857 +#: ../../api/events.rst:910 +#: ../../api/events.rst:937 +#: ../../api/events.rst:962 +#: ../../api/events.rst:999 +#: ../../api/events.rst:1031 +#: ../../api/events.rst:1054 +#: ../../api/events.rst:1079 +#: ../../api/events.rst:1134 +#: ../../api/events.rst:1158 +#: ../../api/events.rst:1257 +#: ../../api/events.rst:1284 +#: ../../api/events.rst:1318 +#: 2c7f1cc4edff4bc29e8b8268e06aa93e +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: ac6d84c776ef4acaa1b57da19160c5d3 +#: 940bd659eeb745b2b753faf7238ee8fe +#: 08eb4bec2f2a4837932a221dbd3220c0 +#: b5f3a3acf81442c49df4b0db70f59a29 +#: cebb871f992f4011aea78bd0c12995fb +#: 6b8bd14634da4b118afbfe9e49e3beb1 +#: 023402936a654371aab9f215b6e0c90c +#: 7c6afb134ff248edbef99cd378aeac64 +#: 83f294fe23f6474ba62680e79b9ecfee +#: 776fe87242094fc881ad350436325a2a +#: 61459f05ae5d4e50b742f4e8ea6afe1f +#: 198f9bbae5974dffbe423f6dd1819686 +#: 97da3d1b88d84c68a282dfdb9f98fbb3 +#: 0635e0f24c0e47b894c9c7fec506157a +#: 6bea76946d334a7996bd35f353135667 +msgid "The raw event payload data." +msgstr "" + +#: ../../api/events.rst:130 +#: b73de85e7f7e4357ba1ed52cbf4bc263 +msgid "AutoMod" +msgstr "" + +#: ../../api/events.rst:133 +#: f510e9ca15b248c788d357edd9e88a71 +msgid "Called when an auto moderation rule is created." +msgstr "" + +#: ../../api/events.rst:135 +#: ../../api/events.rst:145 +#: ../../api/events.rst:155 +#: 1f32fe0dcb8a4935b9c14ec7663202cc +#: dea2d065cdf543c3a75fd4a57c6cc529 +#: b5819b508c5c4fed9e2d6b1b346ce769 +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "" + +#: ../../api/events.rst:138 +#: 2228e3b0e30d4bdfb1ef0c9bf8454aed +msgid "The newly created rule." +msgstr "" + +#: ../../api/events.rst:143 +#: b0c3c7be1e57441d9f7ae80a8b9a55fc +msgid "Called when an auto moderation rule is updated." +msgstr "" + +#: ../../api/events.rst:148 +#: bf10f7d992944dd19290c176392c30aa +msgid "The updated rule." +msgstr "" + +#: ../../api/events.rst:153 +#: f53def3a863c481da06c0adeb1c37117 +msgid "Called when an auto moderation rule is deleted." +msgstr "" + +#: ../../api/events.rst:158 +#: b3f4f05cc64c4bccbbe04993d4bf9054 +msgid "The deleted rule." +msgstr "" + +#: ../../api/events.rst:163 +#: c654ed31ecf14465b800fa756f7d8d4a +msgid "Called when an auto moderation action is executed." +msgstr "" + +#: ../../api/events.rst:165 +#: 7d4d74a12a2e459b953516591a5433d6 +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "" + +#: ../../api/events.rst:168 +#: fad72a1374294d369c622bfc37004f69 +msgid "The event's data." +msgstr "" + +#: ../../api/events.rst:172 +#: 23bb7ceedaee4167a40d30b1482c9dbc +msgid "Bans" +msgstr "" + +#: ../../api/events.rst:175 +#: 00b471a8d70f42dfb067cd77f6e4834d +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "" + +#: ../../api/events.rst:177 +#: ../../api/events.rst:190 +#: a3237655fba343fab0543ea041c27da3 +#: 2a2b5a4c85414b78ac6466d1323440c4 +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "" + +#: ../../api/events.rst:179 +#: 9a2729bbfbc344279cb9083860b57c76 +msgid "The guild the user got banned from." +msgstr "" + +#: ../../api/events.rst:181 +#: dc367f856d164ad38e4d0c51eb793ed1 +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "" + +#: ../../api/events.rst:188 +#: 952eeaee77bb47b6b764ab89d1ff9936 +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "" + +#: ../../api/events.rst:192 +#: 6a9b2d3cbc7747de9e9023d4ca96d73c +msgid "The guild the user got unbanned from." +msgstr "" + +#: ../../api/events.rst:194 +#: 04b83197700d451bb5349844eee4504b +msgid "The user that got unbanned." +msgstr "" + +#: ../../api/events.rst:198 +#: 95a2532527e84395b5ccd7d85a10592f +msgid "Channels" +msgstr "" + +#: ../../api/events.rst:201 +#: 3e9c005d8372415f88c61c2cf1192949 +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "" + +#: ../../api/events.rst:203 +#: ../../api/events.rst:789 +#: ../../api/events.rst:812 +#: ../../api/events.rst:829 +#: ../../api/events.rst:842 +#: ../../api/events.rst:855 +#: ../../api/events.rst:882 +#: ../../api/events.rst:908 +#: e55034f9969343d990011bfeb8b17ce5 +#: cb3213b1115949de9bb856d6d491d2ac +#: d97041759bf74fb7a97daf70cfe8bf3f +#: 95ccb54b20fd47e58417710ed5f5eb52 +#: 1082924a78134519a59315c26ab91333 +#: 024d5d91d73a44de83c021d43b5b54e9 +#: 9021e87cdea64927a2681528197df4d5 +#: af5b8c5a72884a83ac69344f157698af +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "" + +#: ../../api/events.rst:205 +#: a8a66b9bc1b04dd193764e55de15f19e +msgid "The updated group channel's old info." +msgstr "" + +#: ../../api/events.rst:207 +#: e63adae3641b4b97b7cdc33325376ca3 +msgid "The updated group channel's new info." +msgstr "" + +#: ../../api/events.rst:212 +#: ed32bc738f7f4ca3b11d34215528496f +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "" + +#: ../../api/events.rst:214 +#: 0f92e9df29834255b4e23938a063029f +msgid "The private channel that had its pins updated." +msgstr "" + +#: ../../api/events.rst:216 +#: ../../api/events.rst:238 +#: 4b02a9bca82b46eb86f2a70126175092 +#: aa84e858b4de4b38aca341540f075801 +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "" + +#: ../../api/events.rst:221 +#: f16c8f36b0484a088c2a9b3827ca81fd +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "" + +#: ../../api/events.rst:223 +#: ../../api/events.rst:234 +#: ../../api/events.rst:248 +#: ../../api/events.rst:456 +#: ../../api/events.rst:475 +#: ../../api/events.rst:489 +#: ../../api/events.rst:503 +#: ../../api/events.rst:512 +#: ../../api/events.rst:553 +#: ../../api/events.rst:1197 +#: ../../api/events.rst:1210 +#: ../../api/events.rst:1223 +#: ../../api/events.rst:1245 +#: ../../api/events.rst:1293 +#: ../../api/events.rst:1314 +#: 3ad5cbd41ddb4c8e847d8f8ac5f8c3e6 +#: f28de120c204470e8efc2483a3ec3ec3 +#: 5d355f08e7f145bc97271086b10d0260 +#: f9ffac6969464760865bea86217e862e +#: 4330cee10810420eae954b7acf917069 +#: 0873cc1fdc914f0fad25fd05b59de54d +#: 701881eeed2b49a0bf24be49460e89d7 +#: 2e278f832d434ef9a4960f7d01cde05e +#: ec0f92796f594f4297ae5903eb0667b8 +#: e12869e76b1849dfb9a5de16e606e9d9 +#: 77ddc91aee8f43b7b3639a94cef10e17 +#: 8b159796a6f349e8aeaf7c5bf5752f37 +#: 45b3e36bf4724062b1bddf760945f9e1 +#: a4a7d77e88f44357be30d5714d93dd1b +#: 213bd7864c0e48eea8da67e27a46dabc +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "" + +#: ../../api/events.rst:225 +#: 582a1772a9a24ec79ebf3380f605b994 +msgid "The updated guild channel's old info." +msgstr "" + +#: ../../api/events.rst:227 +#: 53270a2c896d41459a116b9d2cd5d61e +msgid "The updated guild channel's new info." +msgstr "" + +#: ../../api/events.rst:232 +#: 0518a7cd29724f0ebe14a809ed2eee33 +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "" + +#: ../../api/events.rst:236 +#: 3379c2bd9f27477e92d53e81fdd520fc +msgid "The guild channel that had its pins updated." +msgstr "" + +#: ../../api/events.rst:244 +#: b06ad24834684c0184a8cb62a7aa9496 +msgid "Called whenever a guild channel is deleted or created." +msgstr "" + +#: ../../api/events.rst:246 +#: 0b990a3012ab4d5dbfb2528666dfcc1f +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "" + +#: ../../api/events.rst:250 +#: a3c27d0b0d99451bbd118154b27728bd +msgid "The guild channel that got created or deleted." +msgstr "" + +#: ../../api/events.rst:254 +#: 7d449f79629f4f869b40a77ddef312bf +msgid "Connection" +msgstr "" + +#: ../../api/events.rst:257 +#: 8ec6bd0b3fbe4241bc6d9f75e823c85a +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "" + +#: ../../api/events.rst:263 +#: e631b145bbac440d88cafec5ec87dfd7 +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "" + +#: ../../api/events.rst:266 +#: dbd98ec209834cd6bd83612c55af9005 +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "" + +#: ../../api/events.rst:273 +#: dcf344c481cf4d11b82d8328a439ef32 +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "" + +#: ../../api/events.rst:275 +#: 03c4ccbc021946d29a5619ee2aee1c48 +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "" + +#: ../../api/events.rst:279 +#: 56c524590ae04f93a605d42859d7792b +msgid "The name of the event that raised the exception." +msgstr "" + +#: ../../api/events.rst:282 +#: 98db8715f93f433ab87723623ee23636 +msgid "The positional arguments for the event that raised the exception." +msgstr "" + +#: ../../api/events.rst:284 +#: 8dfd8c3b1dc84c6887b3932f50acd755 +msgid "The keyword arguments for the event that raised the exception." +msgstr "" + +#: ../../api/events.rst:289 +#: bbcc9c4b112d4e61978d8ce326fe6cf6 +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "" + +#: ../../api/events.rst:292 +#: 7f33474ea095415d94437132ace18ac7 +msgid "The warnings on :func:`on_ready` also apply." +msgstr "" + +#: ../../api/events.rst:296 +#: 2ae2df522e6f4a92920a80d034ae77fc +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "" + +#: ../../api/events.rst:301 +#: 91c23633ba4f41888381a63d594f6dae +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "" + +#: ../../api/events.rst:306 +#: e6fd21abf4ce49e089440189e709f0d6 +msgid "The shard ID that has connected." +msgstr "" + +#: ../../api/events.rst:311 +#: b1c968ec91014e3ba661afb388184d24 +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "" + +#: ../../api/events.rst:315 +#: 472cdd40fc634a4d96ca0be9aa3ee420 +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "" + +#: ../../api/events.rst:320 +#: e5534b890e0248a39e20344d3ee4f3b9 +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "" + +#: ../../api/events.rst:325 +#: 8c0f20c9bca7426b958f58f058b07dd2 +msgid "The shard ID that has disconnected." +msgstr "" + +#: ../../api/events.rst:330 +#: 748fed611ee3463d9059c87d4f5c1578 +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "" + +#: ../../api/events.rst:335 +#: b35787ab277f4f29bf403e1fbd863311 +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "" + +#: ../../api/events.rst:342 +#: e35773581ea743969833b125cf56d656 +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "" + +#: ../../api/events.rst:345 +#: 50262162085248069dcd30242d717ed1 +msgid "The shard ID that is ready." +msgstr "" + +#: ../../api/events.rst:350 +#: 753338ce1e254624b225eb476f342105 +msgid "Called when the client has resumed a session." +msgstr "" + +#: ../../api/events.rst:354 +#: 7ee4cd1af0364ade8b0eff1641a252d0 +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "" + +#: ../../api/events.rst:359 +#: bad97e6e55214ecdac9606dfade6aab2 +msgid "The shard ID that has resumed." +msgstr "" + +#: ../../api/events.rst:364 +#: 4c84d72a61734433987266f62f3f9bf2 +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "" + +#: ../../api/events.rst:366 +#: a5e9b00d68b34841aa32b730000c3c6b +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "" + +#: ../../api/events.rst:371 +#: 1ca9ee3aaebb4e9b8ccb1874adf58f48 +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "" + +#: ../../api/events.rst:376 +#: 9b0fbc2b869f4e7d97d634536359b072 +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "" + +#: ../../api/events.rst:380 +#: ../../api/events.rst:399 +#: 147ed7f0a5b94c1dabe80978422d561e +#: 75a209135d484bab8cfa803ad7f61222 +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "" + +#: ../../api/events.rst:383 +#: ../../api/events.rst:402 +#: 36f2db310d89444b98939f42f4b3d12e +#: 945cecef32a94d15a047464c5d430dbe +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "" + +#: ../../api/events.rst:387 +#: e929d8bfe7e540fd8296b711d97e59a8 +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "" + +#: ../../api/events.rst:390 +#: 6afe3ca5ed4b4cda9fe8fd39b449252e +msgid "The message passed in from the WebSocket library." +msgstr "" + +#: ../../api/events.rst:395 +#: dc512765150844c2a3f47b36106e8e8d +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "" + +#: ../../api/events.rst:406 +#: f0c4769fb11e41198c82a7e55644cda2 +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "" + +#: ../../api/events.rst:409 +#: f7e24f8f8760477e9ca0e47c386a918e +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "" + +#: ../../api/events.rst:414 +#: a7d79f8ec9934e6287e9f91b426f9ca3 +msgid "Entitlements" +msgstr "" + +#: ../../api/events.rst:417 +#: c4bda84ba80d4f6b82e53d44e2704b60 +msgid "Called when a user subscribes to an SKU." +msgstr "" + +#: ../../api/events.rst:421 +#: ec2ef743271140fca72f11b8f28b55f2 +msgid "The entitlement that was created as a result of the subscription." +msgstr "" + +#: ../../api/events.rst:426 +#: 072d6e76c4bb492ebf7fc48e64a58def +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "" + +#: ../../api/events.rst:430 +#: 79720b0dadf04f179a625168706790b9 +msgid "The entitlement that was updated." +msgstr "" + +#: ../../api/events.rst:435 +#: 1d13e1996ca641bcb26d6179d19e09e7 +msgid "Called when a user's entitlement is deleted." +msgstr "" + +#: ../../api/events.rst:437 +#: 3b910d98ee1b441498f2613151a00f70 +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "" + +#: ../../api/events.rst:442 +#: bf621f37de124bcbb5cce9859564f2d1 +msgid "This is not called when a user's subscription is cancelled." +msgstr "" + +#: ../../api/events.rst:446 +#: 9dbb179c32b54a398dc87524d5bbaef8 +msgid "The entitlement that was deleted." +msgstr "" + +#: ../../api/events.rst:450 +#: 4dfcfdb6c0064ac3b4f73a5d1c00da93 +msgid "Guilds" +msgstr "" + +#: ../../api/events.rst:453 +#: 20311648994641ae8ff17f72b5da9d99 +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "" + +#: ../../api/events.rst:458 +#: ea6e535b185f4d968990adf6893c7de0 +msgid "The guild that was joined." +msgstr "" + +#: ../../api/events.rst:463 +#: 070a63745b6849fbbeab2bf0a1b4e515 +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "" + +#: ../../api/events.rst:465 +#: 5d6cba70019f45f3ad96f5ec0a2594cc +msgid "This happens through, but not limited to, these circumstances:" +msgstr "" + +#: ../../api/events.rst:467 +#: 51b0d21974c1475a806ed37c3782ff11 +msgid "The client got banned." +msgstr "" + +#: ../../api/events.rst:468 +#: ff9e9e053e6049889fca38347497fb96 +msgid "The client got kicked." +msgstr "" + +#: ../../api/events.rst:469 +#: 1ed4f7c318cb43ce8b62cb081fe6a0b1 +msgid "The client left the guild." +msgstr "" + +#: ../../api/events.rst:470 +#: ec3900333c3f461bb2ad0cc95bc5ef2d +msgid "The client or the guild owner deleted the guild." +msgstr "" + +#: ../../api/events.rst:472 +#: c09fcb5ca235482a9dee894607af5aa1 +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "" + +#: ../../api/events.rst:477 +#: a83039edb3ba4814a286c7e322c10728 +msgid "The guild that got removed." +msgstr "" + +#: ../../api/events.rst:482 +#: 1e90656c38f64056af4b1e544753df18 +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "" + +#: ../../api/events.rst:484 +#: 422f145b8062401c84f76756bb9820e2 +msgid "Changed name" +msgstr "" + +#: ../../api/events.rst:485 +#: cbab865be7764aefa53002b353147cda +msgid "Changed AFK channel" +msgstr "" + +#: ../../api/events.rst:486 +#: deebcf9e947142edbdbcb28d9c54c4a6 +msgid "Changed AFK timeout" +msgstr "" + +#: ../../api/events.rst:487 +#: e5891580f33b405da90cd749c059cb8f +msgid "etc." +msgstr "" + +#: ../../api/events.rst:491 +#: a8cffe8722014b508fe234b456e99add +msgid "The guild prior to being updated." +msgstr "" + +#: ../../api/events.rst:493 +#: 09559bb331d54c818d9456c9e50dccc8 +msgid "The guild after being updated." +msgstr "" + +#: ../../api/events.rst:499 +#: 4926a01720844942bb4fbe2214b41d5d +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "" + +#: ../../api/events.rst:501 +#: 26919d02a3764b4bb306d4b2bb402aac +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "" + +#: ../../api/events.rst:505 +#: 1ff07f75468541b38b5b8945ccec0b63 +msgid "The role that was created or deleted." +msgstr "" + +#: ../../api/events.rst:510 +#: f7dd6519c06844c08e5241b1559491a5 +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "" + +#: ../../api/events.rst:514 +#: f1b5a9b9b024439d9ed75c18e938f390 +msgid "The updated role's old info." +msgstr "" + +#: ../../api/events.rst:516 +#: 1ff66a23bf0d491cb53e831bae382c88 +msgid "The updated role's updated info." +msgstr "" + +#: ../../api/events.rst:521 +#: 8cbae07e47ba4cdebe69ec4076d665f9 +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "" + +#: ../../api/events.rst:523 +#: ../../api/events.rst:536 +#: 7d54c1f8e6e74a72b35f12482d5961b4 +#: f67a33188bb34272a8889e369b01d223 +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "" + +#: ../../api/events.rst:525 +#: 73965f3cab494980aa9dd819ffd29c0b +msgid "The guild who got their emojis updated." +msgstr "" + +#: ../../api/events.rst:527 +#: fe7eb70f2c4a42d88b47e0e0c2137c58 +msgid "A list of emojis before the update." +msgstr "" + +#: ../../api/events.rst:529 +#: 0b5a5ffd3b384bb8b875fd343f7d22a6 +msgid "A list of emojis after the update." +msgstr "" + +#: ../../api/events.rst:534 +#: 7b8bb01b2d34498da90bd94b2c350575 +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "" + +#: ../../api/events.rst:540 +#: 1fae23769a4342888fab8d136a77ec99 +msgid "The guild who got their stickers updated." +msgstr "" + +#: ../../api/events.rst:542 +#: b36c6dcfc18940f9abb2e0f888efff66 +msgid "A list of stickers before the update." +msgstr "" + +#: ../../api/events.rst:544 +#: cd05518a2d924fd68974c2f5ea934b34 +msgid "A list of stickers after the update." +msgstr "" + +#: ../../api/events.rst:550 +#: 3c8f786f39b7401bb26040a54f057dc1 +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "" + +#: ../../api/events.rst:555 +#: c35fb39492e5426aa2d9ea96218afa36 +msgid "The guild that has changed availability." +msgstr "" + +#: ../../api/events.rst:560 +#: 6b348d1a6bcb4fd483811fb2f1f365d5 +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "" + +#: ../../api/events.rst:562 +#: a4440117ae634b6681222e5129783348 +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "" + +#: ../../api/events.rst:564 +#: e31dea0d4cf244af992bdf2f321a7013 +msgid "The channel that had its webhooks updated." +msgstr "" + +#: ../../api/events.rst:568 +#: 4c52e96a47324217a4defdba08ed9919 +msgid "Integrations" +msgstr "" + +#: ../../api/events.rst:571 +#: a6000695a11241f1b80ace12ef5bd409 +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "" + +#: ../../api/events.rst:573 +#: ../../api/events.rst:584 +#: ../../api/events.rst:595 +#: ../../api/events.rst:606 +#: a5ca1990b43345bebb2c1cb83f07bb00 +#: b5b38af536e54fbe8712c1ed8deb7547 +#: c2e1693b47554cf7945399623ff784b2 +#: 737a9cd4e70a4373a753fbdf4dff4b3b +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "" + +#: ../../api/events.rst:577 +#: 7cd3123072c84da0b5786b9c2dceed48 +msgid "The guild that had its integrations updated." +msgstr "" + +#: ../../api/events.rst:582 +#: c09a7f4e3d20488fa04c4baa6e222d0c +msgid "Called when an integration is created." +msgstr "" + +#: ../../api/events.rst:588 +#: ../../api/events.rst:599 +#: 7f9c50d99dd24e9fac1bc3fee804ca53 +#: 060f67ac9b304260a34915be922f68c1 +msgid "The integration that was created." +msgstr "" + +#: ../../api/events.rst:593 +#: 184033097d74474fb4d5a9e187a0eb1b +msgid "Called when an integration is updated." +msgstr "" + +#: ../../api/events.rst:604 +#: da531782f86c4b52b37c365448ee9f07 +msgid "Called when an integration is deleted." +msgstr "" + +#: ../../api/events.rst:614 +#: cfb2b057b0c1472cb4d3eee5331ae7ae +msgid "Interactions" +msgstr "" + +#: ../../api/events.rst:617 +#: 53db6b926a804818a95dc3ff07ce5e99 +msgid "Called when an interaction happened." +msgstr "" + +#: ../../api/events.rst:619 +#: 3ebdd96f98e9443a8d255dc81f17e869 +msgid "This currently happens due to application command invocations or components being used." +msgstr "" + +#: ../../api/events.rst:623 +#: 2689cfaa9dd24275b9870faf19ad2f56 +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "" + +#: ../../api/events.rst:629 +#: 5036e83617bf4ba58f9fcb428bc0680d +msgid "The interaction data." +msgstr "" + +#: ../../api/events.rst:633 +#: 6973c117b78e4a2ebc6825aacb60698c +msgid "Invites" +msgstr "" + +#: ../../api/events.rst:636 +#: ae71ea8985fa469282da5f31bdaf7446 +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "" + +#: ../../api/events.rst:643 +#: ../../api/events.rst:660 +#: 812b6d18d5a946d9bf0784367bb3affd +#: e9c28be70066461abdb827b38b467cff +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "" + +#: ../../api/events.rst:646 +#: ../../api/events.rst:666 +#: 3cf7be58f5b4432ca452bf28c48129e9 +#: 4dd28bae94dc48ccb43ad42ddf3c2eaf +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "" + +#: ../../api/events.rst:648 +#: 088d046716804d73b129d0bf49e473bb +msgid "The invite that was created." +msgstr "" + +#: ../../api/events.rst:653 +#: dab222e69c2c439887152238901a2947 +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "" + +#: ../../api/events.rst:663 +#: 1e05ea8a6a2444f7b38051ea5441c228 +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "" + +#: ../../api/events.rst:668 +#: 2af6321a181640749c67d39cf154ad77 +msgid "The invite that was deleted." +msgstr "" + +#: ../../api/events.rst:672 +#: cc2adb6fe784475a94c0c0e32b9bac4c +msgid "Members/Users" +msgstr "" + +#: ../../api/events.rst:675 +#: 59e3a422d23b4ebe987e2ae3ec18c6dc +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "" + +#: ../../api/events.rst:677 +#: ../../api/events.rst:690 +#: ../../api/events.rst:701 +#: ../../api/events.rst:720 +#: ../../api/events.rst:776 +#: ../../api/events.rst:1267 +#: ../../api/events.rst:1280 +#: 8c500bf67b4947efbccd591b47e807d3 +#: c267ed1dfc214c44b6f071d6284d0d90 +#: 571a0224eed04afca25ceb6fe779b727 +#: b77f2bddd083470aabb9f69a1aa4df63 +#: ac04b1a2a0c4454d82d101ecb00a6bc0 +#: 0608221e23ac498eb93feba2e0df9730 +#: 245dfa13ed9940cb9f9e97069c816268 +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "" + +#: ../../api/events.rst:679 +#: 51b1cf557f3b4b28a31d47b008c958e5 +msgid "The member who joined." +msgstr "" + +#: ../../api/events.rst:684 +#: 4bdb0182507c45c8b03ae52c0d7fe188 +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "" + +#: ../../api/events.rst:686 +#: 659720c167f64e42b9d9d1052d9709a6 +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "" + +#: ../../api/events.rst:692 +#: 3fd5f443082f4f50ab9d14d965e5906c +msgid "The member who left." +msgstr "" + +#: ../../api/events.rst:697 +#: bfd4357c25b649b89eb3bf3b2f0cc0c6 +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "" + +#: ../../api/events.rst:710 +#: 72cf960892384ef2a30c0f88ed9d2050 +msgid "Called when a :class:`Member` updates their profile." +msgstr "" + +#: ../../api/events.rst:712 +#: ../../api/events.rst:731 +#: ../../api/events.rst:769 +#: 9c0d0062f4524f09afc01922b6880478 +#: df7654b2971a4c8cb816e6a4cb412282 +#: 94033025616b4076bd1cd69dbccbce65 +msgid "This is called when one or more of the following things change:" +msgstr "" + +#: ../../api/events.rst:714 +#: 636b715442114d74b10fffcb5ea1f423 +msgid "nickname" +msgstr "" + +#: ../../api/events.rst:715 +#: 72c18648ea0441579e75a0809dda2be0 +msgid "roles" +msgstr "" + +#: ../../api/events.rst:716 +#: 32412ad2806a4c19a0b79bd9de971467 +msgid "pending" +msgstr "" + +#: ../../api/events.rst:717 +#: 23c7215831354f6eaa85e8cfa1a70f3e +msgid "communication_disabled_until" +msgstr "" + +#: ../../api/events.rst:718 +#: dfb5abcb569a43c7acb95e5da9c81b39 +msgid "timed_out" +msgstr "" + +#: ../../api/events.rst:722 +#: ../../api/events.rst:740 +#: 725047654176421eb19576468343096f +#: 3c202860a49f49fe90fce486a871deb3 +msgid "The updated member's old info." +msgstr "" + +#: ../../api/events.rst:724 +#: ../../api/events.rst:742 +#: 4a04609fc50046328661598fbb671487 +#: efbf85ad83644356bf043efa7cd58731 +msgid "The updated member's updated info." +msgstr "" + +#: ../../api/events.rst:729 +#: 1dee8a81bb94444cb7bc2ddf2fab5117 +msgid "Called when a :class:`Member` updates their presence." +msgstr "" + +#: ../../api/events.rst:733 +#: 1a275606817640eb8e06ee192f0f607b +msgid "status" +msgstr "" + +#: ../../api/events.rst:734 +#: 9f977430a74e4863afee82b21fcbf311 +msgid "activity" +msgstr "" + +#: ../../api/events.rst:736 +#: 765cb25bca1e473d8f12775b7c880b4f +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "" + +#: ../../api/events.rst:747 +#: a4a83d5acfa848f298585ef71e363a26 +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "" + +#: ../../api/events.rst:749 +#: ../../api/events.rst:1177 +#: 0c77a95ffd774442b4de3a3305b391f4 +#: 79633923465b40b68645223137732d3e +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "" + +#: ../../api/events.rst:751 +#: 2bdb0897344a4989a02198ce2b493750 +msgid "A member joins a voice or stage channel." +msgstr "" + +#: ../../api/events.rst:752 +#: a2d0ec0a66f44b798dbfdf16e54cf5f4 +msgid "A member leaves a voice or stage channel." +msgstr "" + +#: ../../api/events.rst:753 +#: 906d40a6e6c54fa48a691ea0742aefcd +msgid "A member is muted or deafened by their own accord." +msgstr "" + +#: ../../api/events.rst:754 +#: bae40f0b39be405a95122a36592e4a53 +msgid "A member is muted or deafened by a guild administrator." +msgstr "" + +#: ../../api/events.rst:756 +#: 1c7f2baeafaf4301bfd220ebeb3936ea +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "" + +#: ../../api/events.rst:758 +#: 0da0ec4c5bc04aaab41c2ad70e357a81 +msgid "The member whose voice states changed." +msgstr "" + +#: ../../api/events.rst:760 +#: 3b6875267fcb48fea947ebbc069ac8e3 +msgid "The voice state prior to the changes." +msgstr "" + +#: ../../api/events.rst:762 +#: 88099f60004742219109afd6e44eadff +msgid "The voice state after the changes." +msgstr "" + +#: ../../api/events.rst:767 +#: 525d8057d8ac440b9f12215a99861567 +msgid "Called when a :class:`User` updates their profile." +msgstr "" + +#: ../../api/events.rst:771 +#: f8f87a7c98ed4b2f928b30556b4fa7b7 +msgid "avatar" +msgstr "" + +#: ../../api/events.rst:772 +#: 599d96b1a33b4f199c8d33b53feb03be +msgid "username" +msgstr "" + +#: ../../api/events.rst:773 +#: e0ee257c4fb84b0d9c81e54f1137853d +msgid "discriminator" +msgstr "" + +#: ../../api/events.rst:774 +#: 32ad7813f11149efa7fa506c96845ed4 +msgid "global_name" +msgstr "" + +#: ../../api/events.rst:778 +#: b7fa74d14bdc43d68246734145009b99 +msgid "The updated user's old info." +msgstr "" + +#: ../../api/events.rst:780 +#: 9ba6bc5b6bbb4eaea29046092573c451 +msgid "The updated user's updated info." +msgstr "" + +#: ../../api/events.rst:784 +#: 7abff70b9dca4670aa6d4733ba79f565 +msgid "Messages" +msgstr "" + +#: ../../api/events.rst:787 +#: 82baa07e4f7c4be7b944e0382240ef7e +msgid "Called when a :class:`Message` is created and sent." +msgstr "" + +#: ../../api/events.rst:793 +#: e221d3668fa64676b963ba741fcd5174 +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "" + +#: ../../api/events.rst:799 +#: 192f3d3b79e047c4b51ec51f981e33b7 +msgid "The current message." +msgstr "" + +#: ../../api/events.rst:804 +#: 7b25830b67764d73a3031060cc579689 +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "" + +#: ../../api/events.rst:809 +#: ad4a7fb8f74444bb8d146c990732bb91 +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "" + +#: ../../api/events.rst:814 +#: a428153671394c76966c2a2f9024abcf +msgid "The deleted message." +msgstr "" + +#: ../../api/events.rst:819 +#: 095b22a1f2f24220ac745a7a4fdc391c +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "" + +#: ../../api/events.rst:826 +#: 26e2709b7f5540ec85c1bb0c0a606eb3 +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "" + +#: ../../api/events.rst:831 +#: 9ce00566593447c492ca1278f8511426 +msgid "The messages that have been deleted." +msgstr "" + +#: ../../api/events.rst:836 +#: 10a8f337e50f4b8d898d4a2a2d6d795e +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "" + +#: ../../api/events.rst:839 +#: acf2103910fa49ef84cc4b32ec70ca78 +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "" + +#: ../../api/events.rst:849 +#: 2bd4db8e59954989bcbf5cb1e022bff5 +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "" + +#: ../../api/events.rst:852 +#: 5852b5d52c9e40adbf768b1102728e63 +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "" + +#: ../../api/events.rst:862 +#: bf594df6bb134ca5ac6e7b608cd5b09e +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "" + +#: ../../api/events.rst:867 +#: 2824fa05ca1a4c06892fcc7588ddd6d8 +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "" + +#: ../../api/events.rst:870 +#: 9335cc2da527455584f33d3799b39d7d +msgid "The following non-exhaustive cases trigger this event:" +msgstr "" + +#: ../../api/events.rst:872 +#: 53861c9cc0f64565af31bcc8356d1596 +msgid "A message has been pinned or unpinned." +msgstr "" + +#: ../../api/events.rst:873 +#: 308d8ed1000e42cf94bd6253c7eee766 +msgid "The message content has been changed." +msgstr "" + +#: ../../api/events.rst:874 +#: 066a5520d3c14022b153532fb10de9ca +msgid "The message has received an embed." +msgstr "" + +#: ../../api/events.rst:876 +#: 0af62deae9b743988d34523a50c3d13a +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "" + +#: ../../api/events.rst:878 +#: b0864434abef4d4f9c3b7fb53099a72e +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "" + +#: ../../api/events.rst:879 +#: 0f327a0f417a439eab5204a3f58142bb +msgid "A call message has received an update to its participants or ending time." +msgstr "" + +#: ../../api/events.rst:880 +#: 497e563c063242e7b911450f5531d398 +msgid "A poll has ended and the results have been finalized." +msgstr "" + +#: ../../api/events.rst:884 +#: d43cb6b0601a480684fa45bddbf78ded +msgid "The previous version of the message." +msgstr "" + +#: ../../api/events.rst:886 +#: 7a7d3bc5be514a42acadd0236c90968a +msgid "The current version of the message." +msgstr "" + +#: ../../api/events.rst:891 +#: dd5375656537461f878930425fd44d9e +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "" + +#: ../../api/events.rst:894 +#: acb34759c383410297e89a9ab9014412 +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "" + +#: ../../api/events.rst:900 +#: ae06f1f32c284364a9fcc8766cd567cc +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "" + +#: ../../api/events.rst:903 +#: 7c877ddff3c948babea4b56c5855c106 +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "" + +#: ../../api/events.rst:914 +#: 407e56cbd8894cc7bfead844affa902e +msgid "Polls" +msgstr "" + +#: ../../api/events.rst:917 +#: a9b8e9767e884d369172fb6ab1841177 +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "" + +#: ../../api/events.rst:921 +#: ../../api/events.rst:935 +#: ../../api/events.rst:946 +#: ../../api/events.rst:960 +#: cf97ca5ad27a4e5fbbe4f583cc89dc60 +#: 91c503e67e4742a392a6f3e5e71708ec +#: e8a3023c3c93418e9c82cb67372f1bf7 +#: b162b13f9b5b4acd8b928cdf76d398af +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "" + +#: ../../api/events.rst:923 +#: ../../api/events.rst:948 +#: 258ead003f2243f494b187adccae34fa +#: ff747bd5556c4a8d9167ea03a335f344 +msgid "The current state of the poll." +msgstr "" + +#: ../../api/events.rst:925 +#: 57e5c2cd8fde48a285c0585219a834ef +msgid "The user who added the vote." +msgstr "" + +#: ../../api/events.rst:927 +#: ../../api/events.rst:952 +#: 90a34ed5976846189bfc2190e990abdf +#: b9bc568e4f2143f2b176e85afef48e8e +msgid "The answer that was voted." +msgstr "" + +#: ../../api/events.rst:932 +#: ee4f3182cf624af0b171db60500aa13a +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "" + +#: ../../api/events.rst:942 +#: 8d2b824eaf98481c961139a209dd3b16 +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "" + +#: ../../api/events.rst:950 +#: 5f583e96e69c4434b86aa5855a38a645 +msgid "The user who removed the vote." +msgstr "" + +#: ../../api/events.rst:957 +#: 5679d90e3b9043f8824042c0a86c634b +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "" + +#: ../../api/events.rst:966 +#: 1e6beea08c6545e1956f072b67cf94c0 +msgid "Reactions" +msgstr "" + +#: ../../api/events.rst:969 +#: 2259c8a34d124723a84253786909f8d4 +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "" + +#: ../../api/events.rst:975 +#: 0c4a10e8c65043cb8ad5b2aa8740c0f9 +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "" + +#: ../../api/events.rst:977 +#: ../../api/events.rst:997 +#: ../../api/events.rst:1029 +#: ../../api/events.rst:1040 +#: ../../api/events.rst:1052 +#: ../../api/events.rst:1063 +#: ../../api/events.rst:1075 +#: d254e7018b894d5da0d9ab3310487581 +#: 3ae12ea3aa9e49c29f89238dd55ad89d +#: e903959ba860442bacb9dbb7455787a1 +#: 8b747aaeeaa54dbaa2bb43a1cacfb4a4 +#: 05cf2a3105064224935b6fc52c104a8b +#: dcf7eda8ed0e407aaabc8a42264dd252 +#: 71824a77e84c432daeeb45c809a4cf3d +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "" + +#: ../../api/events.rst:981 +#: ba7506ec538a430493d6a2010d86c710 +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "" + +#: ../../api/events.rst:987 +#: ../../api/events.rst:1019 +#: 367f92343bc64207970e6a72c687716d +#: 09d780eee4834c02bccf9c957d6a8cf6 +msgid "The current state of the reaction." +msgstr "" + +#: ../../api/events.rst:989 +#: ../../api/events.rst:1021 +#: b19a600ee7604f58ae7c7dae8826a694 +#: 6e25ca528d3649428e675864d9383bf7 +msgid "The user who added the reaction." +msgstr "" + +#: ../../api/events.rst:994 +#: c55e19feffcb41368d0fc845e8ae8880 +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "" + +#: ../../api/events.rst:1004 +#: fc5f26cb8154484282163f3be1d72ecb +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "" + +#: ../../api/events.rst:1010 +#: 602b41b73b974da69daf8f4af20d682b +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "" + +#: ../../api/events.rst:1012 +#: f0e3d9f9640149579db72c4d79b4b9b7 +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "" + +#: ../../api/events.rst:1016 +#: 3e9d3eacd60d4aa38b1c604cfbc3af0c +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "" + +#: ../../api/events.rst:1026 +#: adb3323cef574cb280e6fcadbcd9d1cf +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "" + +#: ../../api/events.rst:1036 +#: 9487bf16e1d148c6918cc08f09685396 +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "" + +#: ../../api/events.rst:1042 +#: 957dda2d335345a6a9873f634958c021 +msgid "The message that had its reactions cleared." +msgstr "" + +#: ../../api/events.rst:1044 +#: 07322cdc6b664f13af8dca1e2b91081b +msgid "The reactions that were removed." +msgstr "" + +#: ../../api/events.rst:1049 +#: 0e10554d194944c49499801e107242a0 +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "" + +#: ../../api/events.rst:1059 +#: a2e41cfa30e1418aa393c0cf0d1858f8 +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "" + +#: ../../api/events.rst:1067 +#: dfa4f0b46a1048fb9196d4cab53e7e96 +msgid "The reaction that got cleared." +msgstr "" + +#: ../../api/events.rst:1072 +#: fa250169bf22484892b7b04838eb6a62 +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "" + +#: ../../api/events.rst:1083 +#: 35ea4a4f51b14096be194c1b45b9980e +msgid "Scheduled Events" +msgstr "" + +#: ../../api/events.rst:1086 +#: 92289345aa99456e8fccb0d2bedcc037 +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "" + +#: ../../api/events.rst:1088 +#: ../../api/events.rst:1097 +#: ../../api/events.rst:1108 +#: ../../api/events.rst:1119 +#: ../../api/events.rst:1132 +#: ../../api/events.rst:1143 +#: ../../api/events.rst:1156 +#: 397fd90fe30649a59c540215efdd33f2 +#: 9262461979874e4ba80b732bd9128414 +#: 2fd67e22f8f24a24a4f09f34a9e9d221 +#: d1665efce5a24edea7b9f156c11971dc +#: f1a230d4368d427a8aa0254e2144a131 +#: 5d2d9f01bc57458b94256b5aaae996bc +#: e0576265fd4140f3a91040bbb9245078 +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "" + +#: ../../api/events.rst:1090 +#: df55f40708a14557bca10e280cadffcd +msgid "The newly created scheduled event." +msgstr "" + +#: ../../api/events.rst:1095 +#: 3003cf8ca0d9419d9d22b0f170953af8 +msgid "Called when a scheduled event is updated." +msgstr "" + +#: ../../api/events.rst:1099 +#: f4adbcfb52fd47f483e7dcff7ef80d89 +msgid "The old scheduled event." +msgstr "" + +#: ../../api/events.rst:1101 +#: dd0e692f4c5a4846b85c3503724118c9 +msgid "The updated scheduled event." +msgstr "" + +#: ../../api/events.rst:1106 +#: a5186e52c5b5474589a4e4fce901f851 +msgid "Called when a scheduled event is deleted." +msgstr "" + +#: ../../api/events.rst:1110 +#: 30ee4a060f724db18a7e1b6d5dae9c6f +msgid "The deleted scheduled event." +msgstr "" + +#: ../../api/events.rst:1115 +#: fabb729a4b424d468699c4b45e7f928c +msgid "Called when a user subscribes to 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_add` instead." +msgstr "" + +#: ../../api/events.rst:1121 +#: 65b1bb809e964351ab01b21f5d03bce1 +msgid "The scheduled event subscribed to." +msgstr "" + +#: ../../api/events.rst:1123 +#: 1d1f095f702e4d1cba2e0300dfb1d7cd +msgid "The member who subscribed." +msgstr "" + +#: ../../api/events.rst:1128 +#: 0e3eb0e978f147ee8ac9f2ad8b364954 +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "" + +#: ../../api/events.rst:1139 +#: 009d57aba14a48edb7352ac0171cad61 +msgid "Called when a user unsubscribes to 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." +msgstr "" + +#: ../../api/events.rst:1145 +#: 7fa34a768768480d8411a6b67d092bf9 +msgid "The scheduled event unsubscribed from." +msgstr "" + +#: ../../api/events.rst:1147 +#: ca841d99fac740dc81c93bccf1047b92 +msgid "The member who unsubscribed." +msgstr "" + +#: ../../api/events.rst:1152 +#: 42dbcfa7372c454aa0641aba41689b96 +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "" + +#: ../../api/events.rst:1162 +#: fdab4d3cb6594493937e482cf6f3a3cd +msgid "Stage Instances" +msgstr "" + +#: ../../api/events.rst:1166 +#: 5e4de8c9a02d40568f53b22e2928b78b +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "" + +#: ../../api/events.rst:1170 +#: 4362791ab4114db28b8dd19f7ef7ef07 +msgid "The stage instance that was created or deleted." +msgstr "" + +#: ../../api/events.rst:1175 +#: 885999ae3cce4971a022991fe5ae4fcd +msgid "Called when a :class:`StageInstance` is updated." +msgstr "" + +#: ../../api/events.rst:1179 +#: cf4fabc871504d3c8c5ef7cf2452c119 +msgid "The topic is changed." +msgstr "" + +#: ../../api/events.rst:1180 +#: 6f32d000266b4d3480e3e484435b15a8 +msgid "The privacy level is changed." +msgstr "" + +#: ../../api/events.rst:1184 +#: 0330580b863a4796b086995635979c2c +msgid "The stage instance before the update." +msgstr "" + +#: ../../api/events.rst:1186 +#: e2d1b23c3728472291d4c10ad1e01549 +msgid "The stage instance after the update." +msgstr "" + +#: ../../api/events.rst:1190 +#: 17f76be0c525474bb937f182666eecd1 +msgid "Threads" +msgstr "" + +#: ../../api/events.rst:1193 +#: 5b3f3d40701149f19d64a98a31e8adc5 +msgid "Called whenever a thread is joined." +msgstr "" + +#: ../../api/events.rst:1195 +#: ../../api/events.rst:1208 +#: ../../api/events.rst:1221 +#: ../../api/events.rst:1243 +#: 423b8f3188c34015b3769ffa0fcab9ca +#: aa7a8ccefad941ce85f2f7bcfb056245 +#: 2a9ac789aa754c35880a62d90d5b91cf +#: 61dce03189704726b094d79abe9d639f +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "" + +#: ../../api/events.rst:1201 +#: 5ec02873673f4719852827e4a4fc1fd5 +msgid "The thread that got joined." +msgstr "" + +#: ../../api/events.rst:1206 +#: 59bfa1563ad747e98d7057340d442f09 +msgid "Called whenever a thread is created." +msgstr "" + +#: ../../api/events.rst:1214 +#: dfb084bf5ccd42c29d6b55512463bf9f +msgid "The thread that got created." +msgstr "" + +#: ../../api/events.rst:1219 +#: 8c4ff18149944315a69630439fd143b6 +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "" + +#: ../../api/events.rst:1227 +#: e603d6dd1e314cbcbd72c972a610957c +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "" + +#: ../../api/events.rst:1234 +#: 22b7be80106949e8ac757cfca635aa77 +msgid "The thread that got removed." +msgstr "" + +#: ../../api/events.rst:1239 +#: 31254204062147f58ec2e17d16079cd6 +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "" + +#: ../../api/events.rst:1249 +#: c836cd8213994a84b0e2a036731f5f51 +msgid "The thread that got deleted." +msgstr "" + +#: ../../api/events.rst:1254 +#: bca48653dfbd43498473f0a6031eb84b +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "" + +#: ../../api/events.rst:1263 +#: 7a457e60855f40f1a930b8e3039c0c99 +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "" + +#: ../../api/events.rst:1265 +#: 258b46c075964405929ecf4a53efca46 +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "" + +#: ../../api/events.rst:1271 +#: 3768dbfed1414b8bbc6b887601538d2d +msgid "The member who joined or left." +msgstr "" + +#: ../../api/events.rst:1277 +#: 5db932fbff93400397baddb4e85e642d +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "" + +#: ../../api/events.rst:1291 +#: ../../api/events.rst:1309 +#: 0b546f8438b44009bacd6b97af0d4b28 +#: f4fb02cac22b4700aded6cad53c12eb7 +msgid "Called whenever a thread is updated." +msgstr "" + +#: ../../api/events.rst:1295 +#: 0df795db76f04dcaa3d951202f9797f4 +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "" + +#: ../../api/events.rst:1301 +#: 73530b47c0c14ea596341620dbb70d97 +msgid "The updated thread's old info." +msgstr "" + +#: ../../api/events.rst:1303 +#: e4ad496582ca4ac58d49cb868450344f +msgid "The updated thread's new info." +msgstr "" + +#: ../../api/events.rst:1311 +#: 21b1f36456ed41fcb1da52570c551b1a +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "" + +#: ../../api/events.rst:1322 +#: 1060458a9a7a4da09c743728271e7d05 +msgid "Typing" +msgstr "" + +#: ../../api/events.rst:1325 +#: 36ddd6002ec044c082db85e340ffd365 +msgid "Called when someone begins typing a message." +msgstr "" + +#: ../../api/events.rst:1327 +#: d7bdd9fa230e405d81dbef6cd1a0d7e6 +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "" + +#: ../../api/events.rst:1331 +#: 1bcac394435946fdac38181633fad1cb +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "" + +#: ../../api/events.rst:1334 +#: ../../api/events.rst:1351 +#: f4c7ce967027460c941934be2c781d19 +#: 4c2cab82fe0d4d7d9bb9226ebd0f9ba1 +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "" + +#: ../../api/events.rst:1336 +#: 6bd9c433daea4c2e8516e44a45101692 +msgid "The location where the typing originated from." +msgstr "" + +#: ../../api/events.rst:1338 +#: f0f1ef599c534a958cf8278f9d26283d +msgid "The user that started typing." +msgstr "" + +#: ../../api/events.rst:1340 +#: 3f0964e9777347c394ba677711de264d +msgid "When the typing started as an aware datetime in UTC." +msgstr "" + +#: ../../api/events.rst:1345 +#: 022f547d6ee849aa9405bdbea72c23b1 +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "" + +#: ../../api/events.rst:1348 +#: a2234f0918c24dadbdf649c1a93e3e57 +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "" + +#: ../../api/events.rst:1353 +#: dadfbe18822e4f56a787d7eee475f016 +msgid "The raw typing payload." +msgstr "" + +#: ../../api/events.rst:1358 +#: 72cc8acd59874ea7a93625ae002a2026 +msgid "Voice Channel Status Update" +msgstr "" + +#: ../../api/events.rst:1361 +#: faf876de35744e14972adcc55c9f6413 +msgid "Called when someone updates a voice channel status." +msgstr "" + +#: ../../api/events.rst:1365 +#: c82e605cb0a14ccfba06f997667f1f06 +msgid "The channel where the voice channel status update originated from." +msgstr "" + +#: ../../api/events.rst:1367 +#: 17c48469e42a4a4ba626198df396e32d +msgid "The old voice channel status." +msgstr "" + +#: ../../api/events.rst:1369 +#: cada34ee29ff4e7eb0d6d6c47797ec4d +msgid "The new voice channel status." +msgstr "" + +#: ../../api/events.rst:1374 +#: 52dd6b5033a0412b9bba7a8a156f8e4f +msgid "Called when someone updates a voice channels status." +msgstr "" + +#: ../../api/events.rst:1378 +#: 1bb0b4ef346543ad92c14dd99a025211 +msgid "The raw voice channel status update payload." +msgstr "" diff --git a/docs/build/locales/api/exceptions.pot b/docs/build/locales/api/exceptions.pot new file mode 100644 index 0000000000..ef3e860f5b --- /dev/null +++ b/docs/build/locales/api/exceptions.pot @@ -0,0 +1,621 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/exceptions.rst:4 +#: 905c88850259467092e1b8e338f90565 +msgid "Exceptions" +msgstr "" + +#: ../../api/exceptions.rst:7 +#: 53e7e8d0686b48dcb95509c92b7a7b84 +msgid "Exception Hierarchy" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandInvokeError:10 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:16 +#: ../../api/exceptions.rst:11 +#: 889371d042124d10a698ad8826c671c4 +#: 47b569e25f35402db0c5bb4132894053 +#: c335ab33962a47c78ca52d33e998481f +msgid ":exc:`Exception`" +msgstr "" + +#: ../../api/exceptions.rst:12 +#: dd81b2c40c4443f1994d19146092117c +msgid ":exc:`DiscordException`" +msgstr "" + +#: ../../api/exceptions.rst:13 +#: 35e1705ec8384fe586c477bfb995fe1f +msgid ":exc:`ClientException`" +msgstr "" + +#: ../../api/exceptions.rst:14 +#: dfedaace178b4b04884f50be480617c9 +msgid ":exc:`InvalidData`" +msgstr "" + +#: ../../api/exceptions.rst:15 +#: c27d0bb098a447428a284ca5d023c57d +msgid ":exc:`InvalidArgument`" +msgstr "" + +#: ../../api/exceptions.rst:16 +#: 51774789129f449cb560ddcfaa9a803f +msgid ":exc:`LoginFailure`" +msgstr "" + +#: ../../api/exceptions.rst:17 +#: 3afa22c5daa04e60b127c44ec5d07180 +msgid ":exc:`ConnectionClosed`" +msgstr "" + +#: ../../api/exceptions.rst:18 +#: 4d88732f5db34d53b20962e8afa25a46 +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr "" + +#: ../../api/exceptions.rst:19 +#: 3e7d901618d546ca925a8ecd3cf9d136 +msgid ":exc:`InteractionResponded`" +msgstr "" + +#: ../../api/exceptions.rst:20 +#: c6fa2936034d4731ab1aeaa4b614ff42 +msgid ":exc:`NoMoreItems`" +msgstr "" + +#: ../../api/exceptions.rst:21 +#: ea3b24d6eef44faa8ef8ec9249070490 +msgid ":exc:`GatewayNotFound`" +msgstr "" + +#: ../../api/exceptions.rst:22 +#: 532d3c95695d4d6fa4e0473791f4a4f7 +msgid ":exc:`HTTPException`" +msgstr "" + +#: ../../api/exceptions.rst:23 +#: 9eebfbbe60bb4106a3b639f6f45ad07c +msgid ":exc:`Forbidden`" +msgstr "" + +#: ../../api/exceptions.rst:24 +#: 1bde5328566b4e7fab1aae599ee1a565 +msgid ":exc:`NotFound`" +msgstr "" + +#: ../../api/exceptions.rst:25 +#: 0a58a73846bc4a18941aa971d078364b +msgid ":exc:`DiscordServerError`" +msgstr "" + +#: ../../api/exceptions.rst:26 +#: f29304804655430dad81c3d59e546a63 +msgid ":exc:`ApplicationCommandError`" +msgstr "" + +#: ../../api/exceptions.rst:27 +#: b37502c50f0843ae943c87c7dd67d5b6 +msgid ":exc:`CheckFailure`" +msgstr "" + +#: ../../api/exceptions.rst:28 +#: 0cce9f5fbcb74b468b1486d842bc37ce +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr "" + +#: ../../api/exceptions.rst:29 +#: c0bc52a0a7354ea6949487633ceab22c +msgid ":exc:`ExtensionError`" +msgstr "" + +#: ../../api/exceptions.rst:30 +#: 8398035b6616440587f4fd9c558f9e1a +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr "" + +#: ../../api/exceptions.rst:31 +#: 1895dc7629c543ff9faff1a0910e9f71 +msgid ":exc:`ExtensionNotLoaded`" +msgstr "" + +#: ../../api/exceptions.rst:32 +#: 228943094df54f5e85488f9097fbf719 +msgid ":exc:`NoEntryPointError`" +msgstr "" + +#: ../../api/exceptions.rst:33 +#: cf4495b523474d45bfc0b6dd6d5c12ec +msgid ":exc:`ExtensionFailed`" +msgstr "" + +#: ../../api/exceptions.rst:34 +#: 49d4a6cc59664a2e8343d03b2aec0c6e +msgid ":exc:`ExtensionNotFound`" +msgstr "" + +#: ../../api/exceptions.rst:35 +#: 58a32d7c9bea4910a40a79acc301f307 +msgid ":exc:`sinks.SinkException`" +msgstr "" + +#: ../../api/exceptions.rst:36 +#: ecc415221b5d43c88a9b019f81916dea +msgid ":exc:`sinks.RecordingException`" +msgstr "" + +#: ../../api/exceptions.rst:37 +#: 6cb46421436a4f5da41d5ce4f96b8b72 +msgid ":exc:`sinks.WaveSinkError`" +msgstr "" + +#: ../../api/exceptions.rst:38 +#: 38041836606a4fcfba3572a7c0daf8c7 +msgid ":exc:`sinks.MP3SinkError`" +msgstr "" + +#: ../../api/exceptions.rst:39 +#: 2db35433e3264ecf98330cb7705502ff +msgid ":exc:`sinks.MP4SinkError`" +msgstr "" + +#: ../../api/exceptions.rst:40 +#: ba5662ba422a4369b2b8f1f665378896 +msgid ":exc:`sinks.M4ASinkError`" +msgstr "" + +#: ../../api/exceptions.rst:41 +#: f5c7a61d892d40ec91dd9f022d327953 +msgid ":exc:`sinks.MKVSinkError`" +msgstr "" + +#: ../../api/exceptions.rst:42 +#: 1989e76c0f0d4288b8d71f7553a64c97 +msgid ":exc:`sinks.MKASinkError`" +msgstr "" + +#: ../../api/exceptions.rst:43 +#: 4d93b42667a445899b60eece4adce2c2 +msgid ":exc:`sinks.OGGSinkError`" +msgstr "" + +#: ../../api/exceptions.rst:46 +#: 0a8986c1f9fe4880bb2c64822a11ab4f +msgid "Objects" +msgstr "" + +#: ../../api/exceptions.rst:48 +#: 7aa7998b08df4af68c8ace342caa93b5 +msgid "The following exceptions are thrown by the library." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.DiscordException:1 +#: 7a440737679a426fa7a7c89f2a31db07 +msgid "Base exception class for pycord" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.DiscordException:3 +#: c63dd0e386964ccfb2ed6fd3a6be053d +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ClientException:1 +#: 022cc7b12b61404d95709c9876f0e517 +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ClientException:3 +#: 72e32d92abb148ce85ccfff0a1d1ada7 +msgid "These are usually for exceptions that happened due to user input." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.LoginFailure:1 +#: 35b288843d43407289c000fe32985e83 +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.NoMoreItems:1 +#: e8c7fa94b9074f5685b8ff305095e230 +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:1 +#: 79d0ec5004a64282934d619362c00adc +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:5 +#: 5cea3ad7edfc46f98cc3d3639fe2c58a +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandInvokeError:0 +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:0 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionError:0 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:0 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotFound:0 +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:0 +#: ../../../discord/errors.py:docstring of discord.errors.InteractionResponded:0 +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:0 +#: ../../../discord/opus.py:docstring of discord.opus.OpusError:0 +#: ad6ceaf381c244c196eaa9e2c5c54f62 +#: d516381deef64c62a01e612de0485c15 +#: 36fe0b953f674793b8dd415161dc94f7 +#: 9e1201a1fc2546dc917e8cc272c39dbb +#: b222bcaab3384a428d9f3869d7c49166 +#: 5d3bb39d794c4babb6473ae2943d4ae3 +#: eaaa700780244b3ab76d45ff50c8fa38 +#: fcbe8c71151e4e77b1c0bbb59f3df1c4 +#: 00aed8628a2c4432af93e9fc483154aa +#: 8549f4429cce4661a795fb271ca15397 +#: 10825f2b28304b7aa76626de12eabd04 +#: de1455fa8690404684e1dea43f6ffeb4 +#: 6b22000658564039b294a02bf2e6978a +#: 7ec2e0f0129b42fda6b30c5c761c88c3 +#: 9474bf04f702459f93552f7909337706 +msgid "type" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:9 +#: b9be9bcf60594106b05151c479fcbb62 +msgid ":class:`aiohttp.ClientResponse`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:13 +#: 4cd8b7f4c80243608b629e05a0b82093 +msgid "The text of the error. Could be an empty string." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:14 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionError:9 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:9 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotFound:12 +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:15 +#: 130c6752e7eb41e7943175215cfc448d +#: 765da4906ff94393ad18c1d66850c3b8 +#: 4a69a70e867e4a23a84ef67491a86a84 +#: 467be59d59894b21a4b6c9c2f2aa5ef9 +#: 8f37cdfd7fb2410895855b1ab1cb10ac +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:19 +#: b77d580f0e7840b5971d4135181ac6f4 +msgid "The status code of the HTTP request." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:8 +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:21 +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:27 +#: ../../../discord/opus.py:docstring of discord.opus.OpusError:7 +#: 3c18707e0ee841358f3dd424085d1b30 +#: 46b36037252e4cb0be7044ee26eec116 +#: 862454a4c48f4cebb4f3836d9f02381d +#: 12f947d587da438ea01b9101da0a9497 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.HTTPException:25 +#: 2ed3cec390ee4551b59099fdde2a8dcd +msgid "The Discord specific error code for the failure." +msgstr "" + +#: ../../api/exceptions.rst:0 +#: 07ff437c106b4199ab1b15405361a8de +#: 477f7375a778484c8d34a844717b3aad +#: c9c817fae24b4e3da05a33a666ae0be5 +#: 61beddc1a3fd4da4ac0427c7f0747e06 +#: 52102f458d044481b865bebfa84bf489 +#: 36f2eab9bb524eecb4ce1aba97bc42c7 +#: 01ee9ba2deb744d7b92451a931529aa1 +#: 40eab0def975438badd887750af77f0b +#: ed0e9e2b68c04c76b794fc6e8e472c81 +#: 6de9bb08e23a417ca3708e32c93af240 +#: 80abf15e5074477e8f43380ebd8e2eb5 +#: 2492bdfb6bbc4d13ae0d8ea01b564017 +#: 771beee3311e448086db629aee6c4070 +#: 4b046040948c49c289a15ac2a5537311 +#: 4a1d7c3c1e934702ab6f71ca0c36450f +msgid "Parameters" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.Forbidden:1 +#: 67a7c71de0a1470dbabcc5de48d5aee9 +msgid "Exception that's raised for when status code 403 occurs." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.Forbidden:3 +#: ../../../discord/errors.py:docstring of discord.errors.NotFound:3 +#: 09342b5d6dc549dfbc16c2ce0935932c +#: d149e85486744382a40735339e24667b +msgid "Subclass of :exc:`HTTPException`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.NotFound:1 +#: 25d70cb14b8640ef94180870b2575e45 +msgid "Exception that's raised for when status code 404 occurs." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.DiscordServerError:1 +#: 51a32935531241329221c1e89e97ff41 +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.DiscordServerError:3 +#: 4b503b2ec1944eca98de74a200c2c179 +msgid "Subclass of :exc:`HTTPException`." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InvalidData:1 +#: 6b581300399849dd9c96910c90a8d543 +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InvalidArgument:1 +#: aaa3f0a0a8be409594bf857e3ca59802 +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InvalidArgument:4 +#: a4a8722ecbdb4fbba7477c447b82440e +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.GatewayNotFound:1 +#: 22be332c77ad43c29747f0c830b50dec +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:1 +#: 20116a3ed16a4f098c4b3b69a5e341ca +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:6 +#: d509ada602b848bdbd50c21cf0233978 +msgid "The close code of the websocket." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:12 +#: 7f37197e4ee74530bb88cb21b6a73f0a +msgid "The reason provided for the closure." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:18 +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:13 +#: 3d446df749944ec4ab403b1ae13406af +#: 171c5579acb2413c935a3d3e8f1d1b45 +msgid "The shard ID that got closed if applicable." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ConnectionClosed:20 +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:15 +#: 0c5edc13c29a4fcba0c5644e1ebe0e19 +#: a5aede21eb0f4acc8948671949905250 +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:1 +#: c35e141e7013495ea8c6f6f71dd78203 +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:4 +#: 9196e61bb84944db8fff5530c4d0d413 +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:7 +#: 030b7d6b61454efebb407201550cd7a9 +msgid ":attr:`Intents.members`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:8 +#: b7642c9a817a49da89462e50b15e975b +msgid ":attr:`Intents.presences`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.PrivilegedIntentsRequired:9 +#: 470bcd80cfd7496d98de1a3f2be5c22a +msgid ":attr:`Intents.message_content`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InteractionResponded:1 +#: 3573b8e0f8ab401e8b9b71a868031367 +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InteractionResponded:4 +#: 34a4cd18050c48ed8392c9700be6d396 +msgid "An interaction can only respond once." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InteractionResponded:10 +#: 9943182c689e42acbd083cbe6818da5d +msgid "The interaction that's already been responded to." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.InteractionResponded:12 +#: 5e386ba748274173b7734455c842a270 +msgid ":class:`Interaction`" +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.OpusError:1 +#: 1c1ea797ac5a40129e42d95b86fd38d4 +msgid "An exception that is thrown for libopus related errors." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.OpusError:5 +#: c7c96aac320a4bda9ce5bc7fcfada69f +msgid "The error code returned." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.OpusNotLoaded:1 +#: b7f591cca75a46a0b206b4c9859d3aa5 +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandError:1 +#: 7cabf009ba0e4a83b39b4876c02bb864 +msgid "The base exception type for all application command related errors." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandError:3 +#: 80e6f2d8a4d940c292d9d094f3b67480 +msgid "This inherits from :exc:`DiscordException`." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandError:5 +#: 799361c7da824355a6b0744337a69ed3 +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.CheckFailure:1 +#: c81f4d594afa42ce8860c68647fc343c +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandInvokeError:3 +#: ../../../discord/errors.py:docstring of discord.errors.CheckFailure:3 +#: 6fb9bf3276c74e69b2a38256c28e1ec0 +#: d5608f50352b46ada015d057ebd2d8a3 +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandInvokeError:1 +#: 014df6d7579143978bdc8d92695bc502 +msgid "Exception raised when the command being invoked raised an exception." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ApplicationCommandInvokeError:7 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:13 +#: 9b23087d6dab4078a722e14af474ff0a +#: de46c67c0d34451d8cf4676f58567c93 +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionError:1 +#: c595f594796040aea80635be71c18f09 +msgid "Base exception for extension related errors." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionError:3 +#: 4ac31a298cd0422daf77b257ce912716 +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionError:7 +#: 25c5c3c8fb2d458cbda274f919af01a4 +msgid "The extension that had an error." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionAlreadyLoaded:1 +#: b5b0ffc88ecb415ebe57a386b79458bc +msgid "An exception raised when an extension has already been loaded." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionAlreadyLoaded:3 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:3 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotFound:3 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotLoaded:3 +#: ../../../discord/errors.py:docstring of discord.errors.NoEntryPointError:3 +#: 6c5a2c9815dd49d2b3c1d2a23baa67d8 +#: 28e512cb2cf24be19c6e32bc23841bbb +#: 39c6885c65794beb9120470780ac767e +#: e2125d928b54437bac568f64e733bfe7 +#: a59b7a8232614578bc2f7a2c3c532ffc +msgid "This inherits from :exc:`ExtensionError`" +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotLoaded:1 +#: 53e72a006f6241409b12457ba8b8e427 +msgid "An exception raised when an extension was not loaded." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.NoEntryPointError:1 +#: 67c40091d97d405098f489ef8ec672d8 +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:1 +#: 8168ccb6e48c40acacdcd3767115a1e7 +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionFailed:7 +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotFound:10 +#: 2e49b1133d3c4757ba35ed0415f07b34 +#: 8c44c489681d42b6a508ccb656164b0d +msgid "The extension that had the error." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotFound:1 +#: ef648aab45b0455690d58d28dfbe3e38 +msgid "An exception raised when an extension is not found." +msgstr "" + +#: ../../../discord/errors.py:docstring of discord.errors.ExtensionNotFound:5 +#: 7d6e25e7e1c54cbfbeb620fbdcfeaa37 +msgid "Made the ``original`` attribute always None." +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.SinkException:1 +#: 21739c1cf0ac475b89bb1107726f3f79 +msgid "Raised when a Sink error occurs." +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.RecordingException:1 +#: 7e64bdea145d4bb7875e1bcef1a3a483 +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.WaveSinkError:1 +#: 6e4acf4cb73947dca4f423639b8cab3f +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.MP3SinkError:1 +#: 6ae6e3ecf68c4d69ab5c019cba190af4 +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.MP4SinkError:1 +#: 672f48e9a57f4a60b9061b0e91e2abf4 +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.M4ASinkError:1 +#: 2389561c34a8497c91f4375f02708fb1 +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.MKVSinkError:1 +#: b90dda587cf54324aee88041db439ac9 +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.MKASinkError:1 +#: 218e43ce373a429e98b880bcd9e4f748 +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "" + +#: ../../../discord/sinks/errors.py:docstring of discord.sinks.errors.OGGSinkError:1 +#: 9cdf58aa453f4e2f896a496c0a20bd25 +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "" diff --git a/docs/build/locales/api/index.pot b/docs/build/locales/api/index.pot new file mode 100644 index 0000000000..6d8b072a83 --- /dev/null +++ b/docs/build/locales/api/index.pot @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/index.rst:16 +#: +msgid "Table of Contents" +msgstr "" + +#: ../../api/index.rst:4 +#: 8992526d88c64b82a566631cc042bf6b +msgid "API Reference" +msgstr "" + +#: ../../api/index.rst:6 +#: 262a2f48a4e843069ef5e14e69074c5c +msgid "The following section outlines the API of Pycord." +msgstr "" + +#: ../../api/index.rst:10 +#: b91b68d91ae540459d4bd07dd3c8177f +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "" diff --git a/docs/build/locales/api/models.pot b/docs/build/locales/api/models.pot new file mode 100644 index 0000000000..d243e7188c --- /dev/null +++ b/docs/build/locales/api/models.pot @@ -0,0 +1,19585 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/models.rst:6 +#: 38e0de79b9364f9192187f5cafbf86e6 +msgid "Discord Models" +msgstr "" + +#: ../../api/models.rst:8 +#: 2d341c7d46244d2abbc87149a4052863 +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "" + +#: ../../api/models.rst:13 +#: fa5a9d512c964a36a57a16409779d3d8 +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "" + +#: ../../api/models.rst:16 +#: 3c643f93a2804663b7ee2b81f054dbe3 +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "" + +#: ../../api/models.rst:19 +#: af70c20f9fc54371a461c00f1c6b9508 +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "" + +#: ../../api/models.rst:26 +#: ffd5a4f0c4bd431d8781dff93d7e3373 +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:1 +#: 4b6e88f1ca724d2c8d7ffbd0482931ad +msgid "Represents a CDN asset on Discord." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:7 +#: 936e301eb51d45cbac03ca0b73a3b6fc +msgid "Returns the URL of the CDN asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:11 +#: 76958866276249ce9521bc01dee3f1e2 +msgid "Returns the length of the CDN asset's URL." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:15 +#: 8117bae6fc854836a148475fae0c6b4d +msgid "Checks if the asset is equal to another asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:19 +#: a1a120421df24e4391f78742e4725277 +msgid "Checks if the asset is not equal to another asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:23 +#: 08223d7368fe4ec1ae8fb6b483cef2ac +msgid "Returns the hash of the asset." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:0 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:0 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:0 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:0 +#: ../../api/models.rst:0 +#: b168fffcce71401eb693e9e18b66c905 +#: 1000e6e5e6224041a432ab22340c6a22 +#: c2cf03ff152a4746a445c6e09c4ecf4d +#: de160c5eabbc4424aa90922d81f49f99 +#: 9b463aa7bf23454dbdca8aa23cc8539b +#: e4bba7ea10be4e9ea126e3aa6e9ad74a +#: 7c47ce6d35854eabae233cb4388c1b7c +#: 0c17b7715600433fac4d35bf0017e7b7 +#: 47cf29f45d094211a6159f29fd08d82d +#: 8183ff58df9b4e73bc33a30fb382eb7b +#: 021c63b182bb4e81a6b50633e6be8d94 +#: a24c93013f654f39aec619169aee3ffd +#: 7eeef0117d73468bbf069e0735089439 +#: c7ef03b91163401782f9a92f6ce2c03d +#: 868a9098949744cf9fcf7c6f42e516f7 +#: faad64e33270420d9540268e1052426c +#: 6836891e883c423481ebac9ffd750fa1 +#: bb58123a93434a7d923686db2691d9bf +#: 7cc43cf3dd184cd686b8bf1ec6c776c2 +#: cf2ef7aba94a4080be66ea0480c20921 +#: b22c89b9409f45538c044c97893adb19 +#: be92e79b8562492497e0d816d28b3038 +#: 2c7f28585a7445caa3375c657bfa10fe +#: c46eadcf6cc141368f08bb53bfa5ea54 +#: 9d168ece95784b269773220dae484295 +#: 2a4d60ac337a46c0bed1bc26c226038f +#: 883bef32346f462e98c0bdec679b1efc +#: d2e07740ec32449eb410f0bdef8452b3 +#: 12d301f98b5e48a3873512211a277fb8 +#: c831fa537f414a13a0b6020ed358e961 +#: d490697a012c42d5bbf554978ed73d0e +#: ad6aee1e9b0642d4a2598a8a947336f6 +#: 8358e6376bbf4ed99e959db533fd3e82 +#: bce09d4f70644d45949114525a9e232f +#: f9d7b016a79b4441b05cde2a98ff2f73 +#: f0fe6c67049d4b96a437cd6ff3a5018d +#: fd2871dc9d2b437eaf077d906752bc0a +#: 67deeae9eedb44cc97fa9c9c32d8fb7f +#: c4b82d4c337b48fb8cecced3bfaea55a +#: efe3e572d3bb42b9a47d27498a8b1ecc +#: 18a8b12540854ba4bd1ccf6a3faf2044 +#: cfa8cd151dec4643af4fb785fc99556c +#: cb7c79b0236c445790339b76b58e96f0 +#: e898e44df463451c9ed547af0b4667fd +#: 7b1c6d12b4a842a997b5465a8ddbb287 +#: db10503e23c74cc18f50099e14cc0893 +#: 8df6ae442263404b9f2b7ed7ae19f057 +#: 41f3ff189d5746b3b37769fc2f8e683d +#: 7db2c31f6b6b4368877cec63b61d725c +#: a70491d545954835a7ba3ee88e35ab11 +#: 2bb5fe9dcfdc4277aedd1b8cac88e88f +#: 8fa9dbf39d3e4d458673e6e35abcb4c9 +#: ae50dcfdf19047f39c36d0c0cb946484 +#: 82c457d86c2142bcab50d8842bda9063 +#: 92bc5070285c4eb9b08cec9bafd803a0 +#: 7cde32a58ded4bc89d170ba90e584f79 +#: 81e36a1bf1c14fe2a37b210df30a3427 +#: a3bb38861f7d4b6f9fc2cde50a4f6e90 +#: 728aa08043a64adda19d956c6ff44128 +#: 9b83c72d2fe047bf93dffa69af7efd07 +#: 4ad270a9f286434ea4210e41b4d84a2b +#: 185fb682d8514ac8aac5a55b2bb0b3dc +#: df2fb0faeb9443da8ba9f844182584ef +#: 4cd55485c5ec409cb04d2efb51172d09 +#: a226e4fd036c4e87a2f9e3ab17fc1ca1 +#: fe151c499f3f4ed9af0da6bfd29cd5c4 +#: abffcbc2c62646a59bd6a3492faaf76c +#: 8bfaf5d7e1804eb5bf58cca632c716c2 +#: 3993991579084341a58ae9581980d8f2 +#: 483e8acc9cae4b48aaaa0566e32bbf6c +#: b4903e4b445749fc8bb0e9ed08704b46 +#: d4e42741de964a12b603dfbee3a9228f +#: 1d83346277d643b291dca0b949e3b058 +#: 4e3426bccb324f8ca84175605fe88d97 +#: a7ad261a3e4e408fae23d5a5d4336802 +#: 978731b4ff544335acfad6f762b91b3e +#: df9374bb269a4de2a914a52d64365053 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: 4cb7c4616c3f4148a24886c6b093802f +#: 236ec73956f54ddeb6f84a56891fcb89 +#: cc07ae26c25c4dd0ae3230c9ab0b250e +#: 395d6fa7744a433680d00610ff15903b +#: ab5136636a9b494987c0ff718584e8a4 +#: 6764950e377445da85a4d1811f0c8e22 +#: 09158102339141aa831ec88bcd5172ba +#: 6f21501f0fc44de8a230dfe5520ba4d8 +#: c2ced39c9bcf41eb8ae1b89c2a31bdc7 +#: 8a28c177441341bdafe6f7b5bf51b3ad +#: cca8fa7039a246a987a715136bbb716f +#: 1ede974354eb4aacb1fbe0e23324b84c +#: 35d72b32ae384e7a861183a24b33fbba +#: 0069165c98b7464b96fbbb7166964749 +#: 0da5b841e1a64a5aa3386b30590d9ba1 +#: 8d9c675436a843fda5aefc0c5ca1a771 +#: 94839abb13324d668d18ce4819702037 +#: 243524a355d74aa1877c21681f2129b0 +#: 2ad70d3718a4499cb9197f85eb4abf87 +#: 1d1d40113aa44d02a024a2e7c6af590d +#: 06d8e1e6f99d43f6b44a4b17ffed5940 +#: 329318189117483a982c9e8e7e7c7f5b +#: bfe54e71d02c4aa898bc086de43c0fe9 +#: e043e853d8e1420f8dee4e9113d12b91 +#: f1ee6376f6c040a2aad209b72b0be9bc +#: 32729bb6214c4a0d9faddbd2797c356b +#: eb267ddf2b1e4d4d9410506298286e8e +#: 873345dd87ca49239a2b945b36314616 +#: 965b7a47b31d4342b52558167d1f8e46 +#: d5550f1857684ec7bbd25c2dc69e77d5 +#: 49366456ae834dccaa265241f0d6e37d +#: 8d76971834de4ad8ba8648a4cbdba094 +#: 20d5eae0167c48fab5e56d7b6ca5c812 +#: 5fca60d222044b80b2720cf43226d421 +#: 7f951592c76e44fdb9c335f8c5d03443 +#: dbdfad7ff5cc4874a896d44b0f3f6ef8 +#: b787727aa7554023997c19bf993ab10e +#: e11af96fd1e54b0f9a2d658c8668cb4b +#: e3461aa61c18415481c3008c147eec75 +#: 736293bc98dc44ef953e04647bf943d2 +#: c0290e7e55224582975b8958d9672985 +#: 79d53b121b944ca787057ca6d0dba4bb +#: 99fec02b7e5c422db3a225ad05503e8f +#: 9a3cc5035ae9445794cfb672ac35c5cf +#: 1401abb92a8c478182e4820e55c5e581 +#: 5cdd99fa13224b3aac13ca286c0e906c +#: a786f3558a6c4a3f908777222a0c22cb +#: 4d7e5fdae05b42c282e1d0abe75468b1 +#: 69168d3b70674e88a8437d7c46c57a00 +#: 4c077fc1f5ec46d7834bcc505ae214d9 +#: afccaf4008624c9fa4702aafb4ead554 +#: 8a87536792ca49408ba03ef79975d1b8 +#: eb4ae37ab9d440adaca2d9b424a8d787 +#: 70f44391c25f4553a7b739e706fd0de3 +#: 57dd79e3320545f78f75955ea9b3efc3 +#: 3e3d9b9ee935457a9d54d1cfd9380e10 +#: 7cded3a045a54ada8548227dec5dfe33 +#: c28cd91a73d74a05b903e323cf872bf8 +#: 55ac92940cef4c43ab304ccdb2e73655 +#: 2ba2b14737e44c37ade562c1a150118c +#: b0664912c95e45688a0ceb5256d00d2a +#: cd9dfffefccc4a53bfa9a915d228e90c +#: d32057aaa181485c81bf85fdd0176d53 +#: b4e695c4b9f7409392546c595f976e54 +#: 8886015422e547cf8add5fd3cf31adf8 +#: 98bdc0223ea74541b553f8e663bb1754 +#: aca25cae12c84ddb88e68f43d9f0fd36 +#: 8773038b1dcf44818a3003eb24e588b6 +#: ec109b19b04b454ab77b49d9dba42df5 +#: 5ccfad46417f47b3b475e50dc9e88858 +#: 82420b204a9c42feacccd7331d5746b6 +#: d4c94ab83e3f40cda81b63a1dc25a3a7 +#: e5f9c79d148349108fc3fb3b65c74338 +#: 4b5308b24da841e1a77440af0a6e8aa2 +#: 213344eb31fa496b9788a6815b0da89f +#: 17442b95cda94bbe93cdac9b08d1fdc9 +#: c92ef9c65ba84351b4e0ad0548da4223 +#: 2b99232596d6428e9160b234f5d59fb6 +#: c6a62d22799c440697994f89e0185783 +#: af849a97c11a4cfa9d1fcd768d4303c5 +#: 1ed0796b0ac44d4bb493a1b9b2b17954 +#: ed0d8bee8f97462a9c6252e281a7f6de +#: b7cc8a9016294f48b08f4c3545a19850 +#: b5a77b7bf8854f41b63e6ebc1e9881a2 +#: 26f5a18b166e4413be14156c8bffe61d +#: 41d9c7ccc2e546e38378d4e6468abcdd +#: d70c2b44ef9e4e6999d5865c51c068a5 +#: 3ada38ee06b84cada1f99d29110512f3 +#: a9f66bd7496c4650b06292bd8971ea5d +#: eeae2a2d25f849509fb98def6deec799 +#: e750b2b484f14a1f857aafd1507391e1 +#: 0c5d560d4f0d41f38c1dfd442428e923 +#: 1867185e023648f0a3a159327efa7af3 +#: 3afeb6e2c2384ba8b3e2be0cebb8c602 +#: a8c598b28fc0464496e911196333b862 +#: ce587ec167664ff68d8d8f47103e6ef2 +#: 5f823f048f334c9a909bea2fb1c903da +#: 1558a57ea81b44dc961f93835bfa60aa +#: f1c6ca300d45486689a5b289e780418a +#: d3e3cd5cc7ac40edaa0d274c8dbf3dd3 +#: 3ef7b5933cb84ee59773d2e7543c103b +#: 0f65cc4e06c94b34933666a38232c720 +#: 20b6659c69da42b0998cf81f1c7280bd +#: cbe7cbb0139540c8af52345d2b60d8d7 +#: 682b2013634244dc981de7d3ce1b3e23 +#: 5a576c0a231a47c6bf04e4761838b9a7 +#: eadb5672224643ec995a8be43e79571f +#: fae7aa52ae2443f49e4ffe41d8522ebb +#: 7d69aed321174b38bd830deb60f49aa9 +#: 381039a73b664f81a4f168ad5617a223 +#: 9a1e6f7439c24f38a40e2ec918fd55a0 +#: a32a720b00ce4f21881d8ee08b0f7eb1 +#: 5f9e7ae775d74c579640c87b8f1a8c55 +#: a9ed7a300144473a93be13365d1e5154 +#: ec3af836dec8477b9b8a6e1ce35b51c7 +#: 4ad61d91c69b4a7e9046af9ed869c83a +#: e67b1826f1c94beaba4f3098aa432251 +#: 122dc0a8849644da9f025f42251e5512 +#: 69b617c0ec6f4e3596fb3ab777a3d8ae +#: 1158a45e623b40f7b1732728467e8ed8 +#: f2a87bbe98a6466f80a40b004f002597 +#: 09ca36d178cc4856a367b854cb515df9 +#: 56c2c47e45784ef489ef93512cd343f7 +#: 4459a2ef9879495eaa3c5d14e109b7f0 +#: 7b136ea3fb044eaca2533106ed43cacb +#: 4930809ccb1741329b221326b5a74ee9 +#: e434242a42ac40cb9ad1fa41418a3b57 +#: 9867779b4b1542d3939d6043d78474b0 +#: 01432edd620944388f8b3c2368336e4f +#: d4d20f0a528948e997f595035a8dbe93 +#: 708d8cb0b3d24f2997354efa95845afb +#: 96f6e3b3067c408dbe5262a216810ba9 +#: 7c2a7631f9ba46e7b34038ea81ffce00 +#: cd920cfe37754955bfc891f3c4a922b7 +#: 4f702e88762844a1921b23e1dbaa2985 +#: c13e0c2412094f55a956ed26f66a39b8 +#: fd3f36897a21470d952baffda183bdbf +#: a5bd2041eba94e178a0745ed37609835 +#: 49179fb123294efb8b4f72858acae3d8 +#: 8c746e49c2e643eda46543886844bdd0 +#: a37c7c4d81c449e2aeaf85027c6e5717 +#: 747784752f364dc4ae7e3640965d2de3 +#: 58d2b5e7f9214f00b8d70c5a7a252967 +#: ac4e2ac252af479c9998da34fe805d41 +#: d79e88a8cc674c0e8db80244dd052970 +#: edd594b76acf4f26bcbcf9c13ff04a58 +#: 6057457d74e24f80ac1461f85de9c445 +#: 16db3e3d7c384674961f5592b19e60d7 +#: f39dc70c9a724f5f8d6a2e5e3bacf01d +#: 229a09bd24824d23b303638aa5c39263 +#: 66aa391106e5487ea6b1c3271b02b09b +#: 9a39cf050f574fae91a35275d9b407eb +#: 556448a23af9456997a9165d85a016bb +#: da70021f95054e309dc01e03d6a4d661 +#: 93053e727b324206bf58d39207f0dae8 +#: c5ac8b59479b4856afd52d45e1f0feed +#: 6079aade557c428e9ec1c8c50e539b76 +#: e2677115eaec4f55b7b901fd45c5b69f +#: 37f975883b464fe28afdd2070b71a606 +#: 88d24f55d5d14beaa24a86958ebcdf2c +#: b4716d46d4d14056adcf73d9fd4b1551 +#: 091ea452c7f04435b3eb2de8d96d65e1 +#: b2209880025542c49d978fd3b87c5e19 +#: 783fe4b097324740a5fc1505545a88f0 +#: af6b18c9664241368357bd10e05e3f59 +#: 634f4b3866d743c1b64f553400a8a83e +#: 542aa96811624fb58881203d0ef40e77 +#: 06d4ab70fd514c00b145990efb7e0508 +#: f9dc276653b5434585ca9ae41fd5baa9 +#: 2ce6b09817be4a24a34e3e5c01d5ad12 +#: 855b2a5c97ab419896af03dee7f26844 +#: 299bd08706a549ea8db097cbd291c3b3 +#: 913e24610ed64d0cac1aeb38d91c41b4 +#: 61aa88ce3cbe48d99d614fac2558623b +#: 63015be9b35b49eab91cccc91ddc519b +#: 59ddedfec01e4b3eb3f5a06034c480eb +#: 207041a72f4441338d59891c36a397c3 +#: 5eb2dc8d9f914845811171cf9e7fee72 +#: 62aed8662ea94dc5845e2ca57c4b2dc5 +#: f01fec02d3684fcdb0c205dbb6e3ad50 +#: b0c833bc6f7c4ff5b810af909e320c0a +#: 3c1a754d2ff247f0b8e4e93aff6a94e0 +#: 05692b2af4e74c4c9c235485ed16865a +#: b7ca73c3f78b438e96a092ec11dfa0ec +#: 1af470dbbe174e938c7039df145c93c0 +#: 4be044222e774f70b18547a767d25731 +#: 94d06b6f45e64c5388c33ccd6af1163d +#: 0912c0b14092472caceb92866bcb6ba1 +#: 3160424bbc654d278aa07d650214ef17 +#: b2e9fb71ddba4e1781245cb6adad25e7 +#: 951202c1c94e4671b041a90c65297fa4 +#: 0704126858a14f5cbcee53daa61fc9c2 +#: 08be5dfb7c654099b1f16406d0802f60 +#: af797adff641408489c993e112751f43 +#: c96d7e15c5694cc086d5b23d89a3622e +#: 6dc5c2e21b9b469dacb81a1e43968511 +#: 2c0fdf94dd5642859af3c62982b0be1f +#: 47d0e94c62a04908af2c02798cbf17b6 +#: 4e2f06e489144535a92bb5291825da90 +#: f3a9c6fc16e046ddb31d7ac923771422 +#: bf47d3d04a84453b8eb7534e982d32fd +#: 835a64b24bbf436094cd6b1ce140181c +#: 14485d70b15d4c23881b961bcaa90f0c +#: adbb0e7edb204270814ffc3b676770ab +#: a95cd54bd0814eadaa380af155e7e133 +#: d88ffc7c164348a9a6ce84e0db292bf2 +#: 718817ad309e4d66b2d508f52b127f23 +#: f08bbce0fdd740669d3aefa4133c9f2a +#: f1621f1946c045d79da620b25bfc0c93 +#: 604790110667474db1611d7f2c8f281b +#: 1d8418c8cb6b4c9f9a1a76fdd05afaa7 +#: 69ace7e0e65244c8a89be0c7cbea1494 +#: 197782b9803d49c98daf861cb6f0ca5e +#: 7ad2a648eaa84dc090c9d78197213442 +#: 2262fb128a104a0bb980ed5d52ca7b35 +#: 9ae1f622552a4f5886f62c3eb3b5c6e5 +#: fc89e30855a14bc3bba1d8e693d98e0c +#: 44068b1f8a91454db649cc08d37c68fa +#: e3697b5b24b04457954da4760a041813 +#: 2a3aea53e1b44ab6bab44b50026ef1b5 +#: 530d4aae239f4e36a2a34a3be63e7f8b +#: cc93bb92044244ceb83fbbc4e48fca33 +#: ebb75ec7c1c8499da514caaa04746fde +#: e9db655476434e6981242925be163650 +#: af6071fc83d54f6091530ce879b6cd8b +#: 0f74c18e747141b39ab841ab7698ad3f +#: 99cfb4f97e154d8ba1f84735f79c6786 +#: 2620507f0f2344728df2e40c703fd26d +#: 8ed9658cfe174eb6a958f946986f5b52 +#: c66d36be733b4fbd84c21e8b89ecd2b9 +#: da88ecb10a104246b27d2f30ea237a80 +#: 69b50fabd887466aafeb62ae976694e8 +#: b57f3fd3a07e4952b4db59c9e516712a +#: 20985fd369b44a4cb531636ed42406bd +#: e1c3f938c6e74f52b5ce1d373b1e8677 +#: f37b934b391d4413b33b5fe14cfb1d98 +#: f8906f27670c4a188221ecce105c1b66 +#: 5f1a807a093a40c49972ea18479d0f08 +#: 18c150aeb7b14aa3a3de56f0404516ec +#: 11bee924729b475291c5e0559e0c37d1 +#: a27facaed47148b7b216d238bc1e46bd +#: 623d9f58260247e8ab6add1926b2a66a +#: 584d4c7a0518444781ea6093c7dbeef9 +#: 330ce7c721684365aaf9166ea8ff845c +#: 844c55e088764fa7af7c253dac716394 +#: e748bb4801e64741a09bf97b783be1f5 +#: 3b145d501d934c529f86da2888ae9dc3 +#: dea9c47cc08c4f50a585dfffc4d44c56 +#: bf84c826076544cd9dee278583c7f016 +msgid "Parameters" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.Asset.url:1 +#: cd3e1dc1a94d4c3a8c524857d4dd1246 +msgid "Returns the underlying URL of the asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.Asset.key:1 +#: 350e91b0635b401c984176738616aef5 +msgid "Returns the identifying key of the asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.is_animated:1 +#: 176cce10bb0141758719e6eb9aeab46d +msgid "Returns whether the asset is animated." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:0 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:0 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:0 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:0 +#: ../../api/models.rst:0 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: c6a7d99157e3423285c53b00b65eef1b +#: 0640e492b57342b5a13994bcb5450a85 +#: 4bd018c62f114816b1848122761f0c79 +#: 261deaa002874837a2c0c7f43b420d08 +#: 506e955535214cac83087478241a0b1b +#: b4bd8df1935644ce9c0489c8542cd1af +#: 0ad9dd6e25d24167a508024ae35d87da +#: 86bfec4746ab4883a54583e29dafe33d +#: 4f8209b09da140ffa3202f93b7b6bf97 +#: dda4d63fbd664297808f901fc4957b29 +#: 9fbc068a17a84765ab1cdd7a4092661d +#: 522f4898e55c4556a060f6a8f63bdcd5 +#: e819402188e744ca884c8ba6b1a852d5 +#: 668a7f8b61594196a848b31c1eb2f132 +#: 0c09c04ca6c24f37b7befefc1e27c108 +#: 5987f3ee200f4d81a08e1d344e30d1d7 +#: 0309d5bc75b4441c897a10094b96ac4a +#: f31cbc6d18c4492d8d39476d33e60215 +#: a19f99d9ba494816a26f530dcd4d3024 +#: 350fcc488876465bad13a5796135bdf2 +#: 19c515ba3ce24f398e966d395a7bab86 +#: cd8afe5f874a4ed893d57cd0f29bb9a6 +#: 2862e3ccc6274017a74b9196f3154985 +#: 6a593fc9f66142829114c6c0fed61c9b +#: 536e3251a836422fac526839f75dc3c3 +#: 407ca03640e945a485ddf6039c4290d7 +#: 5aa46d39cf93485795e2b3966ca802e2 +#: ca57d95ea26c4194994d202c3ff3ec2a +#: 16749d2b71db4335acddc773be0d2f0a +#: bac9870e0e33411ba53fb5c16935ecb0 +#: 8f1345380b4e4342a090f0d5cd984869 +#: 18b90031dfc547088813e057a56401c1 +#: da0e818d0fef430fbadf33a4e57ea595 +#: f5fb05070ebd4d488d1b462e0470b4c1 +#: d261c751d34446d5890e6fe388663db9 +#: aa0eaae63db44458a10fa9b1b74828fe +#: 5bd361d0404c4498a423491718158f86 +#: dbf4e8a592f049df9c417ab8b3d39404 +#: 22c035014b65406b969da9bfa17929bc +#: 3bc86514262a4b3c8dfa0832fd887a71 +#: 3bc24b485df54ccc86aaa73edfdda00d +#: 5bc8d4fec7fe4a3da55954a965a3c166 +#: 872e315e148e4e858f69d56dc0ace95e +#: 8b037c2dd39d43d7bab7234b9974ee26 +#: adbc4a22ca1c4ac8959bac23ec4839d3 +#: 77ceaeb103b7476c86ce358d994b966c +#: d3a9ecd345b9437a900862749bb1d523 +#: d3570283753343cdba2a6758d688bef4 +#: 8f074c462f05439087eaf38bdcbde36a +#: 5369cb3951f140f7b332ad63eaca1069 +#: ed9005f2cb1d47fb862b4be05f63997a +#: 077c7293671b47aea1ead298192db654 +#: a491af9434bd4ae6b7adaf96a9ca0ef7 +#: 356bef769b5f47b4987d39eb1a7db4b6 +#: a6245e82802e4b7193ce9a3c9ae5b2ad +#: 3670d238b65946fc85955a7f42fa1a37 +#: 254810d5159c4a7ab7e45312a75c3188 +#: 589587890ebd4f478c62b58dd26d5671 +#: 64bddacb4cac4f82a67a58222d50d578 +#: 61b6dd6513944110a133c7efb3bc0cdc +#: ab64e8b5946049a2b1cf13bb6b63fe97 +#: 9b83d663436b4b1385978a81a84e11d8 +#: bd10cae6ed2b4708a5a0c0f4dda84951 +#: f852538e23ea4d0f954a427289c543f3 +#: c106589d8eff4543b272782e24ad92c8 +#: 2a1ad31a3f764795a2fb39aff9873758 +#: 6f73c53cb70247089d507722c9903f3e +#: f6f36e6c6c81482582ab35769ad90599 +#: 79440ec28ea74d52b17263e296d3409e +#: b91691d031fa405b8a1d7c7a5d684d4b +#: 2907f41b9a254a10a732581db38bb3a9 +#: fc37f43ede9d48f9949589a404c7024f +#: 566bc6bb24784bc5970599ef1e8770c6 +#: 0e77fecc1b154fdaae5ecd7437e07fea +#: 0ffde691430f49ef890254f0b87e9c2e +#: 21ff3a60e1e84c648ce0a5d9aea70700 +#: a35fe165deb2481da568d709dae266c2 +#: 1c5c8239784e471dba566d1b92b2a5e5 +#: 553cad25175b446fbcdab20da396f524 +#: 4558c796153c4ef68dcf70075672fb40 +#: 6000f7ba9ba8448589288c9e491da658 +#: 0979548eb8314965a4232b002d6d8f8e +#: cdf62d9b674847e39744c3e80c1fb9ea +#: 55412074b3c0457a928ba79d2886ef21 +#: 8cf23c67e6aa4a318dc9702fd590e1f8 +#: a57d083bbea64801a7d65f69c25a92fc +#: 3a7e19ad0efc41afb60748ca5ec7ce49 +#: ac441bf274914d2f9dc6f264613f0faf +#: 21bbe3bfdbc446d695ba06c20c373f85 +#: 19a35a7ed51a4b99a8041f75cf8e58a3 +#: f32707707ee74b6dbff49ed14a238389 +#: 562f4fcfe2aa47f8823780ff1fd1ad05 +#: 8caad83d4fc34db5a56f36e3486209ab +#: 4709a829072f4900b1b8f92c717af001 +#: b94bcaf9e564445faffe9c5fc003bf16 +#: d7d57b071e10418cbbfdcdc32053d4db +#: 4c56d5fc75354f84991697e9c40b4b11 +#: 9c5c89e0d0874a8691ae9c0e0face8be +#: dddad0d7b03748d390ba1e09ac8e6412 +#: 8bd3b936c64c49d78919c0ecb19310a5 +#: 81c6ac909f494258b8948bc3e45cf12c +#: 5daba438ffac42b1b2d55f6d4f0cbd7c +#: 42009e315277498991652d2217b641e1 +#: 1740b1d8a905483dbc0dbb49a70f4cb9 +#: c6bab79672f5438bb6e6ec899940147c +#: 3744d240485643bfaaeedd4801535130 +#: 2bcfa2d8caba4c93a2cd5a402f11adb5 +#: d90d732a2bb845569dedb27e471e7f93 +#: 7e503481eb8d43ad8e1878acf4a7f40c +#: 6e83500ac0644c84a52561e8d61f1c5e +#: 14564242c6034111b5a835322613f136 +#: f415cd72211643e9acd1e5f4858dd4f3 +#: 3d509717ca4145a7b60376c4c737798d +#: f3f9efe0f848423986fd89fa2dab4c72 +#: a9e1db54db63425d951c0e7256395214 +#: 9db161f314c94f85ac96020eb34e9c84 +#: bf729822d22740b0815002eac15216d6 +#: 5d828612a95242d2bd1b12644a5d9cf1 +#: 9d36176bda98496d817390d49301df54 +#: b6922d67d6c84907979fffecebfa3417 +#: 7437bd9a49134aee93e1199658c3c910 +#: 94da0913b5064103b4a4f1317d286d3e +#: 7cbd1b71088c43f29b0b4688c22f30d1 +#: 40a69191945d4b759f042c62b8756b9d +#: 0bb3a1ef7d0a4ac4a736162f807e836a +#: c97d10f4b3f143b78481f31f523d4d77 +#: 04c5edd856c94d49ac41002921437866 +#: 913b9deadda8417d8b1c6cb2123eda83 +#: d1b565588d084dc6849d5239685cac19 +#: 8bafa417e0a24d19bfcfdbf5ca4e1358 +#: f6867ec229a34de0b0a3718f27e034ee +#: 383161f07e414b058ea3fc4e3a64ff2d +#: 5e7fda9bcdeb4104bc440936de8b3fb5 +#: cf98b62b43b04ea6a80bc613243aad4d +#: 21e3c2ac97934adcbfc2c0d10bc2ee8a +#: dbd5eb44f6cb4f3bba9440f1a9f1aeed +#: ee51fa409b6447f69303772b03f899a3 +#: 61d3017a6eb64593b99dec433068fb39 +#: bca47bc8068e4b3a88c1919b9b59fc39 +#: 524fd4946de3460dbf7ad4139125387d +#: 0a385600890b4dd2a49b7953142ed633 +#: 9aa17b14fdb74c03b3919796d53a6924 +#: d399a5928c4a498c99a47d6abb657575 +#: 714eded3da2e488db3c5084c3413454a +#: 4bad2348d40b4156a7f5009c224e5071 +#: b58644c521724030b342a759b07957d5 +#: 4e18e786314f4f518fb65b3fe21d3a27 +#: 6f12f1dcf838407a801cd031c04453e8 +#: 710cfe8d768d449a94ff79dc5bbf7c63 +#: d59c249cca4e40d9b26dded2423e6c8a +#: 48518eecf9df41b78b33a358c06d0a63 +#: 9f061e475c4d4af5b77bd4b85a1a857b +#: 1bcb04c08bc74feebbac93dfae9c807e +#: ab57c28e2aa84cf2813d115f4bdf6bd0 +#: b1c07245b3cf4ec0a634fe9ff0b4f817 +#: bc9bf74ca0dc49859bb355991f86083f +#: 7076aaeb962f4e8098cab39b8a5f58b3 +#: 5fb3a88a466444e4af14da44f243f038 +#: 28a6e45ecb76421b97a31e146ad93502 +#: 5544d57dc9f34d32a703759f4bcaa669 +#: 09eb310f76994659b00b9be50ed89af6 +#: 07b04891f85b41369397a74e724130cf +#: dca10bf144544435a6ab230aeb285580 +#: 22caf0defe85450d9c2c1e012edc1f96 +#: defd1a84af294682b3bfd77cdc59d71e +#: ab25e9c4f91c4c6f8f0aff93f07de2e9 +#: 98302021d1374511a08738543d7f4224 +#: e93a11177a534638a29dc7ebcb203580 +#: c947c635a28c4e3d99daab71d82a40d3 +#: 56c05c81f58f4e83b86c4b912b80b4e9 +#: 86117ac7b709491cbc39e0dd18d43d76 +#: ba9cf43d1686447dbc73894a9c4d6277 +#: 4bdf3243da214db3b02b3a6801fd7fae +#: a1df762681db41d4b78b4bd5fd3bb030 +#: a7550ad749df44e393f1f6ea3d20eb07 +#: d761288cdfde49e98a6d7530988dedac +#: e45626a6d7d84979bd653f8e7f3d8e24 +#: 3468991de0af4d728d6284f12d0dabb9 +#: c82382bd6bae4e40b371c853e5c65bfc +#: f9374868143b4b42807cfbc41c8de5e9 +#: 531150cc29554c529959b3f9d6e104df +#: 26610a2e71004eada14dc49724dd1382 +#: f0917b31a20d4ca6a29c13d60a5fd783 +#: 1bb5dc7493d44a798c46446f3f8b5c50 +#: 61aad5eae898465383acc44dd812a022 +#: f7bd4e3a624c475c8d6f5a9fad313a07 +#: bdcf70558e794bee94055d5dd0d0ad21 +#: 6480c20784cf475599749ffbfd77c97e +#: 32001f0a67c343089415684c408f512b +#: ea4859f76b924a809f1a6694608c6719 +#: ebb35d060f5644faa5e480709c3c1ac1 +#: e2b6462c13c645cda0bd14a4e00560b6 +#: 308f6661af2a4c089e61f5e4b93c6ec7 +#: 29a92f555c1b4f8ead149ec2f7a02e10 +#: aa1bdf38092843cf94b6334d56e761af +#: 94a56d4865e845b0b0ce4513200f4b09 +#: ab971736bdf54a4b9ac24591f2efcaa2 +#: 1b52414ed32246a6bc521bcdb6a5b240 +#: 1e25060f12b8401cb777f8ca3fa1b9bc +#: a6d2f2d948494197b9293396542667ab +#: 53880350e7f14d3ca8018c9ba4fe6dc7 +#: c87318ecc6d44f02ad643d854d87885a +#: 6c1fba66238c40d09942afccd62ca0a2 +#: 650707c78c4548268dce0f69c5e7bfe4 +#: b6f58d151a9547b6a3ad485b3847a1c8 +#: 1a6304a7513745e4ba008a13a9ad6941 +#: 3039f8f490be44c7b4e208e9693f2f3c +#: e38155d4381c498fb8065bbe659e6e5e +#: 66e9cfa84d454b39837a186361ac4c53 +#: 82ff71345c994b7c9ccd8f451d8dad5c +#: 0d5ce9ac536f48c3af3a64b83a094777 +#: 9eda46e944ac43c5a8efefc08d7ebd1a +#: 079c4c874eb34aa28b2cea04d85364e1 +#: 5391f3e5d99b47998cefe43f8aeda966 +#: 682c6dd787274da2b8744196a3d991b6 +#: fbf98487976d40069b0774c5f825d511 +#: 224bd35b661e4e5bbac02f9414ac1130 +#: 589ebb2151694fbcb792d73fe6516e92 +#: 31d62f9c893e41399081d48e4866956f +#: 8c17157ecff0407298c120c809f308ec +#: 18f9e3ed114d4d68973ef2d37672349e +#: 5e3e31bf7def4468a28c7244b9bde9a2 +#: 7798ee7a392f47d28b94a11ad29a6e05 +#: 82c52d42db0b488cad31bdfcd88c4d76 +#: 104efcc08f654498b0423e1190e10940 +#: c65f3ca354124b5996377219cebaaa5b +#: 6241865c9810440884e400cfef161bb4 +#: 99bde81e8d454458a1490c40ade34972 +#: d18c30fe506348deb33f0d70b50ff43d +#: 69795d7a83b14a3989ca536e45a50de4 +#: 0f52be8e5bd541d2b5301a22f3b47c08 +#: 97cf3062c17e4e00b917e65b22ae3f4d +#: f6d9e6dd4eae412a950e3f6026b8b590 +#: ddc34446706f455babe8b817a98db51b +#: fb5c95110a6d4231aaaa6d31de86bd3b +#: 6050b0063ea541d9be1f508fa7ae129b +#: d0bd91e5cc424773838252e846bd9ba3 +#: 0ce5ad081ccd408d9f74b2ad92a0e436 +#: 2c0a4301bffc45d7b11b3ac605dc2bdc +#: aaf38a49010d465f9d9606ea63f10b0f +#: d4aa1bfd5c174cc38f372c7bb2a9640e +#: f9065cd7f67b4a19aa637bb52e919429 +#: e0018cec47704ece9e7dc1c174e68de3 +#: 2ec625c58bc64f00bb1f9657f507389f +#: 28a934f91d6f4107aa4f9b68ce66db94 +#: 2d8c0c74e92041a7a933c032f4dbd8cc +#: a41d84f2e4e6409dbc1ba6161e2193b9 +#: 616f111b2c634ac6b737485a7759e77f +#: 774c76617c0f4055b19767bda168df44 +#: 54f6af6cbcd24152b4fae9a5ea99957f +#: 69926a5cef2d4ca396db3e24a2e99264 +#: 14e1d7979a2745439584b7afab525cbe +#: 4f57f95acd9f42fd8d4638489ce1ed30 +#: 925f2efe7c564e769b64e35bee362ecd +#: 785c403fe5a2465c848a31adc52a342b +#: afbf9ac88dad421c9fd4ee650dcd4813 +#: 78caf950427e4543ba223273cdec85d8 +#: dab2f077ea404924a56413425af8ca2e +#: d62c37a3a3454282b75bf4762acdeba9 +#: be35b68caf7a42a0b306f28f0002c51d +#: 813e684e2e8d426b9d1c454c690dcf55 +#: 64a3f450f46544919c2486488b35f37c +#: ca88472974f9463b8e0bcda63c48592a +#: c210202abb2a4e38880a23ab58f44766 +#: 92752218116e4554a66b028fcb89b68f +#: 5d1015a497c74df0985ab169532ea31b +#: 537a9e3f38ff4a7eb3479cae75bff3cb +#: 586923f9199a431a99dc813bd9349fe3 +#: 2f8c04c6ef5d42318724877e90af1fc3 +#: f40117de3ca74d80b82c5509a61004a2 +#: 7e10f233ff53464aa48502585c35d815 +#: 9e376091ce8f4b17bdb4090133da80b1 +#: 47cfa825837a44cc98ccd8e1f3e09be1 +#: 76468f5dd6ab40cd8aeabf0e68e28f11 +#: b86e93cbc837459c9cc8723f42ee6aa9 +#: 13920257938641359c46f8ec48a2467b +#: 68587ec1792143b0bc63a496896b80cb +#: 3ad3cfead093448780cad42ca3314c27 +#: bab6cdce6b1340c4be5ab32b26b0e3c6 +#: 220f8b423e774d52bdecba753a9bd42e +#: 8cfcc6fb991d47e2ba1be757e6249353 +#: 5010ef3edf324a5198e4886322144882 +#: 8be8ba3e4315436a9307b92fcd8e427d +#: 64f42e1af0fa44d1803ca0e9769374a2 +#: da1c9a48950f435b98cc65f9d5b5450d +#: dd8c017429d64f9f8ed0b3e6271179b4 +#: c2ee512e22054cd5bcfc5c2b65122ea8 +#: 72be84954a704eef851323dcb82ea6e4 +#: 04d808bacb144c5db91a726692428ca9 +#: da9a025bd3b14fc5b2cdf22a29c63651 +#: 5b2769bbba504a7b8376ac53a0a36df9 +#: 6476be3ce0ce463cb0bd42fc2b6f50ee +#: 828b422f265d494cbd61950f1a6461ec +#: 24815be9034441a3904ac6cf45caa109 +#: 3a54b7a68c5d4c1ab9aade38ba018aad +#: b5a13912cf864c059724af1b4d19cf7e +#: 45bb791f8f144390a381f6076f08c6b6 +#: ca005160344a4d108e41562bb37af23e +#: cd97170b6796485da15b42fb7a83f105 +#: ea486888bb3a4ec983532378cf9e658f +#: ce0dd277d2b547cbb212afdfceda6a1b +#: 6743629adf8144ad940077ebd3a65c33 +#: 5f8f388162464cfc80dff7865fce769c +#: 8da41c4e6b1843d7b5b20c3899d38337 +#: b0a7510bcae54047b3f08493b5c96273 +#: e62e55905de2495782cc7fa3422ec75a +#: 6947dc57a35b4ecaa09f40fd6e99d44a +#: 540b7957bbcc491b8583bb1c914517d8 +#: 4d2486e56eb94262bc80c0ac27f67e57 +#: 1ec7b395b2454ab2ada19a0e5e5d70a6 +#: 51057079757a45ed81f9a347103e9e52 +#: c8978981be64414fb1bdd2533434e30c +#: 102e1cf82d0f41c7ac99da1b89675bd0 +#: a36cafbfb4c84a7e9b90051b48f9c42b +#: f900904408044c2c8359e71f54e614b0 +#: 36431d73c262493d9a60bbcd1107592b +#: 03760cb475ed45078357270d9b6c3b33 +#: ace4e73fe4094ed5843eb28962b92977 +#: 3de8f12b0052406a8d5d87102fc4a182 +#: 0d2437596dc947bbaa611af1e3bd6016 +#: 0b06ae0319a5400585eb28c7fdc2399f +#: f272f23f78284162b6e94a3974eb4fe0 +#: e90951beaeda48dfa59b7c9b8c4b2518 +#: 649674901f924f2f92abd5655e3e5ce2 +#: 7816ae6d3f524136b09b1f38579dea34 +#: a8e12be5c12e4e4d8a6fd29cf25648b7 +#: 5baa040ad1f141d5a16fdd94fbd0cfc9 +#: d99420ba8f5649ca9e29b5046898a114 +#: e57fbd71347b400ab57f99ee40e2e540 +#: f85d369c077f4c8b8eda8f3e977c934f +#: 4379536cfa094c3dbf8002678a5a478f +#: 890b2ae043af4f45b3314994efe41a29 +#: fc43e15d2f0b45ddb8f71cb25d370b0a +#: 1cad6ee5d0df45a6a4875351d0b2dcb1 +#: fd8ed3481612499b9b6d0943f6f8a55c +#: fbc6d1daa23249c39115a46e2fba0109 +#: 062d3c82c3794cfeb645ea0ae3a460a8 +#: 062bcb5bf85243fbaab9b0f127b23ffc +#: 7e1ecc0137e246bdb415fd6b68ab399a +#: 2dff2df236b04c128a3de69f4dde566c +#: 546f5433f0f5405ab66ea10ebf67ea50 +#: 4195791bf1e64cc0999c93938e67f0c0 +#: 89d55f0f759c4232a6ea204f03fe6c0f +#: 4258073ce1d149049cab2814f99890b1 +#: 2284735c4e5b4ce6b62d6dd77fda40af +#: 645f6a8d2c6242dcb919439a7d9436a8 +#: 5d7c319885f74160ad8c808f357f3c6e +#: 1ca9ff7ba5424093a3604e96bccb8102 +msgid "Return type" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.is_animated:4 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.is_nsfw:4 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.is_nsfw:4 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.is_news:4 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.is_nsfw:4 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.is_nsfw:4 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_command:4 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_component:4 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.is_done:6 +#: ../../../discord/member.py:docstring of discord.member.Member.is_on_mobile:4 +#: ../../../discord/message.py:docstring of discord.message.Attachment.is_spoiler:4 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.is_custom_emoji:4 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.is_unicode_emoji:4 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.is_custom_emoji:4 +#: ../../../discord/role.py:docstring of discord.role.Role.is_default:4 +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_bot_managed:4 +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_integration:4 +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_premium_subscriber:4 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_news:7 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_nsfw:7 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_private:7 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1264fee836bb466f89b4f893c7bf697a +#: b3d373e32ad24fc09945543962ca1e3a +#: d5f84379d77d42a0860bc6eab1204514 +#: b3b1bd992b284ff6b33201f285cb13e2 +#: 0ff03c3e95a74c758952d0d1c32a0e60 +#: 7921a0c4f79f49489a64f6d606f60e3a +#: f14e4f342826408186804d85f153c936 +#: 5c7073046d1e46fe8fcdf7ca70b8a875 +#: a1d9a267d8604795a960303c128196b1 +#: 30b20b9dd4ae4e7092df51d4a6daea32 +#: 07c2e84836de42b29771fd9f9b7f5b87 +#: 8bbd3148b6164b7a96ec3437e73ceb1c +#: 6cd33a92a8694fb09e33c825e748bc0e +#: 589ef4aaef7a4abd9bb2586b026ab7a0 +#: d48e139a6f6f4d51976399ed67c7cbfa +#: b693f28fea2f45e0a9d9cf674810b502 +#: ffc14c14f1954db58dee1bcc64261613 +#: 1fcfb6cda07541af8141a841ea343752 +#: fb44db81267d4fee9e6742a470bb770f +#: 1580c259931947149eeb1cc5ed44c1a9 +#: deea33cf47d44b75a3242c94f2f1a202 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:1 +#: b7c61034a96543d3a292a7aebd55d2b6 +msgid "Returns a new asset with the passed components replaced." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:4 +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_size:4 +#: daa2f1c92cda42ddae693df8ce5553ce +#: cd7840d7e7a84dfa84a627eb4b3760cc +msgid "The new size of the asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:7 +#: f29fced6031545078062f51a725d4e15 +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:11 +#: 492be4dad9bf42bc83a10472a86b7b84 +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:0 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:0 +#: ../../api/models.rst:0 +#: 57f07e810e7a4586855dc28481b0158a +#: c9b9dc712a914abf8f2219351eeff240 +#: d8969dd93df444019b67ca16bb4ef691 +#: 0edeaf6b803640c28054b2e619ddd802 +#: d158caf1186e48c8a38e8020bc046db6 +#: 9f601fe77c824a16b0956178e383143e +#: b2f1da5ff55c4a3b9346d3b6e1f1adaf +#: 433e78d93a284222b29b7c5c27f30975 +#: 1d273c9af8b04078a7f814a612b7af22 +#: 27f96ff5ae5b4e83ab6648c6154d02e1 +#: 4db57c6eb2ff45e683de729c56067875 +#: 51d0460ea52747fe85f7df2cb0591858 +#: f88c908a6f4c41fabacd70ad58cdf52a +#: 5b7671b931944b139d39fd1e649e4371 +#: 83705baf8a864eec9f13163564e7cf6f +#: 25f5699c89f544419e402558052f5325 +#: 76becbf11cbf44e694d2b1ae7e64f923 +#: 647c16affa9946b1954e30a98d48817e +#: 86821b65aab74584ad8c55849a601d14 +#: 362375f37b194a349214ed5fc7c0f203 +#: 0a5c812ff0c04eea82c6fa3bb63067e0 +#: d49a124f37e64f348e59d79ea1e601dc +#: 0996753e5e124f77b30e61a42df820c1 +#: ecd9fdca3e544014953f89c1e94c68f0 +#: fdf7e9a3108d4be18ba445ce61cb75c8 +#: 2607b77d823943a39c83436bd083804e +#: 750f91e4b5294b2eb91a6c4fd068c0e2 +#: bab7da69a6be495781382e54dbaca4de +#: 18d5b6a744724d3a83612d2d141e79a6 +#: b6c1b4114fb543e195c94aa432fe159c +#: 083c074a6726498a8b6a44b2c0390d7b +#: 0ec6d9b2e0264d87852ba95d863dd39d +#: 35d53beb4f25480bb67fe4c3813e33e5 +#: f6f28fef35e44b52b7f0d8b8d69516ea +#: e79560eeaad2454da4385f06e2aaee39 +#: 3d661899f6cf48ebbebdc8e59ef6f6ec +#: d5a133945e874db9945b37883aaded27 +#: b86abad0dc784bcfbc12f4c84d1fa742 +#: 8e51aa1f2ed94e2094249f3044a9d198 +#: b739480c9c6f4adf8e1e3c3933784bc3 +#: 9f2285651c4f433f8b1c16881926f0bb +#: d36b0236b9ea4776a7e6b378e9e2d52a +#: 68305bc3e2184fd09fe9642896bc9d34 +#: dfd2a44a017442e29804dc590d1e49d5 +#: ac01e19d8d404b5dae571c9d27da19cb +#: 6ad8863060a441e4b4dc968c529722e7 +#: 96cc6a6f1f9d4894a37e737d95105b43 +#: 5b085ed69fe04b72a038408f1694f8b7 +#: 2f6d4fffa6184f9780a0a1f424fb7cfe +#: da72630aca084d3aaeafd45ebb6e90e2 +#: 74b5a057233e4cb5a1231cfc2ec593e2 +#: 46a0aa1454ae417e88e6b3cd870b72f5 +#: 4065753368ca48ba9303ab80be7280d6 +#: 5a4bb964168c4d4bb38a489fc597be24 +#: 6653c72cfad749238708f3ebe0122142 +#: e081836ae6504e498ac8f7e7f304807e +#: 43c1656cdb8c46c3a79e2da9fcc17b2b +#: 2357c289d156430aa3fc97424d2c388b +#: 847dccc772424a3faf88bddcb661386d +#: 6ac49508d1c143e2a64cce304a570b5e +#: 27c881e4f9d54dbc8ab1466442f08633 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 1db085e109c8461d8370d91139a076d4 +#: cdcec0ba564c47b0af74ef163a2dc0ba +#: e1c97e8d349b44e69addb3ae93cfad43 +#: 2e2ac69c07864724996d15ad04f08e14 +#: 88f2900fdd1e4a4e9acd012dd80d21b6 +#: 471e33e5d6884d29bd1802d75195e1c6 +#: 03cde12d04d94801a4f2da3852649b3d +#: f261bccd5074453587d7d0d71ed58a9d +#: f9a2f3eab456432d8faf60ca750abb77 +#: f66ddfebd98a4697bb828487d4a14e10 +#: 717a551ee3684ee3b377b983e41e0c77 +#: 8aa9e45ae0fe4b84b38aee62c912c235 +#: 6695e2acbafa495db1fd1253b501144d +#: c6fe0eae512544c4a503e3b3e361b0aa +#: 843193a074374aad930fef762cd78586 +#: 16f2f9bce0794b9faed17ebdf5b99834 +#: 6f0a464059a1422ba43413725548f210 +#: b8f41e8b6ba543d3b8bc969eb12dd8aa +#: f3db2a8a4da04f4fb8688194013adf15 +#: 4082e51cbd8c416b862d192e903989dc +#: 82ed3b1b770846d890d9f66884d3f759 +#: 8343fcad75ca44efb89693f19ebe898f +#: d9a116125a334d3886dc3bfddf7dbd75 +#: abfabc546da54211842943d93ee5e05a +#: c19053b1b77345c1b8204ff39da4148f +#: 027ea322089041d7a827e2826c8b3386 +#: 808330a0b35744e69d76b25dd32c0c7d +#: 9a1651ae1a1f48d59cc6547ed2ebed53 +#: 258fb5d7fc9e4a3dbd10e60e9d88beaa +#: 4c05d9e612264d58acc7ef99316c251d +#: 159afdebadab464bbe1e609804d253d9 +#: 9d7e80859ee849e3963dc1be22cd65aa +#: 99ff2148bce545348c542428a02705c3 +#: 63a166a5ba0c4fc7a838c5f0cf2c9502 +#: 56e645258feb4802a87fa905c20386ea +#: f2921ceb29b14c11b859ec1999c18275 +#: ccec4c55a249494eb9015ff016a320e6 +#: 323f8c5e02444419b690f421aabeffa7 +#: c631794f724b4f40bd325b9b3f47e832 +#: ac28978c972f468e98bb5e4bf37dd28e +#: b5734500315246ceae8efd7f028feacc +#: 87a72a5cdc1e4c8d95d8b3991e0f2139 +#: 7950a141daa54888a925b102748f3dfc +#: d99842b2e6a14865b6881a89e9240ee1 +#: db45e4c33d844add81b2dea65e538795 +#: e3c7ecb97a584b94b202decec6f93a88 +#: f6fec81ef27d4d98b2728952b69d47df +#: 1e382ab7575146298a607756be088a89 +#: becde92dbe1b433eaca0489589f36fcc +#: 30b4ac4a2c464b65901df5e37d811c43 +#: db3a213b8b734920812230a1750f5f12 +#: 134225ba59a14e2bb20d91e0b2cd6292 +#: c515ee690b184d91bb0f3cb502132b5d +#: a8d37a108e694cdf86288809c9117aca +#: 7d34f29ac67047a78da568e9efd49f1b +#: 38e824adf54c4ad48cbae52de4d1672d +#: 4748880c373b4c7baff9686094793868 +#: 183692579adc47cd9696cb2c74a23b25 +#: ecf710e19ed549d58a52ec8905bc25da +#: 74ca8f78d9534520a9f0bf1fb2d2a6f6 +#: 13a27739a01e4d88bcdd05f96c99440c +#: 06f34246fd8b455fbb39a13aaee5d899 +#: fa08edc449604b0e83d0dc1203c1f8cc +#: 01966cb61aff41d38aaa39ee10e37cff +#: 3c5b5f52348b43289904fa2dbb2419ab +#: f269fc990bc94d9e912f05643f64c7fd +#: a8f21ad9096d43c68dfeb0434831f606 +#: c016625db3494f86abaccc0f76461176 +#: 452ef944fea54956a0ed15f6457010e7 +#: 3d4e550acab445e08e93d39f43e69633 +#: d777e0a55666439486e83a97e4685dc4 +#: 07454f56bdb44f60a8f7ee60fead518b +#: 907d072fdbbd4dba85fdb2e5dfcf8ef7 +#: c1776160220e4a02b1dcf666abb688a5 +#: a1152ad577834fa8bdf18c6911760f6c +#: 9f0970d40858458ead536efa9675b54e +#: 372e1be1408547eb824a5247c953e91d +#: 3cd4a681bb9b4078befedd61a572f0d6 +#: fc5293090ba4449b9fcba3c153fa87b7 +#: d029a4ca70b34a38902e271406147eee +#: 79b32f14b5754c49b9a269a076411656 +#: 2cb147fb00e0471b8345e97ae1b94f26 +#: ee89ff849a78427787f32e2cb4bdd266 +#: e0765dd80c414392b814e1584cf0d01f +#: ff92f2bab7c543d392c4e2c9d3d15c53 +#: c07cade426f244dd8aa422a4a11a3142 +#: b05fcc8628b94430ae49e269580ead7a +#: 838e1dd5876045acb9d7ab4c5c3ace48 +#: 7d4843c1efc144e39628cbcd19f61715 +#: 53b11b47b2ca48ae83b1a376f56f4749 +#: 890efb27ab794f8590c3517504c1eb18 +#: c6db041754c24ee2a204a61fcecfd718 +#: 10d17b1b8fab4d7baf5db6fbdbb9aca1 +#: 7141abb1905e42f187f05c5ba0689e97 +#: a2d4077b4e6a4556aad5b0585c387d5f +#: ad4db9c02485456081dd83291806a7e8 +#: 8fc320ce8860422792f61b1e860eecf8 +#: 66dc2fcb6f4144c9a1f5fc46df89d1ca +#: 15b230dc08b94d9c936bd97866052a67 +#: 181d4b4dc5f54790abbd61a4249509e7 +#: fc0b48ef5542468cbf40ba3fc32ed05c +#: bda4bd3bde164d28b84c4fb792b2c9aa +#: 933aad214de94b0bb8346f2023210f0e +#: fbd057c25be748beae9b81fae6675f10 +#: 4343eccbf4cd42d6b90cbcbebe3d6fbf +#: 3cb54c7da9a74aee81bb807d2959c19e +#: 51807972b111488d990615f36f2c1d5b +#: 6d698a1dce8f4fd4a12b3f454fc0ce29 +#: 985b9c539b7a496785dc2da662441c0b +#: 727622388d6841349e34b2d9b5ed34d2 +#: 3f6fe9d32262426a81fe8b66cfca4454 +#: a3d441c02d1d4cb092e5bdd6d003ad58 +#: 7ba5d1ceaf994c33a5a0953e94283348 +#: 0ee3afb081544bebaa5fbbfa304021f1 +#: bdbc4d85c37a4066b8d821b6bbe2e65b +#: 59ddcb49c2e6456587e87d369d141945 +#: addf47a76cbb462cad6a8cf13dcf158a +#: d786628abfe44d169f48b716234b22db +#: 7f27981d3c3b4323882158810ec4326a +#: d2d36a7c4c164efda636756c31371dd2 +#: 9ca795b7dd6e491d930ea5083daf13f3 +#: f4b536cdbf16418a9b5faace03fc4e04 +#: d12064641b2548188cfad29464886a6d +#: 333f9ca13a394e54b16b0a62dc96f924 +#: d5818bab02ea4958aa1787716484b966 +#: 4b01d53cef16470b980d4aa8acb2b7c5 +#: 4d0dd737c6bc4d6db2eda446be53ed71 +#: 441d7953aded4dd2bba23506ecda7ee7 +#: 28fa5ee102d0442d99ab36f55a71ffc3 +#: 15307929d5634c0bb36e0090ef6125cd +#: 0d23be5cd1c4444a87fbbae58968b1cc +#: c906be8c0ce14e3c8f5f056b899752ec +#: 0e96020ed137410695f8826156f3c74f +#: 02bb3749b77041e79dd52de4a22e192d +#: a92ef799f6e4432c8ceea3e0d430f7e2 +#: d7595e21107d4366bdb3e0c01894061a +#: eaf21e8a98b24d31a49945830daa51c4 +#: 6d24f8f54cbd40d9b72e0699928dd1b1 +#: 826694196b61479c9aba66e8073a8034 +#: 912350c50f4b47b2b8a18c41a2ad34c4 +#: 02fe0ca9fe6f41568d07f02c473376fe +#: 5d9aa925977141ad9074995073c6400e +#: 7025514dc468450dab470c6aef700b1f +#: 8af697ef01584f0dabbe66c516dbbaec +#: 22b2eb8e9a3f4d0eb9edbf4c41e06935 +#: ec244017a6b94c928fe87425e2fd06e2 +#: 9f38e9b7646a4861967b71d3cfb39e2f +#: f42c5975e2c84da494b4f5dd469d87dc +#: 78d25ce0f640450c879b6f0bcd4bfc23 +#: 5f301dd48fc04b6390ff79e83ad5521a +#: bdef993bbdff4ae0b562c13750783bd7 +#: 85a8436edc3e4dcca1b3a1957791ec6a +#: 37f39cfc24c94c1a98430968b527a971 +#: 82d1de0158c9466db20c71f60bc71a52 +#: 86e7de05d332467fbae94661c20aa14f +#: b2c16eb001f34d04b72faa468ee60919 +#: 8cd15e80c9004366b47a5512f6e34e83 +#: 0e9bfce287e3469880a73aa63d3e425a +#: 7fa387a34b834303855079e07d43ab5c +#: 542167f6d3384e2a8ae24d73888b2ef4 +#: 5576fa01edd44ea08e738a7c2db0bf10 +#: 2e9830a77cae460596455fa9a1fbe635 +#: a3c542e867be405488833a3b905fa3fc +#: 92482ff9425c40ce883b36b5a2476497 +#: ca546d5bd9894f37a369d569f89868c5 +#: 2ddeee768bb24e439d78156e5f1ea05f +#: 05e35f2bcd9c48bdaacf15a392236fb0 +#: 94475a0bc9494ace9582e298f445ef11 +#: 9e61ed8193f341c4910a02565f08b6bb +#: 00b951c8cf6546fe8a32993248ce178a +msgid "Returns" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:15 +#: 0f6ae02f77bb47c4ad5b987a9ff6472f +msgid "The newly updated asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:16 +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_format:8 +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_size:8 +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_static_format:11 +#: fd507c401cdc4f5ea3a0dc7c779df1d2 +#: 7decbb31cbe34e0591ee991814ce097d +#: 11fc898438104a268cae9f6320a66331 +#: dee5733170884301b654b93e85996bf0 +msgid ":class:`Asset`" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:0 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:0 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:0 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:0 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:0 +#: ../../api/models.rst:0 +#: 05260df1bd954c5caa25ff09f602f59d +#: 699b6b4ff6544f7faeeb9f52f295dba8 +#: c68960e6aa504d848baa9d228f79b622 +#: d80bc37cab244a838dc6b22f210108fd +#: 44b8d1766516447fb8c88325249d39b0 +#: 6c88abffe12448c7999d0268dd98391d +#: 3c681436fcb64600ad5b441e2331589b +#: 8448a10ed39946c9814070a5a8747f5b +#: 2472859665d2470bb065bfc0b93027e1 +#: fb44d6093f9241de967bd1a6a92c87d8 +#: 08e736d0ebcb4f969f5b6c1e9b37778c +#: 6f136f8c5e6d4b7088fce1fed9753458 +#: 5298538313c0410689ffa672c5266090 +#: 3df56f6e1f9a4a4999cbaaf11a1cd473 +#: a093e145386d4741a3c32f63e3d1b3b7 +#: b8530b14839d4c8c8d553f5ecd20f041 +#: c2ea625207034985b0c360f2a82bcb33 +#: 6b49644c0a984cefa8ad37bd37e25c6c +#: f5bccbd888d048908de44bba82b6968a +#: acf65750771442a785e04917545d20bc +#: e0eacc7163104667a12355c978c322ca +#: a747b811291345929a132043b534d8f7 +#: 6e2bbeaa9dbf4d0095fcab664be6f5ad +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 017b475bd4664867bb6949ff019b5617 +#: 22e7624f7c8a4117a3d3744545d2dcf3 +#: b59762528dc74f0fa3c39634bbc7b257 +#: 1c6dc455287548f2ab99194beb45b232 +#: fb448fea1e4d411da17ac96ac8102a8e +#: 12909ab179ae4ae984212487c8121eb8 +#: 0b506a02f13c4c2aa4ee74fe7426251a +#: 3f8de618dccb440bae0e587fb00cbbca +#: f65abbd1f6c1479e933a7e770f0b0b9d +#: cca081068ed54c418626a8f0830289cc +#: 26bd87134fbb4581a4f394d41b894084 +#: b2dbee1368ee427fad1bc38199801dfd +#: 46cf6a58d072411e85e96d08a4ce189e +#: 936a55c4d73045b7a97b48add3bbba31 +#: 73980af6f86141cf98c79c7088e50c86 +#: d64c9fbd67f44db186cc840553acf9c2 +#: 267de63306354febb545e6ce928be1e6 +#: 47f45e0b2e5f442790500ab0a1cb7ae5 +#: 5c03c74134e3491dba9c9a283a2eb3ef +#: 141f4b3b829f443c9e0e95b059139f3c +#: 612731b71d164a1d85b70ee0e6acd7f7 +#: 22006d01559c4c56acdb79d7f1ed738f +#: ec0331f905e2441fab9824d1f8c4963c +#: b879e907e15d4b709a7c4fb7e4e46856 +#: ca68861e26e843c79b39454f02ce4bdb +#: c793135c62ea436aad956d5fa0129ef6 +#: ac17053a86f84471be8fbb3466c02f59 +#: 479fe8e8503a4eeda03033937fea8178 +#: 6f0007dd2faf4406952fee24462ad0ef +#: f56f39ec6cb24f81ae8f8d24412d450e +#: f540cbb4fa004ee6bea4303f94a62480 +#: 17544644f3174233b360da2c7fc321de +#: df047e2a4b19450294fe199cbece81dc +#: 932053c3e0c04333bbe3132b2cc918f0 +#: 9ed8c6957e594b989803867465b0832b +#: 393c0085e60b406e91fa74316710ca6c +#: 911a2045702c4b5da52b8d43e124cdf3 +#: 4b0ae9cfa8734a47aec5bc961bf7d8ea +#: 63b00c35f848405e9fea923d03fa7759 +#: 6a70eeb5c346446eaa451b8a82fa36f0 +#: 8cd7d37a539b4df8a6a38d86b91a57ca +#: ab281ddb680842b9a168aa9d9d1142c8 +#: 949c13f67593491fb341a58620388b86 +#: 55e5647b51fa4afb899876de7b44a51e +#: a78381ea68c5462ca57f748f4891aaeb +#: 530048b485b64e259d50b0528f5a980e +#: 97d2c307e17a4aa98bf80c3816b2023f +#: eb9ad7bc68144f10904406488bd7ae24 +#: 113a72e344ba44e589ab4850f4e526d2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 52337249d0104ca580c5e6210943bc72 +#: c7af08750fc94a0c80bb5e5c08c372d2 +#: 00a92d81697344539dadfbfdce2c3e0a +#: 3355c400d500484d91af9abf9d8c9ef9 +#: db13e561df9c4165a4b5c802625cbbcc +#: 8e66bc061df64975ad9bf30ae75fd90c +#: 2d288ac0eca6428fa8068b8aeb74e498 +#: 3f87271e9c05417e900f9029adb37713 +#: 1f953a100c764d178b276431e62b1992 +#: 07937319ade240f7a90fb36a5472e1a6 +#: c565a35f45ca40559f36d81396c46e3d +#: 47c11f2214d84764a959b3ff74a63d43 +#: cdc23fa792124559afe3b3987e390a20 +#: ee71021717da49dd802d87bc60f02421 +#: 44d8bb786067461c8b33bad775be31d2 +#: dd7eff5537e64034b184274723af6237 +#: 52ffed98f7714d1bbb09b4ad4b381a3b +#: 553dae0cd9394c0e9137a02bb98c8e4f +#: ee9f7cdece4940bcbd199b915dcec202 +#: 51b0da5752f44441b375a662a1d64d28 +#: da01aa6e548d4f2891a9b15cf94401fe +#: 30fdcedd801f4a2dba5f4f38e507063d +#: f14c3ad4dc4541d7923495c31ad7448f +#: 275a32c577394adc91fa5d7f5a6fed3a +#: eaa571f6e74d45508cdffd151bfaf582 +#: 6afa672b4ba04d3b90212a928023bcfc +#: fb71a730c7804e9286d383102caf4a67 +#: 028ea6fdb5ba49f9a08a6692d327f980 +#: da328db062ea40f19d18874b2f9cae57 +#: b96dc7af420f46e19f9c00df62c78810 +#: c7e44c1f6b9145c5988f8198d916e76d +#: 446b6f350b954c8c8ca60e07388a4126 +#: 85ab8f3a533e4ccb9873eb250350043d +#: 946f305ba8164742bc3446a7ab858db8 +#: 29cb8fe133a649429743195affd2bf30 +#: 712ba163d10443c29b287ceb1232e0b9 +#: c2f8d5db27084377a656c113e3b70b5d +#: 857c350b424b40f9ab770f98de2e3d6d +#: a96f52ed22004a7a82bcd79c84750925 +#: 42796d8c01734d46ad3fa25098d1c751 +#: 8fe6b966c0a341d185f82c9cf3adff1a +#: 51474fdff99544f6b1abedab5085d891 +#: 2a5e5d5201974a199cd03d27a8b1491c +#: 49dbaa8a3f6047edb4755fb7bd949276 +#: 561779901a294cfe87c2128ce87b82aa +#: 2ecbc55463834e2682fcd0a3594aeb3b +#: 31b46c6200634597b91a737447d6e171 +#: 7bd72d36683f444da55da1835ddb9233 +#: 7c1b535151fc44ea84d54d1ed2fd4e94 +#: ae9d6053a2f14ae4922c1b63793c6f88 +#: 128a6789b2c9462ebee95fb16381fdcf +#: d72d407813de49e3be2933756b2db406 +#: 42ca03840119482e9d31a40274d65b8a +#: bdebdf3628074933b6a895136a48dae1 +#: 880c2328f0a84d0381d07cf9899dfee7 +#: 3e7fb085e8dd4de1ac7b54d6c800ac66 +#: 70cd20bbd31544489ea01316be4229df +#: bb08b53f2f9b4089ab3ea024b503c902 +#: 111311a6ddae48bf891ad6e67d5721f6 +#: dc5853dc916e409e8ec890746831eadc +#: aee5f325811445bfab87465a5fab003e +#: 4d9e217506ea4372a36ec4ecc7960535 +#: 6f5f28d895114461a196ad9b5702eab3 +#: 60f4cc079036447f981568d47d0a072b +#: cda080f2c2a149cf9248373a30e0edd1 +#: 5b0c6e5603f546379b9c18215c9019dc +#: 62d770859ea646589dcf9d21324e4be9 +#: f8251778c3374e43aa202c9d07e5357b +#: 172e994fc094460d981faead3e00350c +#: 658633a44db7427a933b8fcc6b93326f +#: c76298a4fc3a4b53ae6d68818c327c3f +#: 042280c58fe84b618136b19d5548d6df +#: 76b96bec186e4b33864bf75de01575e8 +#: e59738184f4b4338a19ed8db875b79eb +#: 70a60ebc026548d599ef06386d881b9d +#: bc99643b73cc40c5a4f05f25fa3011a0 +#: 3e68b8d98b854b88bdccd44e7f175bd6 +#: dfc398b5a4ad4f72ae0a222e3f37ebde +#: 5107c16ab7234e1ca52e77d18bb75a52 +#: c442d9066f924ccf8d55b5e7b31441ac +#: 46466179630b420d90d80ebcb09c6c3b +#: b3a7951b4ce7467b884d54b09e4d7ffc +#: 860769c89f204bc089e98dbbcafd624f +#: c82dcb98f4154804832b59d1d9c0be28 +#: 74a8742c580c481194865393f0f58a21 +#: b6af4b55c77d480ca0c837499df99049 +#: dc3dfead152947648d248f5a88311c80 +#: 8970d35aadaf41b2adaf367733e90f5b +#: 9bf24f797ae842cf8cdfad59f63bd5a6 +#: b1aafa65683e4b54b18ed3a9b1d4cf4e +#: aa2ed056cf66411b87e18e56e81a624a +#: 21365bbeca4e4b32afc9aa887f4f70d4 +#: bb54a146452640729ea3f68ae99c1a77 +#: 15e3574b335a482798a6e38c784337d3 +#: 45476a31229b45de941fef99739ae420 +#: bd46f6767b244874aa045cf3f8e1dc90 +#: facdd9770024468e8fe7e17f39ab1fdb +#: 26afff5beca04f3a94dc638ace345e2c +#: 86203a4d01dc452eabc2744094dbefcc +#: 8ee99948456b49e09dec4c13c8e74348 +#: 47de5658d9204fcd9828e2471198708a +#: fc97f2d126ef454782b1a72de0c8ceb3 +#: 74a6b80a867d4818a6bda19c4abfbc1f +#: a95bdf2342524361b0eeff769965a219 +#: d91179cc3f2f4e28af1ec96ca0cdc45f +#: d1f4ba11a21a4971b493ce3c52db1135 +#: 16e567f2d866484f9650059233210ff8 +#: d9e415cda45b42428d993b882a983b52 +#: 6b70dfa5a75e4b06a8ae1889c88c23dc +#: 80582caa73604c7395013682c9661417 +#: 779e5915cd5941e5b46d4964c103980b +#: b969b71e82654042ac1f32841c1f9a97 +#: ea1b3a22956a4c82b5a1a491e019e216 +#: d34b10e9736f4990a38eceb91d890238 +#: 0f8788bccebe4be8a852eeead877a21f +#: a30dfaceade34ed6a0d99258225840d2 +#: 2356b09765394de19ece8e31ed0512d2 +#: 49c32f76fb524ca4968218b776ea4a12 +#: ccc59dfbe4c74f3ab7ce781fc34dd9d7 +#: 64df42a01a1f4d50af96ef34a4673697 +#: b63b737ab71645728ccf9987b3efc2c3 +#: ee39cb64ba8349c2bb405000597a9be7 +#: 8dc6aea5f2bc4bbca92856a1aac3a29b +#: fd30d999e242444195f30f705c602cb8 +#: 4b7dd60fbe6147679a94fa89b8b319d6 +#: af18be50ba984c55b85dbdf8a64f3256 +#: eb2342c2bd6e4468bdaf66e7b17fe596 +#: f887c0fbca9c403b8f3ae3e5154fd9a7 +#: 2f5c26c11772408387f9c34d67faef33 +#: 5b831ce115bf4c26a93bd8f64b491a79 +#: 14e95e6784d2438180f37e224e265c88 +#: 97366e0dbaed4a3e808cf49f3a8914ae +#: 23751c646da54c0ea595f37b2f08c285 +#: 5c48940adfdb4bfaa15ea9ab562e3bf4 +#: 482509696f0f4f088a85d3964a0a290d +#: eaea8259e2eb449299750ea7049683b5 +#: 18bd6db1442c4002808665367f1eeff4 +#: 74381d2cab0945deb7d1f67b65a3d259 +#: 6cad2f3fbec7469c8c7536c6cc76f04f +#: 3112983bf6ad4816bbb11902bb4f404a +#: 07ba47aadd8e477ebffa0eca90f1e09a +#: af77d59d8dbf478cab05ac0e086f73ed +#: a61c02cb6bd04de98533ec754b54ba7b +#: 9d521860f62345489e151129f0a53a92 +#: 7f0ae97267364ec698a2fcedc3acfe73 +#: 525ca6ed29fe4f639791f36a5780771b +#: 180b85544ccb402c8a8acf97c5587f26 +#: 7155f66a8baf4193b7b8803d14c7437c +#: 6a9dadc77d5a4e48ac009958c04f6087 +#: 07c646d551604747a36912a5243564f8 +#: d6b4dc01fee84b57b516aa325d06c514 +#: bf77745f88e7443e9a43203984967261 +#: 89ad071e85ec48a4944d1e6f973dc100 +#: d2d61aa4479a4c25a6cf5d993f3868b5 +#: 5a353993fdd74207a48006698277ddde +#: 435a4a8bff5a4587a195203678ad8c5a +#: 3c051b4951c44a4b981489fb2c6bd710 +#: 2b1f745d57ac4aab9a82b237d325b296 +#: 3589314f4d734e988d58db8fc3fec995 +#: 96a8ef557e374fa2b2eafe7b68ece50a +#: 7121516377614213a6a577e43faf9f86 +#: 9fbeed695b0142b487c5a0923119fdf0 +#: e945b4aedf30494091f0a4a97f6c9de0 +#: 8426cb4438f24af587c7037e9fe8c9c1 +#: 137dab72eefa4b2ebf9c795cf5a2b582 +#: 9e3eed2008d04fa58fcd9596c2d4b441 +#: 07d20945c9d44c029770d1a98566d115 +#: 83f405ef31e24a528000c1ad5cdf3b15 +#: 7a89047d86fd47738b21a3b137516587 +#: 4ff2464113c940d48ceb94b85da82dbe +#: 7f071f8cd62646389357797eb365e75a +#: a483478d48f84aafa9c85d8675e09200 +#: bd0d5b8de98e49bc8fe619728d9c820d +#: 5843361d3cec42508226718fb35a2cf9 +#: e5f8d15fc0f74150a9e2ca6d9bc835c4 +#: fe06521dbaa54ad793bdade045459643 +#: 5f80fe92506e4998b217496da7045891 +#: 4087bd97d041448198257775b97585b9 +#: b8b585cf380b493987d48a0079963528 +#: 75662df3446642b2933ae1a596a30287 +#: 0f40ba5c00d54147829fc74352c03f59 +#: 14b44dd4226d4ebba13a652830680b64 +#: d3ff9e06877543588da4ce5601a59459 +#: bb7e2df55f9946449cbc87ba99d8e00a +#: 8ae183744e224bdd8d9a14fac7619677 +#: 881508f8b5ba46ca9dfa454bc4b2fd9c +#: 6fa6942c0af54f9192a5998e6673c076 +#: 4a114d7e516f4f47beb9ccedd9fb5b59 +#: ce4f7e334070462eae766443d704cfaf +#: fb28152871bd4b21970b80624536d68b +#: 7c9005de35b540689381dfc7a75c52a7 +msgid "Raises" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.replace:18 +#: 44165730eb744f8ba309bbead8d7fe98 +msgid "An invalid size or format was passed." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_size:1 +#: 18fd8b8e2cf343548ebeecbc10b4aad1 +msgid "Returns a new asset with the specified size." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_format:7 +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_size:7 +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_static_format:10 +#: 9adf62b3d3dd496d8296e2f28fb3db26 +#: 0745ca1b6ee24362a4d64ca7427632bc +#: 7d4b2761dbd546be90d9bb9950d4e9b3 +msgid "The new updated asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_size:10 +#: 93e6016595cd40a7b1d0dab443a478a8 +msgid "The asset had an invalid size." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_format:1 +#: 4d5a1d9e37a94f8ca44dad570f54f4bd +msgid "Returns a new asset with the specified format." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_format:4 +#: c83f8a1f70c645c2bd156cee9f378e6f +msgid "The new format of the asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_format:10 +#: c886a9cdeec743fba730f913067a88ad +msgid "The asset has an invalid format." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_static_format:1 +#: b55b6fcf0cec4d5f8a57ac6ebbef3b51 +msgid "Returns a new asset with the specified static format." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_static_format:3 +#: 88e4f675a5ea4f9592f17a4e1326bb23 +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_static_format:7 +#: a99351c344ef4193a12d16c9a9ca3034 +msgid "The new static format of the asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset.with_static_format:13 +#: fbfb165d42014fd699bd2ef4dcea2aef +msgid "The asset had an invalid format." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:1 +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:1 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.delete:1 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:1 +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:1 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:1 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:1 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:1 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:1 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:1 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:1 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.pins:1 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:1 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.trigger_typing:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_forum_channel:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_stage_channel:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_text_channel:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_voice_channel:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:1 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:1 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:1 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:1 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.leave:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.fetch_instance:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.webhooks:1 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:1 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.webhooks:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.webhooks:1 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:1 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:1 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:1 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.active_threads:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.change_voice_state:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.chunk:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_template:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_test_entitlement:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rule:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rules:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_roles:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_stickers:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.leave:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.onboarding:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.templates:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.webhooks:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:1 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:1 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:1 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.sync:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.respond:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.pong:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.premium_required:1 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:1 +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:1 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:1 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.pins:1 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:1 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.trigger_typing:1 +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:1 +#: ../../../discord/member.py:docstring of discord.member.Member.ban:1 +#: ../../../discord/member.py:docstring of discord.member.Member.edit:1 +#: ../../../discord/member.py:docstring of discord.member.Member.kick:1 +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:1 +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:1 +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:1 +#: ../../../discord/member.py:docstring of discord.member.Member.request_to_speak:1 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:1 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:1 +#: ../../../discord/member.py:docstring of discord.member.Member.unban:1 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:1 +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:1 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:1 +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:1 +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:1 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:1 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:1 +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:1 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:1 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:1 +#: ../../../discord/message.py:docstring of discord.message.Message.end_poll:1 +#: ../../../discord/message.py:docstring of discord.message.Message.pin:1 +#: ../../../discord/message.py:docstring of discord.message.Message.publish:1 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:1 +#: ../../../discord/message.py:docstring of discord.message.Message.reply:1 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:1 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:1 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.delete:1 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:1 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:1 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:1 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:1 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.get_prompt:1 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:1 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:1 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:1 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:1 +#: ../../../discord/role.py:docstring of discord.role.Role.delete:1 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:1 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:1 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:1 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.delete:1 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:1 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:1 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:1 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:1 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:1 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:1 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker.pack:1 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem.fetch:1 +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:1 +#: ../../../discord/template.py:docstring of discord.template.Template.delete:1 +#: ../../../discord/template.py:docstring of discord.template.Template.edit:1 +#: ../../../discord/template.py:docstring of discord.template.Template.sync:1 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:1 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.pins:1 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:1 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.trigger_typing:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.add_user:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.archive:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.fetch_members:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.join:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.leave:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.remove_user:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.unarchive:1 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:1 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.pins:1 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:1 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.trigger_typing:1 +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:1 +#: ../../../discord/user.py:docstring of discord.user.User.create_dm:1 +#: ../../../discord/user.py:docstring of discord.user.User.create_test_entitlement:1 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:1 +#: ../../../discord/widget.py:docstring of discord.widget.Widget.fetch_invite:1 +#: e9daf36896ce457cbddfeb00139760dd +#: 7ad00ffb5bab447ca72c6844703a96e9 +#: 0ca18e9a7adf4b6f9bfcce46aa9e3c6f +#: 704cb3891c8f40fd82c41a6e73d45468 +#: bf7d7300665a42d4b2d8623f113713f2 +#: ff88a521f3414956bb0ae0fb0241dcbc +#: b41df4171ce3487289ea11713cb69daf +#: c126483eaf8f483ea012ef62bb4ca9a5 +#: a5c07649e5ae469886fe90f590944332 +#: 6ca83568bdad40798ecbdd6239c77a81 +#: 16bc1d11ba1242fcaaa2d5f3a231382b +#: 97d7c3ed4fdb465b963224edb1f96c40 +#: 3db17b50b5c94a2e910ca4e66e1a92d6 +#: e36857d00d4a4b03a1a0dde15176d0f7 +#: 5d4f482bbf7846e59a2374c6ee3eb3ad +#: a228bf8cd1194556b2d999730fc00b47 +#: 81253fd018124062b2e6978ba7f46e1c +#: b7eba1a9a94b4abca974be4cda3b9439 +#: 867ac713660943d69dbd98f2164d01b6 +#: cb531c728a4e4ebe841b5d629b87de49 +#: 6eb05241c80d4ae3b044eb9161b223e3 +#: c812fd05fc964c57aabd04b4b16b89e6 +#: b1382f4fb77344589f6d0af222d4038d +#: 87c91af97b574208ae3fed3ce8222bd1 +#: 6e5bcc4045eb45ee9cc11a3a33632917 +#: 6ba495235f7645788ad7dded9e4cbc17 +#: 8c5c8dd3ede749a19ce6044fa98822d2 +#: 3e7128aea19b401893ffdc27d203a3b0 +#: c62fb81bdab94beba442b9b30c439099 +#: b61fb94b7fd5463b98f5c4cba114eb44 +#: d81d01d2bf864f69be7d59be99c53415 +#: 35d10e85e986443a9e0a1f97dcac92c0 +#: 3edfe5a70b18415b911ba5439cc5a95c +#: a006e586ea96435888e9470ed4c69990 +#: 80f4a463d8554a85a5f20b7b8a2e22e2 +#: def68b192c7147ba9f95cf729e534f29 +#: 16f0ba84894943f1aef0558e371df7b3 +#: 2074d7f99a844507a10fe0536d71e67f +#: 7fb30cd7713242d68f44b6b6ebcef3fb +#: c475e3a182784df084eb336605c7944c +#: 69a188049ab64f7ca4accf2252dc85f9 +#: cbea66b66f524924bc315334fd17e07a +#: e4db3b2aeb53457297109bc676433dbe +#: 5ef60e9b21b84048b0fe6334289f0abd +#: 463e5fcc76984461a559231b6cd6dd11 +#: f6c37e86f96f473a8d467748569b3925 +#: adee786460914fdcb477594f45acb37a +#: 7db62c34d00146b596edf2b23276ac74 +#: 99adafd0bce74bca994af7d097e50577 +#: b4e8c615fe5343b683b8b0ad945cd4a1 +#: 0370e808c57d45af969bace394918843 +#: 722b6b94854649b2b6cd0bcdec84d94a +#: 960b97e779684aedae87fb6801d55474 +#: 3b9f5473c35c4f9db28d3a986789472f +#: 7ffdf73db5ab488e9b51b597babc8b61 +#: b417d4f6381b47c98b155db7cd64c5fb +#: c98a9314dab44cf1bfa78489978e74c7 +#: 7fb6be439be4482eb842382bddf0eb36 +#: 7932b3a1df6e44acacdc6ef4e6344229 +#: 066b403845fe4067a93eb4cd4de9e874 +#: f18f5ee8a1464b5bad7b9626fb8800ed +#: 5b3163ea99564932af894f02711d4317 +#: 0cae40f9ce954ec9b15b77889eac1aa0 +#: aca413eb20544eddbf028107ebe44fe0 +#: 24480af3fa9148cdaabce5cd5523cf8f +#: 9a10b90385b0491d98530df90fe54977 +#: 910794dd47a748b5b041934ea50a6337 +#: 059ef0f530d84619b8da0bee09f08495 +#: e09ea472c1f44872ad4ea64ee1c21e7c +#: a1608d502dca48278f25d8285bf34e83 +#: dbc5260330924ccc9a634b6ce22eddb9 +#: 71c8639166f946578ed62e618eea3f82 +#: 32c4f92b225c40aba6f6d605b015c815 +#: a7d1faaa3453418aa9971cf314037c1b +#: fdef53bcd4fe42d8a81825e54d8f56c6 +#: 03251736bc4a45209673b35de70dd25e +#: d4b03cd6d0c642de8636f2597b002655 +#: 4ef47a752be4490ab9d2a1cb25e2cf36 +#: e945a2079bb04c629bcd61e67e414d1b +#: a74f11393eb5418294e5e13769447f09 +#: 2c943c8fd71343089344e60d3c9fb767 +#: e723aeeb619946aab492543f093b92c2 +#: b851b26755ac4468aad619aa68ba199f +#: 067e7dc1b997422680c9e162d3d51610 +#: 5d00842ba1244ed6bb6ad10f036a7c5e +#: 1480d7b9e4114025958eea7d3c947166 +#: 47a2173dd2b240f4a65b58f9110cc1c1 +#: 0a4e34097cfe482ca768fd79d53036e4 +#: 46430e5c8e004e4e9cdb235fbb5bd07c +#: 160d2bd81c0b42bdbab49cfa35cacd7c +#: 2aa6d567d1ec428a91a5b27e3a557493 +#: fe8de579a2694b80ae03e648547c332f +#: 9b52049b2123443f8a93550f0766ee76 +#: 9d96d9c78e8245ada22aad56304d487f +#: 08a4e1eb10664dd5be6b022bac2aef83 +#: 10289da2859f471e808cdc411e3039b5 +#: e3d44c95286a4379abdb70ce1c62f695 +#: ca136d4c55044ee5be76fdf98eb1666f +#: 496d61ccb549440bbc0f1ec223fa00c6 +#: 18facb2a7fc8497593bc7a79520f1c1c +#: 1a0c85f4e4f445efa0eb3a09fb1e56d4 +#: 278847f16964411b85a11f8bf1229832 +#: 6f38b1732e7c4af884e5fefa9e2bdbb9 +#: b6ed2534affd412394c5d2f7c1948e83 +#: 0b9f4b3fe663457784d536129f159991 +#: 12b0230c924b47918061c8a4058a3edf +#: 593ec426faab408c92f8033ce54736fd +#: 9fc736fd181d4a5c935fe51c8a22a9b1 +#: 8b5fe99c7a4b46daafe9be2a09e55ede +#: d8205b11c5cd42d1aa6d78b5d9830b36 +#: 226c3788a8ee4bd7bf00095e815bfc05 +#: 55465244218541ea87385c4086c2084c +#: 6212d16dde394751b9b34de053faf355 +#: 89ac894768914ffb82e7bc47dd651bbc +#: c384ec5f4fa14e12ab11ad5b9e720c28 +#: e1074e42b80b44968866c1145dd311a7 +#: d1cf53cd6b08478aa2d809289d17da88 +#: 76d3ba5e63af4503942d36f4f0f59b7d +#: 547be722da7b4368b8c103e5a5612088 +#: f15b103cf93b42689cfbbb486ae6df8d +#: c29de4766a0742c2a4eb1bcd5b539ad8 +#: ab36bdf998e64e30b5260fbf87528674 +#: ff9bf642554245b988587e83387fda25 +#: d8c7d203c2404be0ad34f0587b106890 +#: 520f90047f0c408ab9908a4501ff386a +#: 193786c4f0a34796b982278a10737847 +#: 9ff1b27eaf3148f9aed919ac1fa4dd0d +#: 0d5c4aef15d2414e89573ced79751c1c +#: ebba374e7d67494fa07e0d662aa6a336 +#: b2f5491b935249e9bc39138e7117cbcd +#: 6ecb128fc13147cd8ae46d91e187f06c +#: 2e98bc46856b4d69b7f9eb95c52e68b5 +#: 57aedb863fe646d1bab3234a45d1abb4 +#: 7190c03b7d20409a90a434ab021d324f +#: 1f0e792748e34d5f94de6b86e6e95609 +#: cae73aaa51ac4db490fcb3706882209d +#: eb134b2ff9064d4ebdb2bee8af0144c8 +#: ef51b9207a4f4f0f882d312d974a54b6 +#: 50ab5cdcd524424e8d28d12992ef8096 +#: e54f220a808a40c2b393ac6a404dfb50 +#: 3391068b494e4663b475fa9ebe746d95 +#: bad5f313a3c9444aaf569d5b946836d5 +#: c9e697089f1d495990baa62aa642a6b1 +#: 165f5f31731944848206a76e639bba0e +#: 19dfed4870654882aef60e0a5ed95099 +#: cf754e53d1014984a985a58a31a78197 +#: 06b7d078b2704fa28f4e82c63916c2a7 +#: 6e3c6409f686474d894003634c8ca86a +#: db5c65921745426cb55a5d936f43f1a1 +#: 4ca3aa53800e4b17bcaf87f326c7427f +#: b08f966d79f74df09551743c741bb98c +#: b99f9241cf2446288d1ca916d5ad2967 +#: a6bfb4a74b6c4037821b3ead56006e6f +#: 4424b1d9a5ab4b7ca34536658dd49270 +#: d4b7ad5d40e145758cde68bef42e57b6 +#: 92d1cb47350347cfbe56edc903edd861 +#: f27b2de4c30641bab783064104615e82 +#: da103c43bb7d40ada72380273c333460 +#: c7257b0364634b96848c7b6d4ec18c8e +#: 269d181b9571463f9c14c1a5ee9df149 +#: 63d4c005d7124242a54889d9994d56d1 +#: 793fb98f5ea24881a769f34ab7a39fa4 +#: 070fde321fd64f6ca5eb23f91397527d +#: d49e8ead32b444128719441bd5b08f8d +#: 371f1221061b4cf5895fb25917a7f08a +#: b06b75386c48407d8ff38addf8b8809e +#: a995f6cfbf1444cb87b66fb4645d7f61 +#: 830356f78ef04ba5957830831c365770 +#: d6041a5ee2374795837f443c06f3f0b4 +#: 8a85186e01b84df2a3f95a502b334504 +#: af23197ab1624dbca3c72389fd6f8368 +#: e9973a0087f34f7db010349a28339467 +#: 871e2985ad244d5180e3968e7f08c87a +#: 138e4ea80c2d40598e60530d12b0a541 +#: 0e3ee41a93714f6bad95116aec5a5943 +#: 698b1cd3a9ed4599a6c56924f2c5e2f2 +#: 9d7453112a134fb796719cc6d85f07d5 +#: 131568ab740844ef85bf80dbb6a876a6 +#: 0eb72fd55c0c4595b6063683026a20c9 +#: a31aba33f0f74e3482abbedb0bfb3c6b +#: d06ced011cad4858aa68d78ed47beed0 +#: a068cf3365a5447595e3fa2ebd374e7b +#: f5309c2a1dfc45d98914284e46d1b249 +#: 3bd45ee0e9ca4493bd777b1d7c06e8e6 +#: e07744e9ca4a46dd815a60d0a409a5d1 +#: f9a63e0cca9948589d409a85f7ded38e +#: 341250c38dbf42f8b6c6a6d6c4348097 +#: 7fcfb426945f4c8db1c3c8490560250e +#: 11a60741aad34689bf5ec63333c36bce +#: 9dcb22b5b15344d3a65c59927261ef52 +#: 23898440576d48419dd92346e5de0f01 +#: bc68f10eea2e443d851381e67f4df3fe +#: 6e4f599eadf649b2ab232d893d154bde +#: 62238b485849433da1c25e96c14c3359 +#: 4e787e85bbfe44e78a636a159fe9b2f9 +#: 59476eebbd08480a8b222e8b7ac3f552 +#: 8890a492ede8432f98adc77049ea33c7 +#: b0956b512e0f47b69f80e86d82cf76f5 +#: d26fcc7f45244899a3cef4290509cd92 +#: 22c77a23bb284568ae50b2f6f6a95be4 +#: 6460928be03e4fb3877b0ecd899e3618 +#: 58b0bde543c343c1926b7b04256c8860 +#: e31c85d654b64f60a357ac3e146a588d +#: 3cb955e872f84d0a8513311537657fc8 +#: 6861847dc1de4cca8a19507e1e4cabf4 +#: 1aca1d87db2144a0ba14f318b85c6549 +#: bc5ba16ce17e4ff79073c90da9ce9255 +#: 9233616e9e4d4afd90a791e4f6b482e3 +#: d19d2979bfd743199c75a3dbd84639be +#: 891083a00ca34a3fb6507d8aa523c1d3 +#: c95e9a8a8edc4ae5ac94959a4aadae9b +#: 284ed95d836447a6b536802242c9427a +#: 3919bf3731a844eea06286733165ac37 +#: e653d82fb48241eaa4413aa125ec219f +#: 1cb6075f3f194451860b2b0d5b61cbac +#: a44d81c994c04704b436f55104b69a75 +#: 1d91c5fdcccf4717a81e29893e86d231 +#: 8eb57684f086463ba215d86d56cd2281 +#: 26f2f59b8e744b23bdc9a60309726cf5 +#: 878c259bc0dd4889939475144bc606d6 +#: 6d81af8a77ef4e87995d811846d0df6e +#: 99155547cc164b2aaa9c00157c687fc4 +#: 9060499d7c384196bcac4b47c0306cf3 +#: 2bbe0e65c93243c08ff7b7cd2c80f257 +#: d22560aa064546fc915cdfbe9e702118 +#: 4bb1325c11e943fcad9ea03c3804d426 +#: 419896ac2edd40e4ba29248ad7dc9b8c +#: 8fe96a67ed0b47e3beff4742cae88ba6 +#: f15aef60981c45a19590824f2616bf60 +#: ae10f17f251f4dad8ed0883d0f7ed4db +#: 3d590a233a2d4bed83cc0b4386f8ea8b +#: 6b3aae28e5d84ef8abc0553a19483ab2 +#: d5179ea3b1874e7194cdc69cc0c7f812 +#: c85efd72728d4227bb290ae439c27b81 +#: 86941ac21def49b08b88e68264dbb6e0 +#: 46cc94d5d8e5488895380643d21e9069 +#: aa62ad1522884dc790a2dfc5454952a7 +#: 5c7046a3548c425da7155fc529e65f97 +#: 7a7c7f16502d4cc1ab9f741fe62640b0 +#: 263e400558ec45ca85e19277ed9487c2 +#: 93fde0086725468abc0210519554f912 +#: adea4804061248298c155768c735c9aa +#: 2f4215aae076422ca9427ded30fa1ea2 +#: 56be168b6a9347019109dc33ae79b9fc +#: 4e1c3eb2185a487fb9673f2b8f70c825 +#: 43fde12e1acc47248fbff9f9636f281e +#: e5e22bc8f58c454d9027340c166f0147 +#: 64f3be9e41e1418287981ed84b912c76 +#: bc95a18bade943a38b37779ec8f00de2 +#: 4503aa8dd5f94ee29b8bbdb1aa08a10f +msgid "|coro|" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:3 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:3 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:3 +#: 4dcd15b67bf147479ba86c1113f22610 +#: 0a45793fa09947b5b76f788948db618b +#: 12183d52c0de4e8182bf35a74794a8e0 +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:5 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:5 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:5 +#: 65febeca148b4be9994734d258af10f6 +#: 61bde54de96944b9b82f92d99b94300f +#: c4a91694d5934b96bf2829050ebc9cbf +msgid "The content of the asset." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:6 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:6 +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:17 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:6 +#: d3b229e6d8534eceb97a2d8228c54f0f +#: 54bfde75f0f943679d7db0a7aaac127e +#: 5dda9975005547e4beb396e3191f0db8 +#: 436967e4ede649e88029af4bf3dce2f4 +msgid ":class:`bytes`" +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:8 +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:18 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:8 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:18 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:18 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:8 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: b83fb92fb53945bba9a45e6f0fe3f9d7 +#: 34973bc8542a42cd997c216b94cce104 +#: efdeb231d4f9438d8a33f5d333df64db +#: 658ea7f461a8400fa5cf6dc4ef4a5231 +#: e9634caa29a54c6d965c0c685f05597a +msgid "There was no internal connection state." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:9 +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:19 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:9 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:19 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:19 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:9 +#: a1e890fa41674e048ecbd57d80238a69 +#: 2e3e6e96952c4e09959ea48ab64f6bb9 +#: 0926c1a57e1d42ca8306857809e2bbf9 +#: 84db01e9207d4333ae60507adf4bceab +#: debb283aac24404096c239560257074c +#: 223bc6e8d2764712b8a9d2b53870fd4f +msgid "Downloading the asset failed." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.read:10 +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:20 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.read:10 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:20 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:20 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.read:10 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 9178ef81aa534252b75195e5f2fe0095 +#: 9cdae5cd0ee548be87ed7cba9ee65aff +#: b743575e43144c4e81e75432b4dc9350 +#: 7205a5031db94fa9a96a2bcad63df2c5 +#: 30e8ab2cfb6b47deaa682e7d5ea1f3b8 +msgid "The asset was deleted." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:3 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:3 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:3 +#: 4cbc6c1c6cba4159a0d4a5b6c0d718b8 +#: 53a10fbce32c4c78adf94540d77378d2 +#: f317d4e0a40a410c83f716f871008586 +msgid "Saves this asset into a file-like object." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:6 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:6 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:6 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:6 +#: 83de373e758a4e4681957b8ec406b431 +#: 7b493c556a40473db9b99d2c953c19d8 +#: 7bc5cf8ede5a45639de67d42ca5aca08 +#: 8a40b2090f8e463da60ee4139a8cf720 +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:11 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:11 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:11 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:11 +#: 046ad38efb79459fbf2a3ecd8b279567 +#: c4ec62dcfb8546f5b32ef163c4e401e4 +#: 148b8fad8702458e82dda1d1d36058f9 +#: 30de27e3700e438f8856f133935452d9 +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:15 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:15 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:23 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:15 +#: aede6c3b17ae4ee08ab6dafed6701d9a +#: b4b183e053614b16a4b57382139bccb2 +#: 05679ca6d69e48cd90a4c771b4725c81 +#: 7ea168e412644876a550849da5760191 +msgid "The number of bytes written." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.AssetMixin.save:16 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:12 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:27 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:39 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:60 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:39 +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:39 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:37 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:76 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:94 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:37 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:51 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:28 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:39 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:64 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:70 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:37 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:72 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:90 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:37 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:56 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:62 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:98 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:41 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:48 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:16 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:39 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:63 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:47 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:59 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:71 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:119 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:152 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:158 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:18 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:9 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:9 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:9 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:9 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:57 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:12 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:42 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:11 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:19 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:53 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:90 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:97 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:34 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:34 +#: ../../../discord/message.py:docstring of discord.message.Attachment:28 +#: ../../../discord/message.py:docstring of discord.message.Attachment:34 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:24 +#: ../../../discord/message.py:docstring of discord.message.Message:119 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:9 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:15 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:21 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:9 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:21 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:9 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:9 +#: ../../../discord/partial_emoji.py:docstring of discord.asset.AssetMixin.save:16 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:29 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:41 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:13 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:7 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:19 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:7 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:8 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:14 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:20 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:7 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:13 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:10 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:16 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:27 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:27 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:9 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:15 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:36 +#: ../../../discord/reaction.py:docstring of discord.reaction.ReactionCountDetails:7 +#: ../../../discord/role.py:docstring of discord.role.Role:41 +#: ../../../discord/role.py:docstring of discord.role.Role:74 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:23 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:35 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:29 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:53 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:29 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:41 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:59 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:29 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:41 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:29 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:35 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:47 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:53 +#: ../../../discord/template.py:docstring of discord.template.Template:15 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:42 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:48 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:54 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:70 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:76 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:82 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:115 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:146 +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:27 +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:33 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:31 +#: ../../../discord/user.py:docstring of discord.user.User:31 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:11 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:11 +#: ../../../discord/widget.py:docstring of discord.widget.Widget:21 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:25 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:37 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:25 +#: 42faf5a34414420fa7c8b306f914946c +#: 940c35d806714f3490c1706f2b5e9387 +#: 6b01df183fb34aff8d8ff8f39fcd123f +#: 66016977cc094ded920608f03478efe9 +#: 5191b22157d04bf4bc0a54a5f2b92103 +#: 60c6d421be604ba494cc3d95066a7282 +#: ed30d7077e91479b8d8bca2fbdbe9c9c +#: a29ea8b8246a43af9b40003208bbc391 +#: cf2159859c6247b487751085c8eca2ab +#: 629d14726075491d8b2353e9951aced7 +#: 890c84de21ba4d91a8b26637510d4407 +#: b50d54ba08564b4f9b2be822321beec8 +#: 6b195ebe2b3f42baa97cb2ab411e7e1a +#: 212de6faa7504807a9cf8215d8063c5f +#: 1495a50b4ab8413cad396ce6b79fc8c7 +#: 4e73e268d0bc4f3b9f9926548f91bef1 +#: aa8742356cbc4c489cc800a7eb9d42f8 +#: a5de6e34f3a84becb10665499bedb572 +#: bc403ebbeb184ea2bda7548155852630 +#: ca35a42f7bd740a59fa89b4d31894909 +#: 09a9130eef2f4e5f97bee108b1b2125c +#: 5f353ab23d4e42d19a2257f9ead36a65 +#: d69750ecda48449186ede1be30a7b7d1 +#: 36c58ec7aedd446c811c29133be2b17b +#: a5a4c1b8ac114eca9eab3890c39778e1 +#: 339e65abbe9d4a54b0a86210b4acd810 +#: 8c23da839e504dcbad56c013a4ebe850 +#: 72a113b06572465e8753603a6119a0a0 +#: a0c867d0f0114e728a824c09253aa502 +#: 938afce93afb48dc8f304d083a5ca6b7 +#: 50ded8c760184074846ac64da8c58ee3 +#: dcbdb1d223eb457b99d9f566606697a6 +#: b98c081787dd469eaeab1b7cb8cae4a0 +#: 9bf3036712cc4602b03585288327a9e1 +#: 8911c6c6af1f43749596a308d1d710f7 +#: 3f3369e2c5784b7dbb7da68c5227d67f +#: 30db4e97d9204799841b1764812646e9 +#: c58e27211afd4c368237db9e2f1ec7fb +#: d5c4a314f9694ce3b57302f7a4e73492 +#: 818c9ad28434407cab4aefb28a35dbee +#: d0eb2ea4f60a41a2985846bb68924d88 +#: 7a3652cf7e1c4605ad9ac75cbd4a9ca4 +#: 717e652e58b3495ba9a7e55b4bf16a9f +#: ece1155c2461436786da754b290a5355 +#: 02fe3418f1674334b5ce2edfea7cbbd7 +#: 29aabb69eca048588186f11d301e35d6 +#: 3f702f3b023c4d6c8ea5dc71104a8066 +#: f39946ea50d644c4ae1f953ff7f82f7e +#: fddd4aaac78742578a1d327e4559df6f +#: 7814b0690a114c4784a4e8fa9776aa9f +#: 024585bd4c2d4a538326b04cd089fceb +#: 5347c5d4323f40d284e0e154277d17d8 +#: 890d54d71edd4ed990284a23e5249e5d +#: 92b796b0d44346bea8afbc793f9715d1 +#: 952eaba19e1d4bfdbad69b6f18315d9f +#: 80d2f6e36f984a70826291512396f3e0 +#: c1dc200c7169434c816025990dcc0c35 +#: 6116c6023dfd44a2a9cfc78508c1c714 +#: 96293918935f48d6ada89f566d08fff9 +#: e174a94127fb40bea5aab4f92c443ed7 +#: bf287c1ec0d744bbad0cdfab79c3d493 +#: 619a84d5a6dc416d8f5f566881602c58 +#: 7d55f54c00994e50bd98c66112fcd943 +#: 49265477c0a3417e85a99528adf6f422 +#: aee6ae00e0e044ccba460ec89a76004e +#: 5a6c38a500874eddacc3cb6eeaac09d9 +#: adb3f0012db74ceaac509b88041e40f1 +#: 6949e6f68eb84f37b9e78526accb7927 +#: 271a7d1b5dc64585a8287a2229b96d39 +#: ab3714ea5aed4d7198a27dd36211f8d0 +#: 849f705b147745058a7f16e0c8ae2366 +#: f7a2970c171f4754b0788f2313b69708 +#: 5505aea1b95e46e2838db0b01c80d258 +#: 702bbbff9d5548ecaec29a79a4160d24 +#: 79bf77a3b7ac4a22ba99ebee18911fa9 +#: 504437314f8e49b3b115da3f88fad67a +#: ded8f42b70a5499999c95ecfe1fa43fe +#: e29afb68ff124783b69f22b0b1711152 +#: 624b2a53d4194302884baad534f1259f +#: a008ad896d59495c817a3ae3072e7054 +#: 1f832a5c51084b888d7c2372688413f8 +#: 0e8533e17fb74f058e53953f669edfc2 +#: 7ebf7afed1eb4758ba8005b5bb682268 +#: f4a7f70a1d6240f9a840263bf510ce3f +#: 3adef071b5864d3d86cfbc306c58d38d +#: 6cf892b4e89347d8a77bf498782b5a0b +#: cee4a914e6354ab7bf41b279c1ec926b +#: e9c971572ca84c6da2f6dcec3e0733ff +#: 0947f680c3bc4b5c868103992746ac65 +#: 89233f52b74d4ed1b2b4dd41cd845217 +#: 58b6e468dfd04af489d4552e5d56c087 +#: a171c30ad8c344a9943bfb013a6f78c9 +#: 1572e1ef1ebc47438047ebb169459efb +#: 4f1daede50364f8d9e69ae2b963dbbd7 +#: 9609654bb44d43c2ac41b890d6866cbe +#: 0a4c700d18d34451b1ca6fbc45189f5a +#: ad7ee6da780b4b58b8dd88e528b702f2 +#: b1877805deb14090aaed7e8dc3e50637 +#: 6e8d05e8c93543e4a10c9b6beae4792e +#: 009d7100d9bd4bdc8a548231b3fa0566 +#: 48fd52b23d484057a5932c8248254961 +#: 7999b36fcb6f4a5eafbb77eef3b89644 +#: ad7ae4e9cbeb4459aaf8838368c34f17 +#: eebfdbe0827e43a68cdc75e2a458fec0 +#: 3ecc4c2c248f4bf2a2e59572576add2f +#: de9022d44c3e4f48bdf058977b6b108a +#: ed8d938162b34bbc839d4daed1638791 +#: 38f5ceba63654c0f8f78312948893450 +#: 0e5bf515a65e4eed8f818fb56fa487fc +#: 5dd5cab5e779421a9bdf9181255068de +#: 70c39e188baa4a27aa1284d574bc4325 +#: 6d48b131a4c64996bfd2029275d08e17 +#: bb98a0919ca249c093282e8597a1a9aa +#: 59bc3aa9a7984c2bbe04ec1deeb7bc4a +#: 1bc452b2d39747ef81c9fcb4589e4e7b +#: 8f6b0e9ca4f24bb9a8e3095cdefbb292 +#: a8c4d1e85dd241b89a1987ec0063e0e4 +#: 31ed0a71743449b8aec4efe12401a292 +#: 2eae969ba54644678f82211147929f23 +#: 942bc1fe475c40d193ca3466ba797a42 +#: 6e6a6c0c82fb4519a9cadc275362e1d8 +#: c36efbe0cb544720bb082358eee64294 +#: 0f44d411298a493d93881dbc0ce82810 +#: 5b2a2f3aaa9a457b88544791e15c8ae0 +#: 0e651057a6e14344b7428215374b259d +#: 20a7471157014793807f03e8a6a7e833 +#: 4037b612bcd04850b601ba19d284fb39 +#: 00f009c60e194eff933f9f84712406f8 +#: 263cfabe6d7c4b088657b18dbe502af5 +#: d1b81f7eebd140c9bec7bc585aef1710 +#: 52a9fdea689443b5866193231aca5ba5 +#: 88d2db80ba934afe8b8754ca6a43cbb1 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Spotify:1 +#: 4d8441d00798480f97977a334b4a48da +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Spotify:8 +#: 4b7d1b841620499ba7463a98767f47e9 +msgid "Checks if two activities are equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Spotify:12 +#: d89f31e4e5404f12a1ce0f26c2f146a2 +msgid "Checks if two activities are not equal." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Spotify:16 +#: 594c0f99676c49e082bb82c19c0f7d6e +msgid "Returns the activity's hash." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.activity.Spotify:20 +#: dfc91939393f4a7e9857d116b2b1bbd7 +msgid "Returns the string 'Spotify'." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.type:1 +#: 0b0a706f84ae464cbc6dfdcdbc9e8933 +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.type:3 +#: 99555b5fa2de47b2bd1cb78ad4c12e18 +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.created_at:1 +#: b6518f9c55b54751bc83644713021450 +msgid "When the user started listening in UTC." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.color:1 +#: ../../../discord/activity.py:docstring of discord.Spotify.colour:1 +#: 66c0095a60a34c59a3390d2c9df00d73 +#: 2198a9c9e1f54df38b83ca3b1209747b +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.colour:3 +#: 80df3891719c4ecdbfbf1540c062886f +msgid "There is an alias for this named :attr:`color`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.color:3 +#: 3ef9a24d763545acb4f24a5d289ec2cb +msgid "There is an alias for this named :attr:`colour`" +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.name:1 +#: 97308ab0289b48c6b918911a58a9a597 +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.title:1 +#: 8dca551009b444789adfa0d0fcb4c606 +msgid "The title of the song being played." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.artists:1 +#: d0687c8a579342cba812c673b56621aa +msgid "The artists of the song being played." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.artist:1 +#: 65057f550e364368848a89daf74f96d8 +msgid "The artist of the song being played." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.artist:3 +#: ecec3cf51d2b4896906f928dae17b0c8 +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.album:1 +#: 73ba8c064af84734beb1457181271913 +msgid "The album that the song being played belongs to." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.album_cover_url:1 +#: 1a329a4988b34f5288ac278d2806f965 +msgid "The album cover image URL from Spotify's CDN." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.track_id:1 +#: c6d5df6af7634597886f212077f9b892 +msgid "The track ID used by Spotify to identify this song." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.track_url:1 +#: c10b93e08a394c8fa658fea9d8cee51f +msgid "The track URL to listen on Spotify." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.start:1 +#: 0c912b73bfe74d9b9736d6d3e34aca1c +msgid "When the user started playing this song in UTC." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.end:1 +#: b6a0a3dce624443db41a83233c76221a +msgid "When the user will stop playing this song in UTC." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.duration:1 +#: cb55726247de4a8e8fa41253942fb6a9 +msgid "The duration of the song being played." +msgstr "" + +#: ../../../discord/activity.py:docstring of discord.Spotify.party_id:1 +#: 2368f55e263f4e57b9256c714d6e201b +msgid "The party ID of the listening party." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:1 +#: 8521704e5a85426f8785035e260b2b34 +msgid "Represents a Discord user's voice state." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:5 +#: d19a2b06ac6745cf97412af920e58255 +msgid "Indicates if the user is currently deafened by the guild." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModAction:0 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:0 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:0 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:0 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:0 +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:0 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:0 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:0 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:0 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:0 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:0 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:0 +#: ../../../discord/components.py:docstring of discord.components.ActionRow:0 +#: ../../../discord/components.py:docstring of discord.components.Button:0 +#: ../../../discord/components.py:docstring of discord.components.Component:0 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:0 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:0 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:0 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:0 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationAccount:0 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:0 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:0 +#: ../../../discord/interactions.py:docstring of discord.interactions.AuthorizingIntegrationOwners:0 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:0 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:0 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:0 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:0 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:0 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:0 +#: ../../../discord/member.py:docstring of discord.member.Member:0 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:0 +#: ../../../discord/message.py:docstring of discord.message.Attachment:0 +#: ../../../discord/message.py:docstring of discord.message.Message:0 +#: ../../../discord/monetization.py:docstring of discord.SKU.url:0 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:0 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:0 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:0 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:0 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:0 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:0 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:0 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:0 +#: ../../../discord/reaction.py:docstring of discord.reaction.ReactionCountDetails:0 +#: ../../../discord/role.py:docstring of discord.role.Role:0 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:0 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:0 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:0 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:0 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:0 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:0 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:0 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:0 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:0 +#: ../../../discord/template.py:docstring of discord.template.Template:0 +#: ../../../discord/threads.py:docstring of discord.Thread.applied_tags:0 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:0 +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:0 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:0 +#: ../../../discord/user.py:docstring of discord.user.User:0 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:0 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:0 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen:0 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:0 +#: ../../../discord/widget.py:docstring of discord.widget.Widget:0 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:0 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:0 +#: ../../api/models.rst:0 +#: ../../docstring of discord.AuthorizingIntegrationOwners.guild:0 +#: ../../docstring of discord.AuthorizingIntegrationOwners.user:0 +#: ../../docstring of discord.InteractionMetadata.interacted_message:0 +#: ../../docstring of discord.InteractionMetadata.original_response_message:0 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 5d2422bd8d6c40aaa09875550353f8d8 +#: 7c45525c2a804ee983410a85d2856c72 +#: fdd925840fb24e89b0f94205c0acc9fb +#: da073de05b9e4f528d3dc81a9e6ac777 +#: abb9957168004deb9b0b16726211ec29 +#: f8d9a7bee8654e418338d5153f0346e0 +#: 1b2606ff5e8b4524989753c9ad467b97 +#: ebfd2a17c7c64a649b40a97c0397f08d +#: bee43d44de1540dd8308d7840112e7ea +#: ea5702097679494cbc117ca53b79b9d1 +#: 7e3d3537787f4909a3f533956a0b2114 +#: f619d28bcac54b87b9826c65caaa95d4 +#: 338106e55c8240eab14065502b864dfc +#: bc3aa6d4529e45068a1e542de6b4fb17 +#: 4dee2a1342b24edcbb70f7c373b370a3 +#: d4b6e88a914c4f039e215ddeec921bd5 +#: d1bbad3b31bd49bfaea28fbc02d6c4ab +#: 7693963e34644ca1bd2effa6f88d8b9e +#: 272747f7539542f3b8a44148c72e26ea +#: 8387e2278a404919af843b93e8115ab7 +#: 784be10dac3d459faa6de5dc766fca6b +#: a854241a48da4657ac4191293b46900d +#: 4e47f55a759e4da2818894aa503b7ee5 +#: 69cefcf03e884ac7b5fc11b7d1d29cf3 +#: b337c6dc8c414befa7850e212ce7d7eb +#: bf0d57cc45cc4633bb0cc7df070c4418 +#: c776312038584368bc9ecec0c0ad8dbf +#: 35a8b82808b8453db119ab7ba0ebcdd1 +#: 03e71a7ef3c74ac7aeab4c072e40f78d +#: 176e4886bf9f4105b2c77ab49bff6956 +#: 614ea7004bc04ea0b4e031051f813524 +#: 7a27fafabfe045e1830b6e6d3c6728b6 +#: ad846a914f534e62aa1a0fa410b7ffb3 +#: 22065b2145c345fcbc326d89075ec35b +#: e18c8d576865486dbf7e1e5055f5ce7c +#: ba3676ed311e42e99fd2a599b2467dba +#: fc1703444c8e43aeb6b207c0f0770564 +#: ab173d33d46744e6a0cb8b961e49e23d +#: 9f597ce69b054fe48d2922e85db0c3af +#: 9173191c27e6484794007b6452c643b8 +#: 03a5eb78e95e41108576c4db355fe914 +#: 1bdb2cabcf67495ebdc667608c720a06 +#: 22ac68d587fe4abc9f96441f06046dd9 +#: 095f7ca30ce74014962ea2b3236a9c3a +#: fd31d6e51ff848fbaa774b695fb45f96 +#: 0d3d1607e68844609eed1db5d315d17c +#: 77b5c1a970774a8ebeabdf892fe59af6 +#: e4ebc8ba68aa48d1ad1e4703697409ce +#: 495f29871fc9457e9d2309a9a716f0d5 +#: 998a56ee903a43baa0dcd25155351a0b +#: 06df0be9e38d4672b7997b4b6bed681c +#: d7244d7c36304984b34b1f7bc9f77171 +#: 655791b8ec334318a71371e38c2748ad +#: 4ab61677a7bb4b46a38295c13b89b84c +#: b89ba10007ff47f0a80093f54be43e16 +#: 0d7fa3aefcb74cbda495ff8a7ba6fbc6 +#: 2a608fc04cba49d98e1f1ddaeb64d63c +#: 022d0104c2db48bc9630f70a4304365e +#: 9cfa3c015b574cc9879d457ec5fb2607 +#: b99c99a9aae44872b07a6e5714355931 +#: f893de4cfff14b6fad708001d112c886 +#: a79f925772d5431288f420c483672dff +#: b2584d98803a488da58a6cfeeb4ff514 +#: a7eb34de6a7544ba80ac451d76e97de2 +#: 02722029b4644ccbb2826596fdd7d4f2 +#: 2cfabf5b7fef435e84dfb3fc2787f1ac +#: 6d94e4d6b4274516b6b9f993418424ab +#: a90d060620ea4f589990c3d137e2fd63 +#: c265aacd65f544b7b53d69cd86c1a6c9 +#: f40b4138a7f643cdad4ff34785e7a1a6 +#: 445c00ebbc034cf592fd52d5d03e6cd2 +#: 39e122018c1842f396b368886b48e775 +#: 1a5fb7ddf3a7455ea4289176cdc0aff8 +#: 19f362c6d92d48a38052a262699789de +#: 65592515d2344a05a46a09f7c2971220 +#: 9807910de97640019833188504fba5e2 +#: ff120de4acd049acb1bd45f48960e558 +#: 05e0203dbd8649cd8585fca15c617da7 +#: 997c9a6bf9f841e1a23ee87e07dc133a +#: 82e604d0bafb4db995460f2cd17d033d +#: 301f746397184c208e2c02257b8dddbc +#: f2e4b8b8137d40a2bebbf3bc5de39968 +#: 0bc6ed7330724dd5990afe78502410f7 +#: 220cdabc3311432b998e5c424c465750 +#: 38452ae8461d43858b5eedf649345464 +#: 8fd99964bc5f4c75b99e76cd55db8f3f +#: 4ff0756fe2ff475e9426ecf6e42de593 +#: 999d70ebdc004054bed7337133d7badb +#: 40e0a342c08347f4a56b1ca567727562 +#: cd2df1c929cd456f8d9d8bf26bf9301d +#: ea38f3e356fa4161b8de01801d95f3b6 +#: b9452c8cf7c2467e9e6c1b7e509554ca +#: 597e2c7023454f9bae54cdbdb61770d9 +#: eb97cfb2bf1c4e2c98573c7e3bbd8c4a +#: 21faf240333d4ce2bf3365f28aace9c3 +#: 46bc1c63dd9e4910a17146639aada31f +#: cd84f3ab22b34b47b43cca8064efcc1e +#: 4e9a5a92ba97487c98c0e80a7c1da703 +#: ee3b3590bdcd478e9bf22ad66c97f6cb +#: cf8df1038cd14c499b0f1e011403c79c +#: 8e36b6cc07aa42da819389f7b2caa577 +#: 95a4a27c7cc446feb8ade2dd0ed19a75 +#: c73d884c4f3f47b3882953a0d0b64d00 +#: 5c87aebcd49e483a94cadb1a64305abf +#: d20c90ab1d3b4e78a4b1fdb0230e5cee +#: 11b797ca46964705b194c18b4a73a447 +#: 08e3e9c93f0b4183ba0461cac59169eb +#: 1a47b03bc43541c8ac4ed7daa9ca1088 +#: ec2d1bea39794ebcbef93b57b9de6d67 +#: 3f61e1f35e8e409586a1c02b6434c7ad +#: 364abd3036f54f50916f10f4efd58771 +#: c6917a192f01402aabd064ec968591dd +#: 09e3beef264a4814a23c023bad7967f1 +#: 65673938e9ab431fb0c36fba6144e5e1 +#: b8c22f4bd1b345eaa7b1ed351b8b599e +#: 72133300fc0e4ceabfa5d18acd4f5a9c +#: 6356776abd8f454aab1e3ef10a9b60ba +#: 27158b656eca4afe88f99efb05ccb80e +#: de6c29b7c5de48cfbe3371df25e2e2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 7e6123f6c3034ac4a78c826201681382 +#: dc8b2ebb9b464db39800d4a2d701ed92 +#: 60ef176072974c79b40bbd167b3c3034 +#: 9e8ab7ddb172498cbc8ce9282743352a +#: 4ca295d01b0b49c58f92e474e0ed1fc7 +#: df3dbf2e68d24c62a5fabc97e2053570 +#: 39f3f034deb94cfea9a4263b52ef2f97 +#: 16849000e9a2415f9601d3868befe964 +#: 7eced8dde15142d3bf0005a934a7dffc +#: f0d760df0d784a62ad343b6a74831313 +#: d46dcae70ced44dab1079afa009e2bf7 +#: 5c0843f1820d49819f6082b3fe233522 +#: e01cafb6a4d24dd2ab82bcb0115bfc8a +#: c932c92ad1a54b43903a3311bbce67de +#: dc1206e6076740ba89576469c79bcaae +#: 741c3ca209794d5e9fe7eebc07ec75bd +#: 38c3ab4a2d8f4c49a0b504886396a433 +#: 165bc4813b5e4175b90e2cbba3a92719 +#: db3d9cbceeca44aebf51c6605c443af9 +#: 8fce091b41924f8bb5468bf71e5aa93b +#: 71ddfe2299ad4e38a4d3bc42d5f7777f +#: 88755ef6a22f4824beea16bb0aa8ad84 +#: 58935aa98fc049cfbac6f188ec8b31d7 +#: f5762ca50061468ea0b74b07436b15a5 +#: 70e7b3bf397245f6af714034636b2575 +#: e0f05100fcf540b0b59684810a253d92 +#: 41742f795f1d40b6872cfcc04145c4dc +#: 84d84596c39c4bbcb69baae986eba3dc +#: 53a153a491ad4821879e7ad340c6aa92 +#: fcdd958fc9fd4968b5e4a0f1fae184d5 +#: 8cf50c1fe11a4fbcb19356e32908adda +#: 6c009cb242c043bcafafc250e99e59d1 +#: 56cf003ddc2e4ce1aee42c380ff8d371 +#: 17b0b4761e884068948dfa2cd34e669f +#: 7ea62a46635c44d4b0916b68ffc17d1a +#: f82bca8f122f48e5a90a3b85532b7d1a +#: 0acc9fab05664c3c8c18f75f7e21e621 +#: a5de51e0fe524908908959e33a9e20bd +#: 6d489057e60e45099e7cd51d8bf74869 +#: 62b00cb3e3a048f58f693d9cf5f05a74 +#: 540887810b0445c393e4753d76c910a1 +#: 1fd95f82b5054dbb85cf9066425ce33b +#: b911634ec66943cb992eea31fcb030b8 +#: 21b87cfd2fda4ca3954afef3804f476b +#: d3f35c11e125429e82a7e7b916c74a86 +#: b68dd2d6318744168c30841153564b76 +#: ad903a198d534f579dc3bb8b569b30a3 +#: 4e495453bb1447748984efd54e0c8179 +#: e49c28515e3448ecb0791292b8a9bd32 +#: 9c3dcb9ee7fe4dcaaad1f9c164323a1d +#: 93d8c85fee1c4e07a09ba945cb3b1886 +#: 006c150dbe9c43fd8444f852a64308ab +#: 26dd74f8a9084a33a5ecd125a40e5ff7 +#: aee927bcba354322b73b7256a61d8af6 +#: 17214ffba4bf47d69499886581ac9830 +#: db4bb0c52a0c48fd92ae706a0ab52cc6 +#: 568d2366bc1046e7bcbd4faf0594c6ee +#: a796936f796e4266af1c202ffe2045f3 +#: 6cd1447aedaa4bd3aafe024c5a596505 +#: 21f1063175d8427196233df8956629b3 +#: 75a36f48b96b43a2a3278004de9bc095 +#: 46947113934a484d84a8c0b4d3abfd67 +#: e0cac8488e814ef79eccd2ca9fee6a4e +#: b04e9dc251094c778db88155ea215375 +#: 35688219c738450da16f22e4bf5e1b0e +#: a97b50b75b2e4867a0885371dcbf0c47 +#: cfe930ea66384865b5c94fad1039c9b3 +#: 38411a48b02d428999e9c0ecf39097ae +#: 65b623a6ad5942158f94d51716ea4f68 +#: 6f14d3ecd2f343f7bb7a86e1056f87e5 +#: 405705423b8c4969886d86c777e52adc +#: 50fc89f313414c46b6335aad4bf3fc78 +#: 0b4c23f819784c50a367bf472e83e19a +#: 85193ed41f2c45d9bec43c5440c8998b +#: 4103bf3a0bd948ac915a3dc862db1707 +#: e61cee6d522d4dc9b50263441efc3fb8 +#: 7f2506517dd04771909228a339e4bb8a +#: b972767c3b914f1fae993ea71c383990 +#: 076e9a14a7cb4869bc733f4f815f7409 +#: 3104330f426d4ba0a7a4f8e576507bda +#: 935edb1bf3664a638d525ee3360e661b +#: 5371f0e5bce547aa9cb345feadc76268 +#: f9a5bac8e1f84eb3bdcdc3eed37a05bf +#: 3551794677bd4e0faedde647c17254b0 +#: 7745d6e113094aaaa59bdfe888ede175 +#: 993d30d9ef44402a924d3fb4da316850 +#: be4cd5337bee456d82447cb2fcccbf75 +#: cac7298e58c543a4a7b7d69c64aae9b9 +#: 19155a809d2640239017f8c6f6ea7fe9 +#: 58565d31eb584f19adf4453c2bb4d70e +#: 4805f6b6b9094f0bbdd87585f896c767 +#: 8b1852eb74824ec68c91e017ed22770a +#: 3eb411de2a8c4e2bbe586e5b48d65029 +#: eacd3f616b1f469196e0491da1d4b431 +#: 8bb29e05a38f4190a4b00564ebb3d79c +#: 771fe717f1154b579a7d5ef3e6ab3720 +#: dc76e0d892274a26912d334d7220eb87 +#: c624d338e6bc460bb5a99af85de4f828 +#: eaf333ba50994c07a5fa0aead5b10cee +#: 9243dfd637e849d8a1dabe569b5334e5 +#: 50af24225c2e4cf0bfffe779d56ffff9 +#: c6eebf932b584effaf9f32139d31f696 +#: f7a7c41589be49fc8a0136525dc7d958 +#: 4a0f59ab5dff4e67b68393959f27ba0a +#: 1a560df8f2bf41c287d4669fe6d842c2 +#: e600c4addad6414e8a3d44092f84c079 +#: d577e035e4cf49588e2434cec6a01950 +#: 57b74e711d274829a331b2c91101094a +#: be39d06134414f5fa0493fd119c14ec3 +#: 3576f5e183ae4d128964b04f506be524 +#: 35d5b1ca68b9451ea2d5338c0bf89610 +#: bd8de271dd054a5cb8b58562a7b07a10 +#: 508ad107a8b24a5b965973d6a4969589 +#: a6c72763ed764b0889c3826068f228fe +#: d374ce22e611442d9b7c9695d95c56de +#: 780241827c9e469086fd291367beb298 +#: f264b314e0bd493fb59da802bd524575 +#: a628f261c04f479a9bffd8a2190b8d32 +#: 99114acd409b49c5a50f9bca13e59cb0 +#: 3cf802e8d0c3457e8bb64178f325d09f +#: b7d0ea59be2d40e6a01bafbacb380bd2 +#: 9fdce159e4434082bc436e14895eb252 +#: a706c07598ff4c05ac8ec85154ecea28 +#: a7160a3085ff423faf6c518f0d7aa917 +#: 3b11be2003b24740b29d0e959bf35ab7 +#: 4b63467ab28241f681b852c39f67ce93 +#: 4671cd6a91a446feae6e84da1e36497f +#: b19ae9ab53a2455ba9fe18c7c668a068 +#: 962a0ebebc6e4ed48e1c786cc7bec127 +#: 5ecc7a88be644d8fb993c9195a7b2d3d +#: da3cec356f3f4d06839f0fba3c5198ed +#: 5b0b0da001d3430cac0f1ecacd02c1a4 +#: 1e9f76f34aaf4f14a273e1385da21cc4 +#: 72bf6c9ab0d043128b29fe2a019baa6d +#: 8c576c04a2b94b479a0e98a2e53366f3 +#: 19b665d0eaaf47b09cbe3a1453252bf7 +#: 4c924f2e3905476cb4a81e7dffac8562 +#: 85d22b0d5db94065aa1a3e6685457918 +#: cf5d52ce43a64714be49db95e94d12eb +#: 4153f08353b642c09c9fb6398e0347db +#: cb2e5d5f992442e38ce0c300719dd657 +#: a9c2b174cdd849549b6bb97f83ff655d +#: 5aaa15c912994807929a533854d7bde3 +#: f767e48b67884f8b861c1f6c160458cb +#: 8f9a00818649426b9c0e940dff35a743 +#: 067164e8806a45c593c960f157be39fc +#: e9923ff27e94416ea6a9a4db5e0c3ba1 +#: 89686148b0db4a0f9ea120462a7f62b3 +#: f392487a21e54ea48026c54e418297da +#: 5ae1c8eb5d0541f9a6d249e60a77bfb8 +#: ef45f0b350724be1ad6505507c5d53aa +#: 0840385a0f96456ea08ccfe65434de5f +#: 02275219364a4da3a54d7e8a87e4e781 +#: 8006c40a9f644363afd7ad387c7ab0b0 +#: 29b74d57a9e44248b3a138a4712d00cf +#: 854071b105764287a5b497cb62b7a185 +#: 10b9ae8ab476440a96d29c9774caaf9b +#: b739824e70ef4d71b829a6c7b6a0f393 +#: b8efad2028cf47908ea505fa09e84435 +#: 41f76503389248ec9f8a2fc321b05894 +#: e9265e7e6fce4011a0caae38e7234f05 +#: efaefc58e2dd488e81dbc7356260203e +#: 6d1053db3c8e4200bd97224f728d6f22 +#: 079fb1d5a1314d9b9ff8e2048d29cfc9 +#: cd3ab923974e4520bd0135e68bc883d4 +#: 48f6b06c4d4b4528b7eaf25a2bd818c6 +#: f23cf6ac9be042dbb7f0bbecb578259d +#: 977d255a45434383aa099d0cffd1a8f2 +#: 64f292e88cd944218dab88ddb5631d74 +#: cac2e462ac084b0495b4c29982e29362 +#: 3053aaf1ac3741b4856b320e0eb10835 +#: acffe64fedb04595a080e268f214806c +#: 7dd62a94edef4febb76f92b570aae24f +#: 4c8ce93f6dc64cbda079a4af7bf58071 +#: f1fa891fc4e74524918ccb5e6536df8a +#: 2ab9222a5d2b44b1bec49493e2c79687 +#: 939e41b2a6b84296b40186ae13c355f7 +#: 753f6e0412584f3f935b76505eb8c3fe +#: a67ee76b5e474c6193c7fa0b6b3078d5 +#: 6f71a6591e9f4343b3595a1da3d96002 +#: cc6078c54fa34b09864aeb874c619078 +#: f5701949bf1143ef9fa25f0b52c0d1a8 +#: 388fa2dc21ca4eed8072ae8a2573892d +#: 72e5e7c1c1aa40e593a157954dbef068 +#: e1b1353758414bd7a270346646b31233 +#: 83bf142fcd97456aa00f389c1c0123ef +#: c77e7cc25aaf423d939b79d144ebe3eb +#: 20179de13b7f4810bf81e7fc212fbf40 +#: 63b1d5c220b546cd967705c9d4cfcbed +#: d99609512c6440e48ab2bf162620fa19 +#: 6b21885cae864eb1a56e9f9a3dd2c770 +#: 33baf87e7a6749c5a3dbe8aeba0842b7 +#: 79352d534e8d46e591b724a1a6d0b6c1 +#: 366e2457608545929ed2d7fff7a8999e +#: 47275cd3c975433784895744425257e0 +#: 80364b3bcc5e4024b9851492c7297f41 +#: 86717628537c4894a49bab78981754e6 +#: 7e34611981ce45228a7d37c526953259 +#: ecf67a49ddf24294ab09c85fe4c29481 +#: 7348f2a634914de9a30a94513d016471 +#: 554cc569e0c241f3870a50dc4de7d2c8 +#: b01bf8374c2e4d85ac8623831f88a319 +#: d621855b8b3d4ab3872136a63bf3c110 +#: f6c6abb1067847118264d6db54989497 +#: 480319c6a5a6427485ebf3afcc2d8803 +#: 4dab8a49acc044bc96ec94e7afac3218 +#: 6818ce16b1274ce49acf2e2f3c212dfb +#: fe560c523fd44f668941d82e25892c3b +#: b9d1c2b689ae46d4ae8dc79931566a8f +#: 2787b8a2694e45d4a15233cdf0879f2d +#: c92b5bf62d5645dd9b43c36d917d900d +#: 58a35cb109fa4f35abc49337a1bb9fd0 +#: 4b5eff68de6e44c0b8ff82dd45d4ceda +#: ac913676668548fb91777006fdb5932d +#: fb532deebd384af8a142b783ad8d9473 +#: f84edac53d6a4a7e8176515b1f467984 +#: a3e47dc41a314fcf9b09c2b31d8237c0 +#: 97bd328151064003b2031179924ca5b9 +#: 54f6b244ded54b3c938a4a143b709bec +#: ffcc69d65a644697bc786417a8531918 +#: 5f0135fa9b0e4f1b987d79ea346d3553 +#: 6da3b50c48fb4199aa3f9956283b3abb +#: 04a7734c635a438abc8c4b12bf684cdc +#: 6ecb33ab2cee442ca054ac0abfe7311d +#: 5c648b7baa0c49efa4b8c7244830997e +#: f7444117fdf5486194e832e5b34f60e4 +#: 1acac47e72114cde81264d68058e3deb +#: 51df3292a922476b99efb2b04602aa38 +#: 6682b5cc70324bad9d0b0115d033188e +#: d676d9328eb24b62a20231277edd0853 +#: 1de871c288ba4455968868a44b9c5e7c +#: 7a6de388a20045f3953060c018b7bb67 +#: 39b4f683f3684b8cb1b34e32eea8ac7c +#: e107404ea2c94a5aaa45cbcc63c9130c +#: 7341876440bf47d2b192647ceb8ea7d2 +#: bb72445df2564b78b5412dd3dab80028 +#: 43e2084152c64a5fb74fe1c479b91bc2 +#: 986840e8778c40bf91c6791d5f91ac9d +#: 94fe0f67ae1443118bea623aa4ac5ae7 +#: 14de0fbc76df4577bd3f2d5c2a9acf40 +#: 155af5a51e114a6d8efd91d9e7a880da +#: 24e335c8ccce4904aa18f16df1c37ff0 +#: ae93341707b647f7ac229290218e5ebd +#: b27274004fd946e8927cd069a8203029 +#: b231382a7cee4ade984c741058bf5c4a +#: 7cff27b27b614df2b35aed09cf714488 +#: 7ac30d01162e4d81aa1b96d34880c825 +#: 244025e558484576bbca4401a2a99da2 +#: 0b9ed5f6541c44e08f4d83f4f4b1a82e +#: 761cd45def4d4b348206149029527bd6 +#: 5e9b2256d86e4f48b120a093d1d6cfcb +#: 7ad2c274c2314d50851773cd9d301468 +#: ce5e2225c6b846baba696ccf7dd963c6 +#: 415a0786609f463aa3166a091063650e +#: bc617b52f3444026809f269dfeaff184 +#: b0b507b81464423db9675e959c77c306 +#: 433f67cad30c49c38ae6939e2fce51b2 +#: c5c5ab292f0849bf8c3e54a49282b49e +#: 9d817eb2710844a3b7733509f5822b0a +#: 5bcd472b8c7f4a08931afb893428662b +#: 5ed37b0e61944ecbb3f7bb6417c21e5b +#: 7cbc838247884856a0d01983b388a77f +#: 6e06f31f1ca340789daec1c9f1a3d3a6 +#: 7c6b05aa460a4c91b6fed393d3c374d9 +#: 85d937a0152c463798d252dbb90099cc +#: 8d44808a3c3848fa87a4e503d95031d8 +#: 9140f150da5344cfb4247ec9e421d7a7 +#: c11b3ce12e314d84ad586545fe20ca71 +#: 4dc2e2bce707405ebc2cddd4d8a744d3 +#: 11d2a0797e1f43509a873af02a0e7500 +#: 87e6a87be0cc40f986984bc7ee587c9b +#: 6f560636ec574dd0b3373125031b94ed +#: f8ac0b2a7f1540cc8c8d4312bbfd6242 +#: c4e2da3a4ea74d82ac75d4ff6d65ff06 +#: 501e01fa036e491f87ee59856975272e +#: 78e960b05b6f460ca4e148d0b59efded +#: c9fabdb2315b487abfb348c35ed9aeb0 +#: 0543f30da3e5475c9bd5eb027436314e +#: 4e797633e8be4d1c9bcbf314bfcc1496 +#: e5876c8e03db4487bfabb0faa86106ee +#: 56bf30a3989f4630a7878d969ae74c60 +#: bead693c92674664a0589a7487b33bec +#: 648bebb6db544810a93a2977fe76cd17 +#: f32c17be6b6e42cbbcc690990b864b62 +#: 440f85a803964393857b04290988e1dc +#: 2e73b3fbe6374c54a25603c479a50d5b +#: 279e32d4f8f64905ab98e7e55a23fe32 +#: 00d1af14de6d4547ac426408cfb3330e +#: c036b2d5a57e4a3d89c4ac92c77e08bf +#: 8011afda364b4ad79ae0165dd6b60d40 +#: cfd49c3cd0eb4ffaabf93cf033b8e4a9 +#: 107311635ec64314a3f6b3f07939df7e +#: b9041e892bfe4d81bf08cc6fa3b4f5f3 +#: f7626b71b5c54fa19f8b259254501d30 +#: acf314e8952c4a8a8a7474b2d33ece72 +#: 7cd7f88ff5944a12b5b7aa3eda2ae4d4 +#: 233a8e94d76248a48eda88cf88a4d05b +#: e68a7e310de84ea7aaa3c14af8c44ce6 +#: 6354d411cd76479ba741c51605a50a05 +#: 6199a7d120494752849c70706003e2dc +#: 516483cb092544bba5e954e2b439171b +#: a6443acd2a444189891409a431584a5e +#: a6e394bd0b2940278096ec3f9e84d98c +#: dd3c7548f9c34e48813dbd837b35e01e +#: 36459d30c2384ff49f89076adef9f36f +#: 24267bb427144ff4baf597a674685a8e +#: 8de6a3a8de95442280739d486f027f35 +#: 7ac141053ac048a2b3002f061bfd7b12 +#: 1bf7c52d7a984682a4ed1dab47dae3ba +#: 97674d9115244ba6bd5f20022bf9e93b +#: 1d6c6e75dc194c538420d42f64dc8702 +#: d5c8ea805b224e0e93e2aaefc85d438b +#: 6f42d562ae7947699c87a27afae00ca2 +#: 02e782115d724b93b3b69f1e9a6688b5 +#: 2a2cc91fda1d48d08534cc7309d07c23 +#: d34acdb38aa844b5ae8c6df53906adcf +#: 2f99257d1690443a85cf9363f5870588 +#: 1f3650ed25ac42d496dc01050df15ee0 +#: caf7a908f6d848e68245af4b18ea4265 +#: eaef79d8728740dcb53b32e7ffbfea30 +#: 5d841b044f654f7783631d772bae4df6 +#: 0cc8fafe7c7f49268d9614aa7a86301f +#: 91debd36036e46f9b77acefae2738b2e +#: 830ebd1f68344f148930f2069382c8b5 +#: bb13e6e5bdb547bd82c0c287a982bb76 +#: f0223949c0214d64a8704f35856ac309 +#: df1171eeb2ba422aa6b15248e07aed82 +#: bd2c7b630c964a2d89214d352c8302bd +#: 8a3485efc8cd4d27a1673fc6ff541f3b +#: eff4f635df2249b8ac3258b7434f65ad +#: 590f7a354bcb439b9e91942d60c53dd1 +#: e04a0f83de294b3dac3106c8735d0adc +#: c3e6f90fa2da4fe091a0703f2c7392dd +#: 8802e85bb2df401c98a307b6dc24dc47 +#: f1e28172516344239e027cd3610a6f60 +#: 850b5a0b41ee4c73a36143dff6d998fe +#: 4b2ea5d8b0f841babb77a80ade19768e +#: 58772e51543a4708805d2d17521b0ecc +#: d7e27a9a905a43b7b67262bfb4d9fb2d +#: 86e5c31327eb46f5800e2d653e1ddba5 +#: 9c93458e0fbf47ca99f5ee283d5b11a3 +#: f7a59ea367454fd1a955017a971416d5 +#: 0e3fb1f425cb47c5937aa150b3a21ad5 +#: 67bb06095d2d45b7a32fe25ab6a458f4 +#: 4b13b387134e48e39e513c1436728742 +#: fb68324d2ffc43dfbc43cd98e836b6c2 +#: 443108aae58349f9be49edf03ef501bb +#: 17e97ca42e004c549efbb0e981a0d54b +#: 427422cc1bb345c28a811f4b719b2403 +#: 290284a1c0264ab3806654a1e91dd76d +#: 90eff85477a044f68a70c65aab1743a4 +#: b095e624367042d4a2d2b6bc5806d1f5 +#: 43123c8d25994c75993c93f9fb5f49d7 +#: 873023973808430e91badd3cd335bba8 +#: 632fdb8882914c1387b8baaeb97f1b9f +#: 3b783915891a43c69aa76f679cb37340 +#: 9d470e920e52484eba38a96d211d03ad +#: 1a3c744cf60b4d2788750181f2c499cf +#: f5417c777b814ea4b135237e45cca0b4 +#: 69077e235c4b48648c4af3bf0cbbf608 +#: 1a408d8b063c49b8bd338a341ef050e5 +#: 4474089e7668464e86a1d13f9a71b07c +#: b0ffb2af8196434ba10d3da5bcfbdf6d +#: 790f47cee60e462a8c20991b1453cbba +#: d445319158a8400694ebd1b47f35eb2a +#: 4bd30728f7f5493da6c36e2e991677bd +#: 0e5cf5f69b3d4fd0b80a6fcd3986794a +#: e6d5b8e358274476a43640a986cd2e64 +#: 8b065489037143419a6f2683591a2b62 +#: f98b94be6bce4f639958462ad15db12c +#: a67ead65dc0f4858af3ec984e1d23534 +#: f9c887424ee44da384caa41f559e5be5 +#: c9a3a9ae0d3b48f59ee9e1e46e6b5ce5 +#: 3389b3e123d745c3ac7c632bff3ffe6d +#: 09d39301057e46b1b1590e588384ff44 +#: 2918bf7ca71d46e69b0cf7413fc3f630 +#: 6d6f159cad9f4bd685f315acd04e5da4 +#: 4b0a82050c914c81a1f8f6b6eb6e8fd5 +#: 989792d8aac4401fafd5aaaffc4c3653 +#: 4ea9b0a56be64d56a8731edb63fe27e4 +#: d311868f14fd4c469e8c7df4b90169c4 +#: fda7862f86af49feb12145c6e506d55d +#: 4411a32d7a2a44f0af13a7626ad90eb4 +#: c8a81881b5764740b9563451aa2d2f24 +#: 8d9775295d6c4c7ea9bf835583629258 +#: 62acbe7451d6458a8bd6cc8fbf13012b +#: 65d1733e212e4418b6607e5ef2f80fee +#: d935df67434b4a9a870c167eac75c654 +#: 36bd7f13bfed49a7a25c12efec548218 +#: c571413efdb847d6b4044b97e8104130 +#: eddd8a5aa7f04cfe91ce9257a3d7ec51 +#: fcc77f920dbe48c8a5672766be39d87d +#: e58cabf983ae4684b52bfd2ab55bd9e4 +#: 401ac089ef9144898e11d305a0c4a50b +#: b22312cf33e140e3879e008705142dc9 +#: 2c08cbcdbb3340878fa5e287a5a67137 +#: 049f283aa43546eba29daeff002aaf63 +#: 585f2cad1c414bcaa02db15587c9c854 +#: 5862274a489c41b6af9d1d960b2d9369 +#: c0c2461465b74131b09736429b2f5848 +#: 7ca106c814f7494b8ba328c1b62d57dc +#: 13a09a40efe54878b1e364c4f7e17efa +#: e12e16a0283f4efd83e960d9831435bc +#: 92d254059f5d4678801f01866b29a939 +#: 0964b1eb7b38435aaedac34164a69afd +#: f576477fb653436a9578cfa1aeb52a09 +#: 71df62e844e34ad8b1eb364fbc83725e +#: be0a002f3c5b432abbe2e93109639540 +#: f02e58ced2254546907c830a57736555 +#: f55035f63d3b48f995ac8d837c82246a +#: e3d16140a74d4b339887b78fc94f0201 +#: b870f064d60140d2b3f7a1021a4b424f +#: 4e395c32442a457d8b2b49292be896d0 +#: 21532554f89b46d78cf0221d678f2324 +#: 19b62fc48239471e849e7c09a481bf52 +#: 66a5a44de16f4a3aacff7210afcea948 +#: 612a6cb02ac64bb19e9b4b7cee674461 +#: 63354eaec17d46a4b2ef69d4149c4590 +#: f5537fa7a94a4eba834ec2e69a29e37b +#: 1f1f261cda79429b954a1732ce43cb7b +#: 122db845024d4528a559c6360aa541c7 +#: 22d288e29df04d61b7bda00d243e6e21 +#: fc648382ddc240ceb53f5c5b8fd9d54d +#: 982cf2556ea1414da077847ff70e6519 +#: 0fa188e8ba7244e59742bb01db9545c4 +#: cdef3388996d4bdca9549c1c553477cb +#: 3139fa69a9464d8dbb3a72934ea63a73 +#: a400e10d06304be0901b8e267820d835 +#: 109ca8ea450d47fab05d60f110038d9c +#: 58ae0651cdb640359ddd9f92d25448d1 +#: 2cf7e2fb3a674605aacac3cabee20761 +#: 9b422c7ab7a34350aad1d479459f5aa4 +#: 6e3834ad23184fd89a460316a8286f2a +#: d2caa9373bcd4b1ab6feeb6ea673151d +#: 1fc7d046dc1e4131b1d2142565e443a6 +#: 333a444f4a834b1caa51a3f4173c9470 +#: 0694c8da8242405f87480d6d6035e6e5 +#: 74c33578515d4cab9e023d3ebbd37a38 +#: db4a06cbc1e7475ab0afd48dc25cbafd +#: 7b493a0cde2e4ea19c9c2a651dae8ad9 +#: 8f903359827e47489b6af3844cefe59e +#: e83a911e46a54fdc88d3bdadfe24dd47 +#: 79a20431a3e1490a9121fc2d8542b57f +#: 517ed8b5e8f143b6886206656326abd3 +#: 612477a9410043bda1629a351b4eb45a +#: f209c15d028a463dad5f705482288b19 +#: 26856f8aa6214ef995ee19c657e53b6e +#: 3359dd2532ff4143b5886c10cb50314a +#: cec2abace9914465997ce98e48d658e3 +#: 86aedb3b912040e5829f468fd342372e +#: 1cb2375a62964d2192b685d42fbbce60 +#: a4b02449263a49d1a8f9105639c543fb +#: e1908e62e9ee44d398ae093a11bb8d96 +#: 9d31feeff28b41cf80995ca91808b542 +#: b6ca61fb879842bea9a67045149f153b +#: e94b98518bd8406ab6ac0df1665e4909 +#: ba256a9de940469fb3664a37ff929c29 +#: b7cfb1511d704241a85962907362ff77 +#: 6d42276c22a945b28406f8e09ad56b0f +#: 88b635d0d40c4f37a563725261f1c623 +#: 8b71bcaed213483db5b159d0cb54ae1c +#: c5b5fd4b6bb34f67b42958b51102530d +msgid "type" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:69 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.can_send:4 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:56 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:86 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:82 +#: ../../../discord/components.py:docstring of discord.components.Button:35 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:70 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:45 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:51 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:57 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:69 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:65 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:81 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:166 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:33 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:33 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:33 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:39 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:71 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:84 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.can_send:4 +#: ../../../discord/member.py:docstring of discord.member.Member:62 +#: ../../../discord/member.py:docstring of discord.member.Member.mentioned_in:8 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:7 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:13 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:19 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:25 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:33 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:39 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:49 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:67 +#: ../../../discord/message.py:docstring of discord.message.Attachment:90 +#: ../../../discord/message.py:docstring of discord.message.Message:23 +#: ../../../discord/message.py:docstring of discord.message.Message:85 +#: ../../../discord/message.py:docstring of discord.message.Message:138 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:39 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:65 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:15 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:33 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:39 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:45 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:38 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:56 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:33 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:42 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:48 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:60 +#: ../../../discord/reaction.py:docstring of discord.reaction.ReactionCountDetails:13 +#: ../../../discord/role.py:docstring of discord.role.Role:59 +#: ../../../discord/role.py:docstring of discord.role.Role:81 +#: ../../../discord/role.py:docstring of discord.role.Role:87 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:53 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:47 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.can_send:4 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:95 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:101 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:108 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.can_send:4 +#: ../../../discord/user.py:docstring of discord.user.BaseUser.mentioned_in:8 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:55 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:63 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:69 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:81 +#: ../../../discord/user.py:docstring of discord.user.User:55 +#: ../../../discord/user.py:docstring of discord.user.User:61 +#: ../../../discord/widget.py:docstring of discord.user.BaseUser.mentioned_in:8 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:43 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: df0105c172b14940b0ce5d8fb044beee +#: 086298bde6d3427996bb79be49ab9aec +#: 9c07a12592d74668bddd9fa2ad17b925 +#: 1073ecfb4a744835bbfaeda3378c9886 +#: 11c2f9ea736642a693a9574bc0b22721 +#: ef47610b7fd44937a5ef4143f95f5fc0 +#: 200ce5183d284487b83477bba2b7c24f +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 975fd0fa469044a8a9710bc449dee9bc +#: 6afc41742da04070adb35652a57c9da3 +#: 7e4e194346944a07bc961f3e35ff72bd +#: 3033e6f13ed54783b7677f34108bf609 +#: c553482c64d74d31a199dacf7d704993 +#: 60abce50c46249439a7420028aa5b862 +#: 12dadc55d4ba4391961b514f8a8f42cb +#: 4003d244e62a42b7ab7815a5cfe25417 +#: ae2156faa6f64461abb53909ccabe94a +#: 5fa3865947e547d3861918f336602cc1 +#: 789166acd786435a96c38745c7816111 +#: 105352a161e5411ba6f61e2fc15386f2 +#: 94f78f94eef14c5eab8e517a73ffd096 +#: e0e606cdfb3344ea9a2910bb9d83e6de +#: ffb3dc1bff1343b9a69bd7bd94289cef +#: 21d89e71e8b84b7ea2afdb3b82c26c07 +#: 0fc3be486f3b423da7bc607b592c9e7c +#: 24c8e520b8a64e1b985739e53ed463bc +#: afe0c59747ee4a43b812d58594001451 +#: 672f9b3780724032b26e6627e52d3591 +#: f89aa2fc767048f9b9414df39ccb147b +#: aed4fc542c3c49dd9f4ffe40e456a225 +#: 8dd5694c8ba7416c96e14265ef887819 +#: f74864bbde0a4684b2d3315e8262f737 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: e301aeec112d44a2ab6883f49ab8f6d4 +#: aeeac11dbbdb42919dae044f379e46c2 +#: d97898770b1b416e955584e0fe320257 +#: 846ce9392b164fac9da50582faed4886 +#: 98128d20579d48f4baac9f4e29e2fe07 +#: 285640291e424cc5beb45388126d03a9 +#: af42108747654f3a9ed2e71c95e92708 +#: a217ce47947e4c37b3c9501ecaf50d91 +#: b6129ec14c8e4972b82fb5b7215f9ca0 +#: 101c382e33954a43844ddeba08c7b9bb +#: 11049d2fd8dc4987bbe1753a2e39d8e1 +#: 0bbd0b6a880345c7a6d0b958670cdaf7 +#: 57176d6ea09e48d79a9bcd288cc8db0a +#: 820f32f2b28f48309882a4ddc206d3ec +#: 346e0938b2714ee58acfbc607b5e9eb5 +#: 16ba345c02d34f5ca2782f8d3fd30aee +#: 5f5f9b42d1fb428a97f0a44053efcd63 +#: 8a849f3c23c0409e92cc8046599e0f59 +#: cc4c973f43a541269d2e865833b19093 +#: 826e044b51884a66ba120555e53a550f +#: bcd105bfb0324cc18e77b7377365b135 +#: 37d9c20f689c43fbb9a319f5271bf7b9 +#: 36eb8143a43d4e0f93cd1bcfa7c16d37 +#: 48ae51d9b5914f0c8673f4649ba13f5e +#: 7d3a3c746e034e94b50b10be153a98bb +#: 4be2a0d65ecc4b97bcd37688187ebdde +#: e80e95a2a17644a983d2d61fdcccf06f +#: b0070678c8304197a0d0317aef6a0494 +#: 381f85eb765245ebb2b858561b328953 +#: 780aeb050a6341fbaf42f72618884275 +#: 1541c2e6fcb44426a4b615dbf87b08ca +#: 4dabfe5fb57c41bc9d28624383f1d1cf +#: 16aeae18689646bda32f4b69fe783171 +#: dd52241f9d264b2fb4e558614eb60c3e +#: 2ca8a910e0054d14a798e898d47e7680 +#: 2a54db2e87f341eab02c42fb26054365 +#: d4f642d0f63a44cd896a168d59350220 +#: 7daa820cdfcd47529bfa39255bc6f99b +#: 557ccaba5ef5424799716c92fd3e2362 +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:11 +#: 4e168944987344bba51eddacf973f7d4 +msgid "Indicates if the user is currently muted by the guild." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:17 +#: 9875674d947d4f31b35f6d3a57996149 +msgid "Indicates if the user is currently muted by their own accord." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:23 +#: 089ad680a6c643b9935e870ac1bc364d +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:29 +#: 6c6d13d9551e4ff7a6b6d531c1d196ca +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:37 +#: 5cc560cd8bcf4b94823207cc822ad75c +msgid "Indicates if the user is currently broadcasting video." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:43 +#: 06d90bf0834b4f71b75e975612ee0644 +msgid "Indicates if the user is suppressed from speaking." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:45 +#: 400787b0d95d4aed99a0a29fb34c711a +msgid "Only applies to stage channels." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:53 +#: c6f155a526404a928c64818aa2e3e40f +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:57 +#: 3cb3767a09b54e99b0f689f6dfcbd40e +msgid "Only applicable to stage channels." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:125 +#: ../../../discord/member.py:docstring of discord.member.Member:30 +#: ../../../discord/member.py:docstring of discord.member.Member:69 +#: ../../../discord/member.py:docstring of discord.member.Member:77 +#: ../../../discord/member.py:docstring of discord.member.VoiceState:61 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:51 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:128 +#: bd59fe44ce914d0285c9bd326f4f62ad +#: 0dd0b8ab160843ff8798020ac2f60772 +#: 00a2d1f4ee7646e2a1ac708fdf07244c +#: 13e3f8d0115a4c0493256138a15e6e10 +#: 8c74350fd1114a20b0e2cf8f50c98f26 +#: 9515f1bc6e68471ba2f14db25d1098cc +#: 30a93102145042e9b64889333976a4cf +msgid "Optional[:class:`datetime.datetime`]" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:65 +#: 309697c5722a42ab82a6fba34345d73b +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:71 +#: 52c3b08b0e2648b88bccee6b6ca24e56 +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.VoiceState:74 +#: 035717ca83284d6f87bf02244eb995d9 +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:1 +#: 5ee3c89ba12a4b97861e1536c42d843d +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:4 +#: f0dc803cf2f841e9a63f0f53916c6748 +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:6 +#: 3b17bb6aee87426a8954360e77bfaf57 +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:14 +#: 9b71a5537ffc44ed88015a1b14bb8f7d +msgid "Checks if two partial messageables are equal." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:18 +#: 5b8ad364746c434d99276855f965a84f +msgid "Checks if two partial messageables are not equal." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:22 +#: 17317a1964e741529f60995ac19f5717 +msgid "Returns the partial messageable's hash." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:26 +#: fa864924ff55465baeeeb587848822fa +msgid "The channel ID associated with this partial messageable." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:32 +#: 024a39c377b74088a8e5d21409e13189 +msgid "The channel type associated with this partial messageable, if given." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable:34 +#: f69b9d38552d4efd9d7f1beb314b5d4b +msgid "Optional[:class:`ChannelType`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.can_send:1 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.can_send:1 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.can_send:1 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.can_send:1 +#: ee064c6766394f2fa4a28f0119527874 +#: 2047ab6ff868447b8b80f9ec9ec486df +#: a55a872065654b93971d8c6ecb32ddcf +#: b39b5fd40bf7447aa5641074627c4966 +#: 246c3009cd3b4e80a6daca8a1f938572 +#: a1e9aa4181f34c6fa8746b617725410b +#: 8a2b86c6b46b450794be7c6eaf910837 +#: b2c9807c6cae4e1f858081e6b725ebc8 +#: c4d0e511e4b447858982ded95c5f8220 +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.can_send:3 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.can_send:3 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.can_send:3 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.can_send:3 +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 8d0ce9e20b7c4622b2f7c96ac7e3f046 +#: 2e7906ec63d841a4878301bd49409146 +#: 16e75f62ebe7489b8e9cc047ba0dc0f4 +#: 3d7188dc2ee5459ea637258af758db6f +#: 95399227ddb148fbaa8e9e0fb0a5212c +#: 6827f351563c4ee79a36269abd226171 +#: 05a0f47c266d48269b09c8c6cc556376 +#: b128fab0174c4f5c8b6b25d6834a26c0 +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.can_send:6 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.can_send:6 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.can_send:6 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.can_send:6 +#: 0384c1134c80472eac35ba53c22d90ff +#: b05306d39e7845898a8908e0817898fb +#: f3e0f8c526b743fdb038573a85012d71 +#: c150c77e275b41789ed4090c215aa404 +#: e20ba8045b4248e2bba756370ec3ddca +#: 1e57798b16a54ad39c78dff9089f2f5e +#: 680c5e81319d4fb9bb62a856f1fb402c +#: 66829a2221634e7e80e34359f5acdab7 +#: f2e5677d1165417399fe321a0042b97c +msgid "An invalid type has been passed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:3 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:3 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:3 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:3 +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 5d3bd874ef084f87ab4ac6c6d08cb08a +#: 25b6541bc41841ccbf8b1649f85a1f9d +#: db7597ef68c642c5bf5b3342ad4bffd3 +#: bc9ebe0f08964ea186eefaf19482cdd9 +#: bce5ba4667a24d57894d1e5af111b8a3 +#: 4c70480bf3304cd79b4071995d9fd4ef +#: 8aef6fa1fd764ab8a2647cb0b33f3ee1 +#: 49b3d04438d642aab00b02cbaf83084a +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:6 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:6 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:6 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:6 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 800b0904653841ea8964dbb973b192ae +#: fdbcb5604d10415c86135acc54b67c0c +#: 1aa3485993be40cfae91c6dc1c6096d1 +#: 209c8568646f450781ece8a5ce8237ba +#: 10e59234422d496bb7438840ca7ad713 +#: ff0c6e8cb0f7499c832d12f6332ce6cb +#: 368b2a6bac3342f0b4f75c389b4056b0 +#: 3f92d0e8572940679e464a042730adfa +msgid "The message ID to look for." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:9 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:9 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:9 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:9 +#: c2f7f6b8b80e4041818f55005ce8b67a +#: 11df635629de48ef8f9d38590f9f8676 +#: e18b1b81cff840a99be2aaac63a6f05e +#: 8826760f5da4424a80d72f9e1726f924 +#: 55d7053f101d4ef68a49829fb2fa7dbb +#: 187ec8f7ef5848b0bf6e275c4c9cab14 +#: 26527a48aff141dd9cb3c580dfc29828 +#: 1c3b8aa58e3f46df8e6a6a89ca86f283 +#: 67df557ec5f148f0bfbad60c97193183 +msgid "The message asked for." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:10 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:100 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:10 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:100 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:10 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:100 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:10 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:100 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: eeb551cbf2bc4573a7518a774f0ab3e2 +#: 54db8105f8b44c2cb4f23b1d50d1686f +#: 6e0a7e5d3ecd440881fcaf5c610130f0 +#: e0e1920c1d0342bab09dc720dc295044 +#: 6b44204a0a054fe69e0a9598b424335d +#: 13016418500b4029bf9bbd5a6519d613 +#: 68933455aa16409da9d25be184c3aaba +#: a33936b4dd9e4a13b3abe08b240bc613 +#: 9e0462fe105345ce87386ef85014bd9e +#: 62d5672cc82b42158215a30bae77144a +#: e5cee23274634426be53f987066fa090 +#: f72fce8028a646e4880b8110613304d9 +#: ea994dcd832840c884aad27a0e037f92 +#: a344d66a57b94e4495f2512e6725c709 +#: d6078895533c4011b980c51677951d09 +#: 9c6a3580fe13405ca3d8164738a1f5f6 +#: 329a981af11a4b83aaeb6fcea837a992 +msgid ":class:`~discord.Message`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:12 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:12 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:12 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:12 +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 818359f01e9b4e949e0d69159449dd63 +#: 6f8b6217053e47479783af39a2aff1f6 +#: 5b8b65bc345e467d871012e68d1513a8 +#: 3d55261def574dfbb79db20ad3620e98 +#: 0d15ebcd6c83481882be811f4e91339a +#: 0c15cad437dd4a7ea54572020b94da91 +#: c0d769e55cdb41a8ab72ba6eda10d601 +#: f1d79d6620ad4a918bd3f44e709c4564 +msgid "The specified message was not found." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:13 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:13 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:13 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:13 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 87b677120b8244279256a5f0d5ba6cb3 +#: 013831d1e99644938c6dd757927e6079 +#: d5ae072964fd475b97465f657fce92e9 +#: b1832e357529435b9a0a6bffafa5ea45 +#: be9fc31db9574435a2ecb99db0542a6d +#: 18ceef70544c419a8dfcbbf6009a6d2b +#: 272e62c8e3914c219bb2d4e66dc44e26 +#: 0ec9bffff7a34394a42f76da7fd51e6c +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.fetch_message:14 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.fetch_message:14 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.fetch_message:14 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.fetch_message:14 +#: 1e046de530f5431fa8a01caec3544a8a +#: a04b7c15a11f4d91b3ef716d191fc2e5 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +#: 0103b38a8ab14895b2bf54af5526958a +#: 51daaa3f7e3b4a3a837c846984d18653 +#: 3be79f84ab704518b5c08d1e7cd55c12 +#: 94ab4151c60c4872be08b6b23c645539 +#: 5ae061b87b974b3dbabaa08e30bc1bee +#: 100c5629bd274d76bbc860fac9921bb2 +msgid "Retrieving the message failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:1 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:1 +#: a2b5b9f3f9864954a6c95353f0840647 +#: d62bbb3b47734dc5a98c28915226ceb7 +#: 34a4d40c3a264dc996c94056170a151d +#: bf0e302b8e2f4c64a2b6c0fd7ea1db39 +#: b2d89e6ec1d0471d8fa46d64bd9ed039 +#: 5ee27b3f17a346788a292a06d5a44d5f +#: 0f0062bd3feb40ec87d32401965f96b0 +#: 8f28a0ff99db478fa7120f5a0a3990c5 +#: c62cbcd164a0463ca36429c59151814d +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:3 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:3 +#: 1e013f815e324252ba499008afce7129 +#: eeab1364847b4490bc5bf659ea280f89 +#: d846b20a22f54d4bbaf1433acb092177 +#: 152cd29af09f4925b4c67dab932b15f2 +#: 28fdad1faa564f94882f3ef991a68e66 +#: b48d48dfb6f84a77988b8bb81d6fe9c0 +#: 6d622e68d96142dfbcaa420a8ed10486 +#: 3566c3b357eb4cba80475aafe69c10fd +#: 086c32c2282c4a99ae38d3da848679ee +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:6 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:6 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 2325531f3a304ef38fa74dc2ae0ffc0d +#: cedec68e61774ccd965a29d9620bb85b +#: 9848683a654d4deb8aca5cbdd8dc247b +#: c679137c68fd40fb94a12e1def852955 +#: f82fa26432ee4ad4a5c04ad46c38a5dd +#: 7783b2cc63de46079769923f51b0dfa3 +#: caeaaea67a244508bb7ee0a62a9d818e +#: b967c4ed083b4850a7e4a6e8f13cf785 +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:11 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:11 +#: ad959063203140e2a8fec35d19f3b2c1 +#: d447181fcf274a4f8318c716bd49fd73 +#: b18b7dbe82754883974c8fb7505d4715 +#: 349d1a7389624c319bbf14723c5f2201 +#: 241e04dcb7fb4784a5e22260c52580a6 +#: 54bf0bb639fa42aab942369c4914c45e +#: 25df7461dbc14490bec7ef091fc7b963 +#: 9ce3b8f124e14184989d168358992198 +#: 9fd5e782b9d249adb849ebfef86a795e +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:16 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:16 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: f56ba8bbb92847e0817c7e5cf592bfae +#: ad29354d07e7456d9ac05382a07917a3 +#: 0aca32bd50ca4c43978053483f867b07 +#: e88fa1290c0a4d3ab9fdf48f78d4f06f +#: 1c58791675f0490490861268b1edfe51 +#: d05505467b474b03bafc7d85c4eb41c5 +#: 81c06f24eae04c0684745eb235b8ebca +#: 2989863e9c0e4b1b95969f82fa64bb98 +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:21 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:21 +#: da844572f0ee4e3db1ab88bc0ae53ace +#: 94944dd5859741c495b946a77434e4b3 +#: ddf1d1beab504636ab1745bb2a90b04f +#: be0d11e162994e36a021e6fb2fa3bda1 +#: c7d2322d854f492cadd4870bd9e3ea65 +#: 1d17aebffa8840548b0a2ca7ae2e2683 +#: 31cf78a371b8498681568e7b5b54c89c +#: 0cc591b8a10c4f56889ba43a34b87024 +#: 339a47dd79c2474d9c271525c02237f3 +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:28 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:28 +#: 2158e52532114f00b4b65cd0423df2af +#: 2bf2f78c9c8f4a729d8f42921b489c38 +#: 5755a7ad7f454b7cac7a362f9721ba8b +#: ec0175fc32924104a377e0afd67b9cc4 +#: c929c39cbc3c424992e96591ac050d82 +#: 58422f9d234f42cd88ddfd4c3f366586 +#: afd5140c05f0426c8b986c0509e4dc50 +#: b5c39e31dacb4c9484e2bfd4338299da +#: cfd3c7a50a594a85ae05e628cd5e5d2f +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:0 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:0 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:0 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:0 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:0 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:0 +#: a56a4e26f11646db9973fb9a82041c86 +#: c7f12b2d61ff4ddeac3d4e82b620a453 +#: 27a00c698a184861a3e79a26f6bebd2e +#: 978ec7ef1794400e84a2dba4651a187b +#: 54460f7075c6462b90bb377d32ddffe4 +#: 2227a40f1a6346e1a0dbe7f890162ed3 +#: 004531da24fb489bb78e99a15ce76ef7 +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 4af656b5bdf744d38a53d294cf463d33 +#: ac032c4eec3a4115901d9e6fb2a6b87b +#: af7a1e8a24014bf591266de1566fc827 +#: be562de6eaab4b04b878e9318e72cf90 +#: 64e471461cb24684b7a0ff2c4795cded +#: 59388c7de0c34bc1bfbf840d3bf7f12a +#: 840b90c0e06749c28003a65cd62d554a +#: f1883a078bc741e8be9b854360c460b9 +#: 0e22cfa8dbef49a4930a462c802de3bb +#: 481831d7ec69465483cfb0a6f05f7720 +#: ec8bbcd34ee044ecb19ebcbdb59ce6b0 +msgid "Yields" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:32 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:32 +#: a02393114810463a8e9d4c9c7191362e +#: 4d8cd2cb40d64e9d8476dc4f2f34ff2e +#: 1362e64547b04b19aa2381aeab3e61a4 +#: fd00f80285794951810c6b3af73b597c +#: f2e3152b7111402199147bf53a4bb0d9 +#: c78a30fecec5474288aedf6359657271 +#: e9bbc121ac824f55924f1957b1a85c9b +#: ca039f34fd7d431e8886602bfb93e1ca +#: 3fd026acbcbc4249b12a20036e0ca783 +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:34 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:34 +#: aabc54e6131b4d4a81f580c6c926badb +#: 1a061777efb3481fada5ffff633a266f +#: 08bc04473e1c44da9381c5b7866fb287 +#: be94c1519b8948ecaeb3b7a89f3c5d2f +#: 2c4805dcd84845bca46e7b5880881b26 +#: cd9554f07f9c4bb6b4ea6175eb0f1076 +#: f7679c3c5fb24b3c8526b9ef43278d91 +#: 9f64389254134304ae372837c603e205 +#: d9f143edfbb64d159c1a0eff4f26027a +msgid "You do not have permissions to get channel message history." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:35 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:35 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: 55b54bcf5eca44b1a17570404a0fe8b5 +#: f77840d45e1943359bf5aa4d7cbafd58 +#: cd70c1b57dd94db39fa5dc7500ee26e6 +#: f86d13d8a5c64f4c93fe30b627861795 +#: 3b4192b2d4ef432f9511005a23b7b712 +#: 952dbdf2f8634f9fb2b40d647b4dadd8 +#: fdd211d16d904f93b1746fa701abe8e1 +#: 40477dcf95ec4991b664e057f22d1961 +msgid "The request to get message history failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:36 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:36 +#: 71713b3b7da14660975590d847fa9ea1 +#: 3e3b6a5f5b8c4f55ae00cb8003b37981 +#: ed437085f8744eecbf24ae254b3e43af +#: 32622369e67b410fa3799a52e0a21e2a +#: 0d84702faeaf4729886d39a77541ad74 +#: 7e6a099cfe0f4296a1ff6b7f7dc07f70 +#: 6e0be208491c4f948fa16bbdfc269c2c +#: a9ee7331a54149adb2c49361d23eefeb +#: 7ef95d4d8c464f3fa36c430688797e2f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:39 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:25 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:39 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:48 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:48 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:48 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:35 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:35 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:63 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:56 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:29 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:27 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:38 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:48 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: ad7ad919296e43aa91303b7877fb6571 +#: 25bd697769214744832fa1612bc8518a +#: ed1cdd19826443bcafb0987ebb091e42 +#: 7b71c6405b814333af85829dd3f29d30 +#: 48f6a2450ed6433da0a303deb56d0dd7 +#: b5677759b9d043b6805db7ae8a3ad143 +#: 5bbda7c77f3240319cda935ecec72876 +#: bc6b48a124404bd1892f9edada1a6b58 +#: 2fef615a0839480792929e3f58cfc4a5 +#: a5a93c1e708f454aa8f6aef869159802 +#: 5e4be06ddc2c4540af2935e4f5777a99 +#: 2a97a456e0b54865a9c68572acb2dd1f +#: 930ea2d18de64c7980cd601cf46c0493 +#: a2ded9737e984ac18f95309afcde5044 +#: f9b2be64ea884c89a290a3ae559f4f1d +#: ea2b4db3930e47ba8c6c43962b0e70c1 +#: 411e98ddce5449ed8fc128355097a82a +#: 4e9ae0a13c054d3e97c16914f721d868 +#: d21d0455f49548e4ab9f38279c3882c2 +#: 86efdefba9284c40b3328c745e5a4af5 +#: 9b41b55ad93f4925a9433d71850fae96 +#: 89e56c7da1874583b8633c84c0a94c35 +#: 0ef651d4e6b845939f625a20b0454372 +#: 3258d8f7a9a142189fb2270e8b7d3452 +#: 693045da44f54453adc1f294ba0734d6 +msgid "Examples" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:40 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:40 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:36 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:30 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:28 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:39 +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: f95b2fa403dc4f92a794b30158d2f431 +#: 745ca57186c14e1785a2e80ce870df80 +#: 01e7cb99a36b47abbce9830768f0aaa7 +#: 7a9234e954ec4317a5a562863b521268 +#: edbc71da771842d3aea9af593db2f036 +#: 1047b54d946147fe88b7aab8519d2b67 +#: b324819d6792467ab6bb2c3b5ab086ca +#: bb192738974245c6be8c03c15e71a07a +#: 10621c54e7b64adca079f2f9d709bb1d +#: ffc2e8452cf24b2abe0e09d8f1eabec2 +#: cba408fe885144a78a57c7c96f03c945 +#: a9379789c1c245a194fea66d5855b219 +msgid "Usage ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:47 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:47 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:34 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:44 +#: 154df22c3326437ebd9a4d0421852b9e +#: ab788cd1146c42759b597d948a21f602 +#: 976781fce2904a7ea929a7f179bad61a +#: d3f3a3b667f54db189761cb1f7a9880c +#: f47a358f820541ee9d0f514731a83fa2 +#: b2f96ae667bc40d196dc2b952d0acc59 +#: e6a54526adfe40889ad339222af92ff3 +#: f9016ff5628146bf938cc3a2f76a5eec +#: c8ad6764977a4cc79d76816925a2d56b +#: 801a707056d547cb93b52a82bc721431 +#: 482a410da467471b9ef9fdff0fb64c05 +msgid "Flattening into a list: ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:52 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.history:52 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:16 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:10 +#: ../../../discord/member.py:docstring of discord.member.Member.edit:35 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: f55d483d8f7243539066e1a0a2e89189 +#: ace68b84a7ee43cbb3d166231f224751 +#: eac891cd3dbd47dc9b8fe4be3f905b5b +#: bd8f03a7a627458e993b3312ffe4d046 +#: 37e91157e4714b1783acf697e1d5b979 +#: fe86eb699d8e45b9a52189679ba88b8e +#: 7302f5ae9a9845589bb02499ff22fa4a +#: 7109458e918b4477bb3d6be48b0b63db +#: f323608fd6414034b734e833668a0c43 +#: 0c55a74be2fd4693839e0ac06f70dcaf +#: ca59bf84e2ac4312b314a5695d280c68 +msgid "All parameters are optional." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.pins:3 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.pins:3 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.pins:3 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.pins:3 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 8ca3f84c6e354ac5a6abcc0bf696e629 +#: dc000ded9dd346c096a38a8956dfdc6a +#: 271ee5c7a93e46e3b74f8e21a1efcaed +#: fbafe5426ae746a5954dd2fccd8fa36a +#: acf09cc74f964d0e94ae9b612e79deb1 +#: 4a8f0853a36d415eb72a1e84078e5183 +#: de3d0d3f3cb34f0083f436d47659cc42 +#: 72df2d658ac846edbd297d8a0505b931 +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.pins:7 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.pins:7 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.pins:7 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.pins:7 +#: 5219c84db278497aafcba6d6e944b9fc +#: 816eb61199e34968bfdbee4f24a84ba5 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +#: 528df2979f7e4bba9f4ec08cafc40751 +#: cd7d6edf05214f8baf4e92733f245830 +#: de612bab675d4491a49e1dc9d2c4e924 +#: 318e9b8e75834a9e9c69c89fcbdb7ede +#: 15dd9e2df8ec49de806b86f7287a1a0d +#: 8c1bb03992584cd2a01c77f7ea0e2ac7 +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.pins:11 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.pins:11 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.pins:11 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.pins:11 +#: 549042b4685847aba193e422e7789a14 +#: da415a879e4147c4a0af1d630cc81346 +#: e283aaccd4144d6e95f83432985ac90c +#: c108db386f8c447c91f5cacfe34da915 +#: 2bfc3e2e06264eb3a50747f52e03bca5 +#: a7d57236b0314a7e95fa423bf7cf9b65 +#: bdb176707a2f4a539de69106aa45ef55 +#: 4afe6507d11947faaf5175b45c57b961 +#: e8c3dc32ccdf4ff68e67be1d9002e585 +msgid "The messages that are currently pinned." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.pins:12 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.pins:12 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.pins:12 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.pins:12 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 64745f109e7948b0a14d1d21ddb9a3ec +#: 1b6e9a8893454a5db4741c00c3bc8031 +#: 58fb0d2feac44b85916b29e9ef5661f8 +#: f97a9bbbcae041ce9c6936224fc8f868 +#: 05eed81d0b534f8a9c72ddc07d618a5e +#: f5e1277a26cc455fbaec18dee1cdf35a +#: 956417ef64e845dab666a3b182a0a988 +#: b322dae6c7c249e485c77ac50411516a +msgid "List[:class:`~discord.Message`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.pins:14 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.pins:14 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.pins:14 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.pins:14 +#: 2bc50ccd657f46209917f5d9f4099650 +#: b2f62ff86c1d4e9eaf9d1ea62937f171 +#: 5f422bc795f7480fa14af883be52f572 +#: ef58bc3755f0411b9a5affebc8637d60 +#: c56462629a9149ecbbae16e54737d31e +#: 66e876e4d4c64640a5aef20c27acb343 +#: 9dd7bb1a84e44419bdb4e03a89a4fd45 +#: e3e9d3f513214787b773a469b7c0ed84 +#: 4058e210afc54e3a814234354043f213 +msgid "Retrieving the pinned messages failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:3 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:3 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:3 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:3 +#: 2a04455df66145088795dfb431c2b0e9 +#: 66d2246603944b76b2b9c3683d1e1363 +#: ed69aa77f03b4955bbe3d5671c0e8088 +#: aadb9c10abcf442f8ef7bd45a91d26bc +#: 3529092cf6a740fa815af8582563cb98 +#: 773a425229874498964292bc3fbc918d +#: 0e624e344cce4d40b648605c55319355 +#: 9097351087684a1f905cfb3a01f9b4b2 +#: 843b0ba653a6436aa31a8f8737fdacf9 +msgid "Sends a message to the destination with the content given." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:5 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:5 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:5 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:5 +#: d514a06a45d546b5af908df5d43dc2cb +#: 33cd3f176f8f4a66aa1bb1de515d839a +#: bb15699719b54825b8d487d07891ab85 +#: 946d4e96584d4c16a1b92029b9de4138 +#: e3b49148c36b410488e2ab1dd2b07df0 +#: b70fc5ef0eaa4a809a2a00eb4589ef19 +#: e305dcf9257d401b8093f61ebc9da9a2 +#: 2bf6a11021d743dea3823e0917bedf6e +#: 1c5f4bd5f9914b9496784ee236fda06b +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:9 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:9 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:9 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:9 +#: 70aab3326d8f44e7bacd069c736a0420 +#: ac929a3b993642c4959eb60a184fa042 +#: 724dcfafc4784a6e9190169d5b4ff6fc +#: 8b60df4727a04416825c176ea34531e4 +#: 0d1984a02f364566a2f35203348925d3 +#: c94a19136f8f45dab0d02802bc0e580a +#: ec96e682cfc1426382fd742db0564bdd +#: 930cf75306ed47439405eea432a507c5 +#: 9edba96332624b328f0a4b752c97c349 +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:14 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:14 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:14 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:14 +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 71fcdcc413ae47cb8f3aee3a55f10402 +#: 12384d2719ae45da97444ff82dc4f2d6 +#: 411a04f0a2d74f7594b1ab8689120ebb +#: e287d7d6c6894487aac6990a31a6f51f +#: 3a95dfcbecbe4f1994be99417133a0d4 +#: 6a56e834e4c34148863cd306b667dc9a +#: 9cd87cfe6fa645e0875ddb9c5323f0ec +#: 1973f25ab01744c49a17a7e2124f1af7 +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:20 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:14 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:6 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:20 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:20 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:20 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: 1f03d90af71148a9a80d108cb0925c4f +#: 67ccce517035472ea66a0b51302a98cb +#: 5e3ce10288574749949b4155e13e114a +#: 4109979a97ff4c99b5726de19c5e5970 +#: 24c685c215e44c558cc6db8c57f160ba +#: 123dc3df23e443719ee5e0acea73df7d +#: f72cde4197b24dcbac2dbb311c4aada3 +#: ebe517411d0f4674b0f6b487be1bf2df +#: 6f44dabca5984889ba1725f4fcb785bc +#: 395d7c7433254cab9848f006feaf62eb +msgid "The content of the message to send." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:23 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:17 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:23 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:23 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:23 +#: 6af57bec404e422082a79e523a309932 +#: af87dc0d04b748c4a8a24c800c8496bf +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 083102ec75524d4a8ceb0b70e9be4a70 +#: 96b22467dd724b9a85b0147476346dad +#: 9bb742c93c394f4fa0869814ff9bb09f +#: 0f4c8100da804c648cd5211cf4f541df +#: f1f03be84f61456bba378c0d286ee1c0 +#: 9b92708ab36f435981d8a989e2c48150 +#: a5820bb3b8774bbca97c43264696e1c8 +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:26 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:17 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:26 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:26 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:26 +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 8ee729028d6946f9aa0cc6b36c0941c6 +#: 270d2242a6ec45928378eb596ae18294 +#: 17a5336fb0e949d880745df695dfa0fd +#: 7dc360566d8544a1a62164177df55701 +#: 4e4ee243f8bb40f88fdddb9c4d9cab22 +#: 8cdc3aac07844e67828c2b0d6bcf5736 +#: 829c6e83b6f54fbf8dd1f3ca5f3cc4b0 +#: 9d6db3798852454393b0b9edc4bf55dd +#: 75ada7b13918460099e6091eb28876dd +msgid "The rich embed for the content." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:29 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:23 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:36 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:29 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:29 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:29 +#: 06f3de9c7238498a8af9d93d7325365a +#: 8cb56dd64e2c4c6199d7efaee33d3c2f +#: e16b27219fda4529824444922c14f332 +#: e98fc299b15144528c7233cb906a5e1a +#: 59a42f3fa2bd4ac98d5b4f5c67a88ebc +#: 42d6e5e09e2e40b292d370f853cd97ac +#: e08a7f6785e74ffbbc0710e8f12ff1dd +#: f139cbde9a034838864b0d080b6708dc +#: 8f48b0ebcc3c480e9ca6ab1006e42f53 +#: 2f8285100bbc432c906d5cb7bc98a478 +#: c39e939c749f40e1b8e173478371a5fa +msgid "The file to upload." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:32 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:26 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:39 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:32 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:32 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:32 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 71a4376c8faa43328c788c7021c3cf72 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: e1df7a2d46f846ca86a58f8c80850bde +#: 4e102a0f26ac44d79efdf5f63039b97f +#: 511ec1b845ec4805981aad7833550f89 +#: b19d3a778f8e433fa788146b907a7170 +#: 9d21abaa1acf46b09d83274f519333a5 +#: 2cd8e34cb4ba4126b73aad91c6a55857 +#: ab461327271e40b493128cfa0405e8cb +#: 46b1c7d636614b1990e544a6571ec91f +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:35 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:35 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:35 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:35 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:35 +#: 55c2f9866dc74139b0feab43272e038d +#: b70a45a4cce344acb40ad3072b10fb24 +#: 88a081070fd044f1962c54e034ac21e6 +#: d0bb7f0212da48879fc3a9a5d2a1c171 +#: 3e214bdf05a64e2e8bea335383d5fc31 +#: dc5a9313f72c461485d10dedf9404e75 +#: c6699432a12342a28223ea885ff782d5 +#: 84cf39a47c244a9d8ae80decffd7d90b +#: 6a5202251a034f05b4fd565fb9fffa08 +#: e0d4bbe7a35249a2a612d1bb04c13a02 +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:39 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:39 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:39 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:39 +#: 0682ef24bd354948b962042a67084324 +#: 0f48f9d6b3e741e88aa2c3bc7d806b59 +#: 926fcea09e55478190f384b73306866a +#: 5304b5ee2e0a400ba6c1bf621773d8e1 +#: b9696d7916314d2d8f98a24bde86409a +#: dc82229f6da14737b0db6afe97ce9811 +#: 99fa7e1db7f645fea6a8a8dea5b71f21 +#: 01b0b22e17d443569f43dc8d65dc1326 +#: 0e52558693f944929cf1ad132bbe0faa +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:39 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:39 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:39 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:39 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: d3f5fee321ed4c12b0d13ef20bc64ede +#: 33fb702867244946add0e91965debb6d +#: acf0240e02af45248e5be402370b6e34 +#: 85e789c8bbf743cc92135731a7e9a421 +#: 082a0dc70ba14223adc996eba11b7204 +#: 558c7329d9284fe5b4bb7d2756b7171a +#: 1dfb848011594673a0e35f838ae226aa +#: f6a954ce003b45e68c1f3ba53248935d +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:44 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:44 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:44 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:44 +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 4e5d6a26919f4ecbbf31c7688e4a63ed +#: a316e7fd64e540af960514409d0e2f77 +#: 62c237c5cf9749c8b36ce23712a54ce8 +#: 0cbe799376cc45f99cade157e31f6a40 +#: d9296ac0eba342b79d0c4cf4df3286c0 +#: c1905bfc7fd34b47a5e6111ac827b35c +#: 68d21f5828c94bee8c1f9685e1317ced +#: e9e168d1e1a644178cfb5c2f41bb8cb4 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:49 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:49 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:46 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:49 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:49 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: 7837a952a01b4658b8eaca483bdf5339 +#: 14f1d3c69b914877a492f43e66ec40b1 +#: 1d43d14e53314fd98fb480f4c227d8c2 +#: 2e8c97aeb3ae4e63a2934fd37b747308 +#: 4dad5d4718d14ad6b0eda0f8f36b9e18 +#: ff875b8fac52400a98b47c29e139f21d +#: e3e12890ca424f388f4949bdb09a3a19 +#: 8a0d94cb1e204c38bfef2eaa5b3cf95c +#: e47cb5cca1364f75b66996fab1a8b1ef +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:49 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:39 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:40 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:49 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:46 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:49 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:49 +#: 76e68b02a3534b59bb633ccfab46cc5b +#: f47f15229801436fa9101633e7c271e3 +#: 1ff05d97ab3c410cbfab12ff72fc439a +#: d8b69682b7294cac8417eaa4662fb1fb +#: 454779670a6646069c2703fcf405a805 +#: de3c63d612f242c3a301593c0a8dbfe9 +#: 9f4a0350754b4e808936c9b7e21a2182 +#: fc1e8f46ca5f40d981587a5fd1ef1920 +#: bc5269a499fd471c8ce02636d21234ec +#: 2e939a6bf82b4a70adab5a88d54fea2e +#: a68d9b2bd36d463e80f239045d86efc7 +#: 01d678c754d94f9b84893b89da691c03 +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:59 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:59 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:59 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:59 +#: 2aa113aa350843c58a84928aff36e57e +#: 12ae0cd2debd436ba454389a57dd9578 +#: 4637e02b33794bb39d8bbf9635ea207f +#: 0950879cfde44d6cbb89bdf71aa98c73 +#: dd442776253d4715bb68b8cef407eab2 +#: 7f41c7b8e8c64fb4ab53ff7b28280737 +#: 1da931252c45493f889c76c61de33bfd +#: 52a29af28d764e7eba8554462e412eea +#: 36b8acd3d99f4eb6b8b0903a389dc7ca +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:59 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:59 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:59 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:59 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: d16e5a003d5c4a35b2f276da520d2469 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +#: d182f119af5f46a6a38ba48a27e4cf9c +#: 0a517a2c336a49339f03731d4951537e +#: ec1b93e398bb4877b0ac39d6b6a1e956 +#: fa8201b645a7437592b761239040eedb +#: b74a7f2343ad4cf7920fb4ca5e2cceb3 +#: fc219f1acb954863a6c15312c4ec3d93 +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:68 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:68 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:68 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:68 +#: 27c40492605d46f4b6d1ec39f44617cb +#: fa82c635e540411192f7b2397d7c3910 +#: a203a5bbf16240e6b0b6018534cfb6cb +#: 6118c9eca3de43a3a887abe4599cad3a +#: ac4043b9bd7348b7be71a5dd2c2a441b +#: a438ae97d3eb4d26bec9d7a73f308fe3 +#: b419ff4e68094a058ff690aacf12932d +#: e16575cb572346e0adbeb7f90e6849dd +#: 9f63fb1882c244648028dca93348f43d +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:68 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:68 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:68 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:68 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: 5a1768e861e9461f8e873b9caaaafbe3 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +#: 39d6893fc0f74adca143da800d2c2ac9 +#: 15c9bbbba4d64bf0a329c01991840f54 +#: d38530a7ac3f4c4581a51f58ce6f4e03 +#: 78e0dc4012764113a53286d8b83d8419 +#: d284caffa9bc4906ad8bfcb2d7cfa541 +#: 2ac8d01373124dd589c17d078c1244b4 +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:73 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:47 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:73 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:73 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:73 +#: bd4855af588b4e1988b99aac83ede6de +#: 34faeb47cd6d48c5bbd1a5beafac4e49 +#: cf005a229e6e4514a0a1788d1edc0f3e +#: 7d44b556ebf74428a2b0fedda7aad0d3 +#: ebb7c3e1cbdb413e9b0ce99982620d07 +#: 93e74899e39d4737bbb12ce027e46b5d +#: 91a2313ce6c14cfc905421b80198bb8b +#: 624b3d5110a64769a5cc053d3058eec0 +#: b1e040fade6b4a5dbb4aba3c33bfea58 +#: 1ea513a252444e36ac5939c1dfa25b08 +msgid "A Discord UI View to add to the message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:76 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:76 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:76 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:76 +#: ed29a8c13ec640fa92a87f37475ac04c +#: 00099963c8a84315afd165852b85479e +#: bcf7573f6fb444e38ceeeb4e08a9b320 +#: 221ce49da0674838948a7220ba3f5d66 +#: 7e8189c653da4eea9f6fc895e673e5d9 +#: bc1c8cad9b2c4a5a8995773f0652d02a +#: ad8c4a917a684d8885ad958f234892cb +#: ecad94cdb2df4e7fa0f82fd21b640626 +#: 845a3766ab5f4c31a00e2c8ca411181d +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:76 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:20 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:76 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:76 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:76 +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: 1fa752ebb98b48968581074edbd1b6e1 +#: f324a93551a240b98f56ccda5ac85d13 +#: c845417d22a14f438df1bde2b60f8bf1 +#: f85b517472ad446e8b66f090906db921 +#: 67027eb0bb9a46ff910433483ba8b0d2 +#: dd7ea456273b4a56a9b4d2662a56d9dc +#: 9f315e1de4fd4df8ba86183a7586eb79 +#: cdf68709dfc444c78e4fadd9876f3d8c +#: b6854b5ab98646b18d797cff09929c6b +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:81 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:81 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:81 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:81 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: fef9be1b0ddc4247beb8c8dbc4822665 +#: 4fb386188eb34f18a71304f7add2e62b +#: 376bf96d37814c069ced5e101117a8e0 +#: 8c1a4f2dcfc249198f12cfcbce665be9 +#: 2caf77805c92452f9843eedd70fb2169 +#: befe84bfdd1d40a3b4accf8c32b349e1 +#: b1eaec77313b4d70b32b1a54c1038001 +#: 61a2dcc6798d4c8ca4412d884770fe5e +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:81 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:29 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:81 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:81 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:81 +#: 50a1e07e506e41859f67cc406b77ce5b +#: f0058a94c72e4c99a07b8ed475f56cd5 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 654da576321a431893a750ac9901dd02 +#: 29bbae0e22af43deaf1fd2d7b86dc9dd +#: dd6ee27e772142d4b5226318c9cb2047 +#: 8160a495e16a4e2d99cb8ed659a57cb9 +#: f30821d90958484cbb42f9d4ce3b0911 +#: b144e2465ce5429caca72facccc16fc2 +#: 51592be97142443f8e38dea064766281 +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:86 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:46 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:40 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:37 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:86 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:86 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:86 +#: e3b279330bc34955b55950c71551319c +#: a5e4c6e0b2894fd0a8ecc23a1c4d3b5a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 6877e19277484bb18e28f7216a1bc17f +#: 33ad03182f97400c8074786ee79aac06 +#: 3b0fd52538394393b0ddda32453afa3c +#: 188c4e8664574f55939b947cfd3ab362 +#: 21d21b8d1e0a4e10aa916818a7661d8a +#: 1f2855a0ae9b45049f555a3e2c1d4d0b +#: 7d2ef8724e7a484698049c96fd6aa2ed +#: 791d736982ce45a7b35085741f3a1da0 +#: c8526013bb784e36907786a7a9295361 +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:89 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:89 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:89 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:89 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 98f82715cfdd4551a4255c4314e32cf3 +#: 7b98f69bb68f41769f08d7f4087f8aca +#: 772286effc4c447fa589fe44eeca3800 +#: 129ea0da220c4cdd9b77eb756258a316 +#: 351d5feb2c3a4ede85d421bb2248c9d4 +#: d091cc226343456d825642992b18c87c +#: 55129dd7542a4db5a6d397a6b52327cd +#: ab2c1e8907ab4706b9632052d57fa2df +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:89 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:89 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:89 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:89 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 6f0bd7ae71044d439a4aacd4001103f2 +#: c5df4f33c29747b78f070b6c57fe5c31 +#: 69b6278e0b3d437abb494c76a37945c9 +#: 622d89e7d2d14e389a1bb6b1363b3ae9 +#: 97050fddb33f47f5b47159864d8860d5 +#: 666ffd91aea24e5f8b07bccb2baa1126 +#: 985053d205a5498da3e045da2ec767fc +#: 8d3c145611e94861862c3d95ff0f0ac6 +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:94 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:42 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:94 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:94 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:94 +#: b141ceeb37ae4582a08741b71a2246bd +#: d552d88161fd406dbd970c7e913296af +#: 172e6867a25d47b49adfa19666d2445a +#: 70be566209304bb99e1b68588997e93c +#: 99304fca66dc495abe60ca622ddb573c +#: f198734dae7a4eb2ae4af49ed7955564 +#: 2e380a6ac27d49b7854c1466aaa859f6 +#: 4401e77404294b63880b025be43cea68 +#: d742781cc2c84e8f9d1f5f6d668bd4b3 +#: 01106e66f5c84ab4a10bf610f950d3c5 +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:94 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:42 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:94 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:94 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:94 +#: d267e037031c49eb8e18cccf60f0c73f +#: e130dcbd42754c9f8dad4109bb0a107b +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 0fd9cca9de8e4b38a4cf0aba430cf102 +#: e0bcff98300643be8f48ca33693622b3 +#: e43289882da34c598dcb3583077f2371 +#: 5323720126e348dc80a5f4fcfbd8839f +#: b933891d93a84c91bcde07e2f49c65b4 +#: 65ceab721a0b4d36ba56a7c4ddff88e6 +#: de0cdcc365f94b3aa2bafaeaceda442d +msgid "The poll to send." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:99 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:99 +#: ../../../discord/message.py:docstring of discord.message.Message.reply:8 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:99 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:99 +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 4e9295f65811429bad49c668d0b4d63c +#: 529869019b26467eabd9b22c54f8a337 +#: 5ef39d889467448fa24ecf26ae56b3e5 +#: 08cbd04f17894b13807e31b5b84fb91f +#: f03df42f5db04bfbbe015d940ca4ab3a +#: 42a9974fa00e4e49bb3c9addad7aee18 +#: 605e44e428e84ad5b9536d0e71b5d5ee +#: 6a592fa2221b4bbc93f18142a847f7fe +#: 30b6771cb1b84ac79139b64876e66bd2 +msgid "The message that was sent." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:102 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.premium_required:11 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:50 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:102 +#: ../../../discord/message.py:docstring of discord.message.Message.reply:11 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:102 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:102 +#: e115079242b5446f93fb52a4a2929591 +#: 27d01e18735f42969e57b866ee44ac34 +#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 22a531097c7b470baecb0fce05f3591f +#: 55c7c7d7a30b437f9861c41b0069aa70 +#: 11347b53b1a44bd28a47281f972a1766 +#: 69ef40cf78424c3eb0bcefa4687d684b +#: dd713e5e2c174e1687fcd2decbc97f71 +#: ddfeba957c1243f2a3f6ebf9fe8f0cbf +#: 64e7f09b15494beabf210311f5f31ebb +#: 4926656a8a7f48f4948ffec6f7d7b6a1 +msgid "Sending the message failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:103 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:103 +#: ../../../discord/message.py:docstring of discord.message.Message.reply:12 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:103 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:103 +#: ae8d9e25950748d7b741fcc4d782933b +#: 653f7d3602144d8e976bf3697fca85f6 +#: 11607a716ca841198785219e0ca22b26 +#: 4505f54833d2487e9273977980d743f3 +#: c1eb2bac8b8f43aca42f696508005609 +#: eb949eda351b415aa3358d150eda686c +#: 82da7312ada14350bd423fdb1da852e6 +#: c4bc6f06d03a43b3b3f646e1acbe8087 +#: 039c962eb6ad4039b2ce9256c059d368 +#: bb22f0bde7fa487488383580f201b77b +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.send:104 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.send:104 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.send:104 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.send:104 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: cd2845f86cc544029fe38f244567082a +#: 922ccd9a531a4fc2a1b337e4b5b65624 +#: 94bcbcec328c4761a0a7d98a02ae730d +#: 3cba904855f841788a9631f277852a99 +#: fdd4bd3639544b41929cc88edb76b87d +#: 8fbda058c44640f48e024757773aa203 +#: f34fef286b0f4a86a5b5ed06825820f5 +#: c8d85037cd944226b023bcfd4e93d9fb +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.trigger_typing:3 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.trigger_typing:3 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.trigger_typing:3 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.trigger_typing:3 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 0256a90926ae4ba39c97264975e6f972 +#: da262d70dc734e058487c9d9d7fb55da +#: 8a425e973b1546faba98d820e09deaca +#: 2b94aecd10d44770b5186fed5490155b +#: 3c6171c105f84413a3ced3ce51d0c0d8 +#: f895f77f25e141289ff2fd2f9ee082e1 +#: de6632a73b2c48799d34bf3bb3c361d7 +#: 311565a7662c42b998dd59f205edfdbf +msgid "Triggers a *typing* indicator to the destination." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.trigger_typing:5 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.trigger_typing:5 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.trigger_typing:5 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.trigger_typing:5 +#: 10bacd45da084132bd3fef9ed8d250ca +#: 9e7da29277964bc586866aee221c4d5a +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 4086d7e3cccf4b2eadc61b846ff03d17 +#: 05a1cffb48a540a5ba55f816024a2005 +#: bd4bbf50b22841c6b152b7dc6c8c4f5b +#: 32979ade44ce4d95aa913c8d4e8052f3 +#: 6ad4697a9cd648cd80974e3a887ca477 +#: 0a402b40b88245e49bb60794e8d42266 +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.delete:12 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:16 +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:51 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.trigger_typing:8 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.leave:10 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:28 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:28 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:17 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:28 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:15 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:25 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.chunk:16 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete:10 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_auto_moderation_rule:13 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:18 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:16 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:20 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:17 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:22 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.sync:12 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:16 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:14 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:35 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:52 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.pong:11 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_autocomplete_result:11 +#: ../../../discord/invite.py:docstring of discord.invite.Invite.set_scheduled_event:16 +#: ../../../discord/member.py:docstring of discord.abc.Messageable.trigger_typing:8 +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:25 +#: ../../../discord/member.py:docstring of discord.member.Member.ban:9 +#: ../../../discord/member.py:docstring of discord.member.Member.kick:7 +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:21 +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:25 +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:17 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:17 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:19 +#: ../../../discord/member.py:docstring of discord.member.Member.unban:7 +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:20 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:20 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:11 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:24 +#: ../../../discord/message.py:docstring of discord.message.Message.pin:18 +#: ../../../discord/message.py:docstring of discord.message.Message.publish:14 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:25 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:18 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:11 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.delete:10 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:19 +#: ../../../discord/role.py:docstring of discord.role.Role.delete:15 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.delete:9 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:15 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:22 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:15 +#: ../../../discord/threads.py:docstring of discord.abc.Messageable.trigger_typing:8 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:30 +#: ../../../discord/user.py:docstring of discord.abc.Messageable.trigger_typing:8 +#: 86bbc2437e30463eba135081562d8883 +#: 27bc06838ac848c3b0fe0336815bbeac +#: 75890795eb3141649ba62f2337421e6d +#: 9b4d5894f2f7434e8f7a6db8d32e038b +#: 2ee40ebde871468f8f6de6897dac9c7d +#: c79512090a914dba8ab3fa21fd75cc6e +#: cc254c16841e4da597b2cb03121e72a8 +#: d91143a7220f4b34bf74155cb8ae8be8 +#: 14645c52282b4897948d349951d1024a +#: ce4e0e456b5b4d0cba2b85d163688001 +#: 782f366e5ed847f6bf6c788c4f1925ff +#: 3666c2339d0a49e19d24271c3bcba8bd +#: f0af5aeed9c64f9682895d74ab8d663f +#: 9ee6181f007c4587958af0e67b61b634 +#: a3c36d216f0b40c9a7c15665a87b7ddb +#: 93aac34c639a47d9b97c351311f4762b +#: 9b0abd1a428341979fb585f00a3923ac +#: ae96e1efcd9d40988c62cd01273b26ea +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: 2174c22ca34f405ea4ade5943b25e9cd +#: 735a2622021444aea00bf1122abb143a +#: a580c6a310124e63b671a3a593439331 +#: b51f040eaae944b382ddbefa10ef9d2e +#: 3b378a8be29840f4bb9911fa73c0ff6c +#: 16de38a2270443309b49dcc6be8ba1a0 +#: 434fbec9ea7548a99703909e877d25f0 +#: 38872441954a4937b4adbe036302e6e8 +#: 5d25a6376d4147928b1a972da0dd1ac9 +#: 9559fcc2c626490bb7b678c05c2fd883 +#: c02e808177284d8b93568520fdc4aad8 +#: ddaa10fbf0144588a7c0ac75caf4034c +#: 150846ea504042c2af0426abdb7b4788 +#: ad84cdb1c806404b88d6731a1a8574d9 +#: c714e09b0b364ca6ac1b54e5a8b32879 +#: d019af90cc354035baf8e4b8d91d5722 +#: 95e644507a63444d96c98e601d694dfb +#: 2d7c32b127484003a86414a219a6d3fd +#: d937aa81940142adaafd1686969f1847 +#: abef4d420f4d4c31a711e766803d1508 +#: d0cc8d22c1ee48e8b05e75d24ee3ebcc +#: c816d6956cb345d1a14eeb9391ee5bd9 +#: 7eda7ed07cb34fb9b454f14180119b49 +#: 04374443f87c4011891110f11e1adc27 +#: c730250a6e394067bde93b09d57cac33 +#: 79a3a71ad2954464a8b00a7f4cceb94b +#: daccf6c69aa7417c9ac7d1bfda01c2c4 +#: f6ad66e8c81d41a295fc496233fd7a76 +#: 8ccbddf67a57402c8059f0c81e822031 +#: 29925c0db7454fd6a47a22df42a1d4f7 +#: 3201d67ec3744605a12123995a630ec3 +#: a808b917082d40ed9e1fd96a640b8d42 +#: d4795ad03a4f4ca68058c5fd29fc14e5 +#: b33802146bf9443fa7aeaf8feaa6d239 +#: d6d6fbed38af4a71a77705d9f3c274bf +#: c943cedb361242568f005c3032e10ce8 +#: 79a793b6cf15465e894b3162105e9ec9 +#: 97e945d8e85140b98e2ba365c4253b78 +#: fa4d766c18274608b2acfc2bd4d41953 +#: 1bf8faabe59443b0a82c19c736a959c3 +#: f327448f313149bfb3b37ccb99b75c3d +#: 337a9334a5f94181954a63653e1f0ab0 +#: a4c3c32801d44c2fb83b593b5d5ec746 +#: 5934ac48e5714cbbb0347500c01d82c3 +#: 93e7f8ba6c944fb19b1828bd5f930208 +#: 4b41eec9d7d84982b2a227f88037114f +#: 0ee02fba80c445858a049320626ade51 +#: 56664bfebb3c41629744145870b8966d +#: e61a9f4591ca4409bcef91e215083ecc +#: ac0d0db6c3c84254a25c175bdfb43539 +#: a9ed4b35e9c14127baf2d08303d2c5f0 +#: 379d39f08e204b27a0cd61408d6beda9 +#: 1b62609b092e432c8b34c1063688107e +#: 6264ae54216a49c3853b1a86cdf14a34 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:1 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.typing:1 +#: 507759ccb3074f54855e48e5f971d798 +#: 82ac5b60c6c54cc69673118552352f27 +#: 0d3a00bc83d3498495522af06e5f9829 +#: 16105c02ed7c44cf8e238be899295ad2 +#: 130215278b784dd0a42af727f3550635 +#: 48326fe7ffce443fad61b1ce317e6137 +#: db0551aea9c84400a7e3bfdb4adfc030 +#: f5edb1eac29d4add893a9032b11657ee +#: 8ab2d30ea0424273b156830442c41253 +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:3 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.typing:3 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: ae5e1f660cfe4a0b92ae7b946305dec5 +#: b115df81ecdf400cb4077a062bac2160 +#: 00273c15e0034a1286b425a968c1d337 +#: 096577e5445e49eba82cdc234c22bd38 +#: 40d4197f49bc44e8b4465633726af59c +#: 3604845aa14a4741b1302ba089701869 +#: 6fcbbaed18f54f76a9d98ba6ccebc7de +#: 75c182b66e4e4908b47ed7c17d5919be +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:9 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.typing:9 +#: f38b5698c9964d15a7dd0e1ff97642fd +#: 9267e098f8054f019857c139f7175481 +#: a59c82762ab04a37b73a0ad680efb1c5 +#: d904183878b846a09743ffcdc24503ce +#: 47c7620fb5be4f76aefafef8e461e6be +#: 990b7717ea5e47c29718c1cd1e8e848a +#: d74d82a12ae5448aa20a0cf5b97ba36d +#: fd4d97ea23e440599735ed565f46a736 +#: 4cbecd610e8143d7857a2407605b6294 +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:12 +#: ../../../discord/channel.py:docstring of discord.abc.Messageable.typing:12 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:10 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: c30c993c97f54668907dcea50623c843 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 622a0d72831a4a5cb63d82fdd2e84b0e +#: 9a6a3f8eb2a34bed9fc234dea5310727 +#: 9ccadd6d879b48a193befd826c4a389a +#: a4cbccf7189a4fb2b39bfb397e6dd7ea +#: 24428c3311e6446ba70f95146b3bd66e +#: 45e1f8c5d2ef48f782cd4c2950c3db67 +#: f45b1fe8762742c4a7e93d1e6857fa97 +msgid "Example Usage: ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.get_partial_message:1 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable.get_partial_message:1 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.get_partial_message:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.get_partial_message:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_partial_message:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.get_partial_message:1 +#: 715e396d169947279c18eb2f259bd903 +#: 9b14b15d4eb74f3f82993eca73ef83e5 +#: aeefa789db0441b88d955f792c4ec42f +#: a909afd4654640b68c124245e08d9897 +#: bbcef9b45cf54b94b6f6b6b5902e2228 +#: 4f9edf686ebb40929e64905bc8900117 +#: eed1de9d3a804bc197b29cfd989407c6 +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.get_partial_message:3 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable.get_partial_message:3 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.get_partial_message:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.get_partial_message:3 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_partial_message:3 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.get_partial_message:3 +#: 67179488c7744e83bfcf423722415b13 +#: 823983a7d48b436491e7c7d6c382dd49 +#: e453a891a0f74b9cbf4e83c3a24dbb8e +#: 60dbded83427439b85fe031eb23a5904 +#: ae6cf616397b4f9aaa1ed4f2abb2ebdd +#: 4d8a5d8f2cd94edc854d5e6127cebc47 +#: f567082840c342bdb01ff370fcd2e950 +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.get_partial_message:9 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable.get_partial_message:7 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.get_partial_message:9 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.get_partial_message:9 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_partial_message:9 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.get_partial_message:9 +#: 843df377ee7c4084b88787836abc669e +#: 98efec157ebb473c808aae14f50e6d61 +#: 3fe634e481fc4234906441e93a2c7011 +#: 6a1508f22d934cfab2f6c48588f811f5 +#: 3149c6ae4e2e47289830c993fb00d1dc +#: ea96e74517024e2286f3eaf837fd8c49 +#: 1bd1dfcf756d459bbb40fba5417e21b0 +msgid "The message ID to create a partial message for." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.get_partial_message:12 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable.get_partial_message:10 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.get_partial_message:12 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.get_partial_message:12 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_partial_message:12 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.get_partial_message:12 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 02f2a7118c294c018c9461a938ec529b +#: af4c88e304024038a4d71303c7d50de1 +#: 84208ee666684503b353c9423fb2758d +#: 1c826a7893b14b2aad084a2516e826dd +#: 323d861e758f4497aa0383aa4a7e8648 +#: 89c656bd08b842b1b0efb13a7ce90a67 +msgid "The partial message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.get_partial_message:13 +#: ../../../discord/channel.py:docstring of discord.channel.PartialMessageable.get_partial_message:11 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.get_partial_message:13 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.get_partial_message:13 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_partial_message:13 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.get_partial_message:13 +#: 125d07572d5c4fa4bafff84e471385ed +#: 5d6e1bf5a673406c9a939d94eda6212d +#: 3a3e1154ea274dc0b902db8bc82f9f41 +#: 0f8db26247ff4ea4a73b4cbf0a3a378a +#: 5731dd4f200b4d51a74ea6c977ca5537 +#: a8c2f8a276cb42f39f0b49ab53104267 +#: e083713d6a9c452693116ce6bdb7c299 +msgid ":class:`PartialMessage`" +msgstr "" + +#: ../../api/models.rst:53 +#: 51c19b229c5b4c04bbac59e131da1dfb +msgid "Users" +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:1 +#: 49763b094f654c97ac5092643e51ac66 +msgid "Represents your Discord user." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:7 +#: ../../../discord/user.py:docstring of discord.user.User:7 +#: 8528f633c43f4dfba2b972dc62785542 +#: bb87a910467b4f62bb1f394dd32e6575 +msgid "Checks if two users are equal." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:11 +#: ../../../discord/user.py:docstring of discord.user.User:11 +#: 85c8883463c64892b2d113641e57cfc0 +#: b8d07fcfe0c44217895443aebd19f908 +msgid "Checks if two users are not equal." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:15 +#: ../../../discord/user.py:docstring of discord.user.User:15 +#: d143943b4ab946ab950eb1f7171cd587 +#: 50bf005b5c574b58839952b19464b208 +msgid "Return the user's hash." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:19 +#: ../../../discord/user.py:docstring of discord.user.User:19 +#: 1add853063144abda929fa08b980265c +#: 28a3ceb054d74237b1ad21a28be2a934 +msgid "Returns the user's name with discriminator or global_name." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:23 +#: ../../../discord/user.py:docstring of discord.user.User:23 +#: df577759b9bb40b891e952c0fc8d7856 +#: 094c51e2dd284606a8ffe35e059f9d9e +msgid "The user's username." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:27 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:33 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:27 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:25 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:27 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:25 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:25 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:33 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:27 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:15 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:27 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:15 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:27 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationAccount:9 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationAccount:15 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:15 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:27 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:33 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:15 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:27 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:61 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:73 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:79 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:31 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:59 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:28 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:28 +#: ../../../discord/message.py:docstring of discord.message.Attachment:52 +#: ../../../discord/message.py:docstring of discord.message.Attachment:68 +#: ../../../discord/message.py:docstring of discord.message.Attachment:76 +#: ../../../discord/message.py:docstring of discord.message.Attachment:130 +#: ../../../discord/message.py:docstring of discord.message.Message:43 +#: ../../../discord/monetization.py:docstring of discord.SKU.url:3 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:27 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:33 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:21 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:33 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:92 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:98 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:104 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:50 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:29 +#: ../../../discord/role.py:docstring of discord.role.Role:47 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:33 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:41 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:23 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:35 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:66 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:23 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:35 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:23 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:35 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:53 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:23 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:41 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:23 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:29 +#: ../../../discord/template.py:docstring of discord.template.Template:9 +#: ../../../discord/template.py:docstring of discord.template.Template:21 +#: ../../../discord/template.py:docstring of discord.template.Template:27 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:27 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:25 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:41 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:49 +#: ../../../discord/user.py:docstring of discord.user.User:25 +#: ../../../discord/user.py:docstring of discord.user.User:41 +#: ../../../discord/user.py:docstring of discord.user.User:49 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:17 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:17 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen:9 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:15 +#: ../../../discord/widget.py:docstring of discord.widget.Widget:27 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:31 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:31 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:37 +#: b181e837ebe24f42aed74532d371c2d6 +#: 6ab9e38fee2f4f6cb94faa9a8b05a91c +#: cd70408c99084152b7be0bcf7f009b7e +#: 956a1abeaf574fbfba3816ea1bfa1d1b +#: 23e632a55bcf4949b35edf2b13661d83 +#: 829531878901473f909b329033e932a3 +#: e3867aa2a5734ede9dfd2b008ef82ff6 +#: 8cdd313032d24f41a003933efa33756e +#: 34f8a3e93d424eff88254983dd3736a7 +#: d8bb4e332f9e4288aa8952e99c0043df +#: 67c2d7ad9e4f432590e0941a54d9e9be +#: 3a3a7e1226884523b0ba2364ba0ceaf7 +#: f4cb9643a4f54f8986a504914866acdd +#: 9301fc895bdf4d5781a1ffa99a0ed169 +#: d0d100cfdca84ec6bd94d1435523e5fb +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: ecdcb09ca04d426987a9761e53a33be9 +#: 04b62dfc9c614f36b2e9a16b5bbc2a5b +#: cc16d154a73d4c27b6c2e4766c28fdc2 +#: 5dbb34471c9c4aeeac39929bdba5e280 +#: bc6e1565c7a54554a439605619d63e68 +#: 7e0f562f462b4a80a969d0c5be03c81d +#: 84840779480147d19b1171bc77ee25a3 +#: 87a1a2d6ef194e9a968918e666ae0b5e +#: d161a781001a479198f0d6456a3269a0 +#: a182099fc8f145709b1971f850cc25cf +#: d583dcd158f94d07a6793bebd3add1b7 +#: b762e68126cc4d1cb51e234e8d0d616c +#: 7c95ae2f68154302a5c56d022cb2a992 +#: d3549448898e44a6b2e6de5f8f5819f3 +#: 37f78694622546188f925544e2002af9 +#: 8c914f8f63ae44dc9ce06f40e2cd4fb7 +#: 38c54c3f10fa403a8e4c6360367a6652 +#: 58da2b1cc58c48818b80776c5b99f832 +#: 1142296da53f4928a58d54245cfacc28 +#: 8012645946a74cadac54485a5c6aced1 +#: 9f3e1ba61ea34a32b6ee012cdf31dd26 +#: 32259bcf4ecb46dca79c852a32037c91 +#: 076079b3386d4d6a89b27bba17d0b312 +#: 4f94efc508d5444f8d07bb0941e0b5b6 +#: e7bceb8c3eb840dc916b403151941dab +#: 790d32c8b0e24dff889a97c4ca3b7c3a +#: 157f4b33fce3480c92a446f65a69e8d1 +#: 7113479daf46416b8573666d0fb28641 +#: 9acc1d834d9b4749bdb63f84bc533efc +#: b1bf9e52c2474ea0b2f03215fd572802 +#: beb77f927fc24639af411124051567ed +#: 7597ee6a5d4244feb7684b0efcadc26b +#: 7fad2bb083744208899016a978a0e3c4 +#: e2ff6a13601649bdb3c8cb50ccf736db +#: 423b5700d28c4e63ab74a27b008f8fef +#: 7bf050a1d21345baa532d6914b37b651 +#: 2c5c673500cb4fb38ae09191911b352f +#: 73ab8b1f80264b7eabc72c86ba872f1e +#: 0a8147b9181d4f0f868567c4439106f4 +#: 8d680f97c8af41c68d637864d5a94968 +#: 72bed18c74604172892ec99b6bd37782 +#: 6c6301c7fcf14855aca347aa823d435a +#: 32b294cd644244139584bb17c8a8d4c8 +#: 38ab48a751c24605af1a158519867834 +#: 145335167db74221b883095bc52e6df9 +#: c1f4af1351454d33944fa052903f1169 +#: b12a0fbdc8304c039ce895d8a0cd570a +#: ecee6d91fae24accbff23570604e7ba1 +#: 9ca4623f309740a9835616202442ffb0 +#: 5dfcdd87aba74f89b02af9de18899748 +#: 2ed914851fac463e880a170c626ed769 +#: f634a0f8fa29474bb6144fd81609c7c5 +#: 5a6ba9d9ebbb48f0b6caac5b4661f1f7 +#: 9e4e6173465c4f20a6419f793bdc916d +#: 078f8f7545a747878b02c100b905a77e +#: 27daa4b9111344dfa72ce9b98193a897 +#: 965cd24541014bfe90097fac9d7a2c81 +#: aa5bd341e9964942b5e59022c17a28ed +#: b92f8d81ee0d43c3b9ea39a6f478276d +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:29 +#: ../../../discord/user.py:docstring of discord.user.User:29 +#: 7d59402a16e54f61a97fdc966dfa756c +#: db789a3e10764d59b4328ce02560ff1f +msgid "The user's unique ID." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:35 +#: ../../../discord/user.py:docstring of discord.user.User:35 +#: 4fe49248ca6a4cf19931a37f31753734 +#: 095164b434774a8bad94f6e92b646e03 +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:39 +#: 5e07121932524ee29d2d94f465d1c951 +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:45 +#: ../../../discord/user.py:docstring of discord.user.User:45 +#: ced530d2472048d0a529cf1cf1c91d86 +#: f5d700742ed5457cbd1652439db6a54f +msgid "The user's global name." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:53 +#: ../../../discord/user.py:docstring of discord.user.User:53 +#: 6f1c81c727e7490db10e1647ddc6868b +#: 855b4c1de89b43c29aea9b3c7d9b52cd +msgid "Specifies if the user is a bot account." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:59 +#: ../../../discord/user.py:docstring of discord.user.User:59 +#: e5ec8e04dabb4b16903f766258769106 +#: ca90bc81cd8c464bb9df1041c691bbba +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:67 +#: d090cfb32c5c430eb430718db10c5c78 +msgid "Specifies if the user's email is verified." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:73 +#: 4b08f5755ce949d2a448e13b2eef2ad6 +msgid "The IETF language tag used to identify the language the user is using." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:53 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:57 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:45 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:49 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:106 +#: ../../../discord/components.py:docstring of discord.components.Button:23 +#: ../../../discord/components.py:docstring of discord.components.Button:29 +#: ../../../discord/components.py:docstring of discord.components.Button:41 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:28 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:34 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:111 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:173 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:21 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:85 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:52 +#: ../../../discord/member.py:docstring of discord.member.Member:54 +#: ../../../discord/message.py:docstring of discord.message.Attachment:61 +#: ../../../discord/message.py:docstring of discord.message.Attachment:82 +#: ../../../discord/message.py:docstring of discord.message.Attachment:98 +#: ../../../discord/message.py:docstring of discord.message.Attachment:114 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:39 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:32 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:39 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:21 +#: ../../../discord/role.py:docstring of discord.role.Role:102 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:39 +#: ../../../discord/user.py:docstring of discord.user.ClientUser:75 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:55 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:61 +#: ../../api/models.rst:140 +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: 7a2d9ca6781d4f33b2f9fa33a78e4bcc +#: 9c465eb7704a47f9811d7160f3bd5935 +#: cdc5ce07494d46818ca2ced81397e2b3 +#: 7c77b2ea3750497e96dc19203a13f276 +#: f2fec74b5ab74ff4b1cab4cf1a188256 +#: cb5ae2be4f6d4d089f1885ce659a538d +#: 304736d9c87440b1b4d8f573adc7def8 +#: 3618e6377e1c46c78e59feb44e42d356 +#: 443aed5f1a6947cd9549af66ce38290c +#: cbf44e294d7c445aafbfa74adf302b04 +#: 68affdfaadc64eecbc7ac5b88946a96e +#: 6a04e4fcfa8d42b39ab458738bb67158 +#: c3d6969ca8f94f21807f6d4257f13195 +#: a222f695f91b4569b527390a0a706fb2 +#: d4750e92377940888f98aad384c813eb +#: bac274dee0394a839a4091f9bbf0af78 +#: 7284c6cb66f64b52b1296190052e7d30 +#: 38ef446186b2436ea4a910ff18483125 +#: b81e52a57a664d82bce0d927368cae3b +#: 7fa388d9c40c40c2832665280fbca540 +#: 3f4c2ba3618f4f47880da87b49c16ac6 +#: 02824d1aef74491dbf261020345672a3 +#: d4f07283f073459cad8bc5aadf234a25 +#: 5d3351f5984244b5bdb06b60a4f7a7b0 +#: e89732030b8545c2b8dd2a56c262ba8a +#: 935fa8061bab4e1d8b815126286a99a1 +#: 7476f6ae1b524662af13e35b52f8cdd2 +#: 1718865f0550453a85bf217e4afaa906 +#: 238604711c6341a3b7cc047f6aadc4a3 +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser:79 +#: 77e76f500b0d41cab105a37f20f3ad74 +msgid "Specifies if the user has MFA turned on and working." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:3 +#: d9f3769ee435454a9f5f69bb052d6fbd +msgid "Edits the current profile of the client." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:7 +#: ddef82e80a74417389ee7da8cc6ecbce +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:12 +#: c719af29fc1e42aa876207e09613e455 +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:14 +#: 9591acd6156c42438b25b366eedcc43e +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:17 +#: bbb407029cbc40d4b9f36f85d7bdaf19 +msgid "The ``banner`` keyword-only parameter was added." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:21 +#: c7d106c643294f50b5844f3da87467c9 +msgid "The new username you wish to change to." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:24 +#: 240db79737fc41138acf16a14ec978c4 +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:28 +#: 08557913597c469eab9f36eb51a20a93 +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:32 +#: c8469d63da8744f4a0201e9a1728a8b7 +msgid "The newly edited client user." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:33 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:31 +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:33 +#: 41d7eb227e4843b2b4b56128122141ed +#: 135fd10138e84d4ba3551678d985b183 +#: 5937968836954d0bb17dc2119c59f136 +msgid ":class:`ClientUser`" +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:35 +#: 18775769dafe4f45b7630eb7d3663fc3 +msgid "Editing your profile failed." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.ClientUser.edit:36 +#: d41a31f1b0584f0cb7cb79920089dc07 +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.accent_color:1 +#: ../../../discord/user.py:docstring of discord.User.accent_color:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_color:1 +#: 6a0f951102c042f1967a6cc3fb063826 +#: 6ab96fcf4f29436e858954fbce53796b +#: 5d42054d5da84f4fbd5c7a1c1f650136 +msgid "Returns the user's accent color, if applicable." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.accent_color:3 +#: ../../../discord/user.py:docstring of discord.User.accent_color:3 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_color:3 +#: 98620bb2a1034ce2a564fe642e2417c6 +#: dbfa0f2b4d2542e2855ee6b9d62771be +#: 1938cce6bef44a45a48d698878cba477 +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.accent_color:9 +#: ../../../discord/user.py:docstring of discord.ClientUser.accent_colour:9 +#: ../../../discord/user.py:docstring of discord.ClientUser.banner:6 +#: ../../../discord/user.py:docstring of discord.User.accent_color:9 +#: ../../../discord/user.py:docstring of discord.User.accent_colour:9 +#: ../../../discord/user.py:docstring of discord.User.banner:6 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_color:9 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_colour:9 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.banner:6 +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 6e1597cc41fb43719f34c784e37f64e7 +#: c08cdcb663f141e5b59ef6b7054e737d +#: 877cf2f74fcf407a8e16e91d17876d07 +#: 4ee137d17b6a442dac436b0e7e6e7913 +#: 80debc8bc8b242619b4535eff3c20814 +#: e0bc6b1e888d4fa680977bfd269d8d8a +#: 904b0b1686e94c9cba21419092dd870a +#: 309f3e4984db4b889ab6acc226546974 +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.accent_colour:1 +#: ../../../discord/user.py:docstring of discord.User.accent_colour:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_colour:1 +#: c59947f63fe941bf84cf9f07cdfe2593 +#: fc1973771c3e423ab34b16ab10b22619 +#: 89e0f07e8f4b42c18a916c2fee3a14a4 +msgid "Returns the user's accent colour, if applicable." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.accent_colour:3 +#: ../../../discord/user.py:docstring of discord.User.accent_colour:3 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_colour:3 +#: 04e4c72d96d64ecd921c375be4339ac8 +#: a090b4fb330747bd92cc59742138225c +#: 6b7360e798ae481c9c1808160c5bb033 +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.avatar:1 +#: ../../../discord/user.py:docstring of discord.User.avatar:1 +#: 501c4f6cbdbf42769fff2a35d112d118 +#: 80ce4b40e1d34abdace629cb7a571a4d +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.avatar:3 +#: ../../../discord/user.py:docstring of discord.User.avatar:3 +#: a26030435155406dac323efb28927fe9 +#: 10382ad8465644e3bc34b20641256a9c +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.avatar_decoration:1 +#: ../../../discord/user.py:docstring of discord.User.avatar_decoration:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.avatar_decoration:1 +#: c03fc269038746299c68c4ff20bdcb43 +#: 4e65e66d65cf422f984e2dc18da32a72 +#: af7c151a269941859b5eb927d1052e49 +msgid "Returns the user's avatar decoration, if available." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.banner:1 +#: ../../../discord/user.py:docstring of discord.User.banner:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.banner:1 +#: be1ed8a944cf42bebfcd8d4c6878cdcb +#: 9c4d8e995e424d76994802eb84438e29 +#: 55fa34cde7fb4b2c86ad88d8033f125e +msgid "Returns the user's banner asset, if available." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.color:1 +#: ../../../discord/user.py:docstring of discord.User.color:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.color:1 +#: 0d50a75dd5aa40f4a61fc98fd5b2e577 +#: ca3f1b9b592542c08357b2c0269e41dc +#: 10d4742b9b8f4d08b8afb6128d733ad0 +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.color:5 +#: ../../../discord/user.py:docstring of discord.ClientUser.color:4 +#: ../../../discord/user.py:docstring of discord.User.color:4 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.color:4 +#: d5b77dfdb6414af4bd41ae7661eca6e5 +#: 624b0e883b1d48839b0128ffaafa47e8 +#: 4a11e8cca87344baa2a0b654de88fa39 +#: b2719dbb068c4831bb0055e9c9caf34f +msgid "There is an alias for this named :attr:`colour`." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.colour:1 +#: ../../../discord/user.py:docstring of discord.User.colour:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.colour:1 +#: 9cec23c320d8469ea36f43da369ed102 +#: e69af87a44364eaf9b5b69d3f66864c7 +#: 2cf635b79df3473c90ac23f164a0427c +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.colour:5 +#: ../../../discord/user.py:docstring of discord.ClientUser.colour:4 +#: ../../../discord/user.py:docstring of discord.User.colour:4 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.colour:4 +#: e2124f67ec9f4267908985a925d278ed +#: 4e371cae01aa4766ab17cff8f76e1efe +#: 2d5f274e11504b99938c8ba60c312acb +#: a44bab8e709d4a759619951616ec45e8 +msgid "There is an alias for this named :attr:`color`." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.created_at:1 +#: ../../../discord/user.py:docstring of discord.User.created_at:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.created_at:1 +#: b36550ba16734b24b4466af739ed85aa +#: 242c9dfc04694b489e2f7d80df59ded7 +#: 437b006882224342968fb4c368487fe6 +msgid "Returns the user's creation time in UTC." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.created_at:3 +#: ../../../discord/user.py:docstring of discord.User.created_at:3 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.created_at:3 +#: 8221e054b3a6494e9dcbb094d3c44517 +#: c13d536b60be48f5b31de078b4b756b6 +#: 50f3e4ffe5384958b891922303c4be12 +msgid "This is when the user's Discord account was created." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.default_avatar:1 +#: ../../../discord/user.py:docstring of discord.User.default_avatar:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.default_avatar:1 +#: 224eea430fc345f5baaceb1fd1705c4a +#: d4d393857fb64b7e914cd07558fd6602 +#: 038c62b751b84784986d6e29a5dc57c1 +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.display_avatar:1 +#: ../../../discord/user.py:docstring of discord.User.display_avatar:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.display_avatar:1 +#: 3c9e57b8c879411eb7b0a5bce8837eaa +#: 613adc4ebb9d487bb1c10b1b831c265a +#: 91a80ca04f9845d782a0aec709e6342d +msgid "Returns the user's display avatar." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.display_avatar:3 +#: ../../../discord/user.py:docstring of discord.User.display_avatar:3 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.display_avatar:3 +#: fb3482d25d174a26b778b9faf87546c8 +#: d2b170adae3f48cfaca8949892f73fc4 +#: b73981c9e34846df86edd23a8b06acba +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.display_name:1 +#: ../../../discord/user.py:docstring of discord.User.display_name:1 +#: 590fc14655784aab8f2ee70767655abb +#: b7f12013710249f19b27a29d414d549f +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.is_migrated:1 +#: ../../../discord/user.py:docstring of discord.User.is_migrated:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.is_migrated:1 +#: 98d46180481045ac91439bb582984225 +#: 75913c2943e244da9f912797c9315548 +#: 83b3d21571f541efa5c11b1df2216c78 +msgid "Checks whether the user is already migrated to global name." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.jump_url:1 +#: ../../../discord/user.py:docstring of discord.User.jump_url:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.jump_url:1 +#: ed344f416d38414faf37aa0952f5119b +#: a6aab4a6f73b4a558e5a99f75d9d6f09 +#: 71803c743ab04f6487bcc7cd7592ab5c +msgid "Returns a URL that allows the client to jump to the user." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.mention:1 +#: ../../../discord/user.py:docstring of discord.User.mention:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.mention:1 +#: 952afd71f7ee40ee923e5d57e9666246 +#: 7000b4f254244a50968882f86aa22812 +#: 2e4ec00b99904f72a3847aca88c7a818 +msgid "Returns a string that allows you to mention the given user." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.BaseUser.mentioned_in:1 +#: ../../../discord/widget.py:docstring of discord.user.BaseUser.mentioned_in:1 +#: fd752e6addca4ab6b4f098137fa9ce29 +#: 93d3ff64137447f39e0019c80c4df9d2 +#: 54594e8767054e72946033269b0c3592 +msgid "Checks if the user is mentioned in the specified message." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.mentioned_in:4 +#: ../../../discord/user.py:docstring of discord.user.BaseUser.mentioned_in:4 +#: ../../../discord/widget.py:docstring of discord.user.BaseUser.mentioned_in:4 +#: f59645c800104853b49db0b8b46edcbf +#: aeae96f3b68e4982bf78bbc2036c04e5 +#: d7be525e0b7b494d9f5b256e3f118474 +#: f1bd60f8f41c41f09247a25ec7df1953 +msgid "The message to check if you're mentioned in." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.BaseUser.mentioned_in:7 +#: ../../../discord/widget.py:docstring of discord.user.BaseUser.mentioned_in:7 +#: 8f7489e0344546199a8c5c066f41a5c2 +#: bc66413bce7f498bac19576ed4b6fbd0 +#: 1cf28790dcb441a19baba9858f83391c +msgid "Indicates if the user is mentioned in the message." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.ClientUser.public_flags:1 +#: ../../../discord/user.py:docstring of discord.User.public_flags:1 +#: ../../../discord/widget.py:docstring of discord.WidgetMember.public_flags:1 +#: 93632cb243b348e9956831b21bdc22a9 +#: 921c002b550040f8b20f075deecaa7e6 +#: ea58197e31bb4b41884a157342d514cc +msgid "The publicly available flags the user has." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.User:1 +#: a5bbb9c41ded42adbbedac8adcab5236 +msgid "Represents a Discord user." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.user.User:39 +#: 2f6617dc2aed416ca5dc1c8d8df0170e +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.User.dm_channel:1 +#: dd9cd5d45b7a4f7d81de8e1843f28922 +msgid "Returns the channel associated with this user if it exists." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.User.dm_channel:3 +#: 7fae4ce246b54d1b92ebaf328f8b65cf +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.User.mutual_guilds:1 +#: b383cc9fafc743aab9219b21184e78ed +msgid "The guilds that the user shares with the client." +msgstr "" + +#: ../../../discord/user.py:docstring of discord.User.mutual_guilds:5 +#: e41db11d00364968bc3168d7ac4c4a02 +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:3 +#: ../../../discord/user.py:docstring of discord.user.User.create_dm:3 +#: 5d3cf60bddbc4c6fad29b9c300b60469 +#: 463038c5ef3f43cd807215436ae90bd7 +msgid "Creates a :class:`DMChannel` with this user." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:5 +#: ../../../discord/user.py:docstring of discord.user.User.create_dm:5 +#: e099032e034b487db2a951a186656094 +#: 7eb7c88b11764472a09211f3e8271341 +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:19 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:19 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:19 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:19 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:8 +#: ../../../discord/user.py:docstring of discord.user.User.create_dm:8 +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 7f0c8d792b204d7eb76a4f9cdbbc9b4a +#: 4f9bbd47c94f492a9039ffde091a64e3 +#: dd62b3c23c81440ba560f636a59c162b +#: 5d424f44e30146e983faa82c8a366e87 +#: 9f44e2f4057444e4a84b8a338942417c +#: 72289e8a59c2475493e7381bea2afac7 +msgid "The channel that was created." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:9 +#: ../../../discord/user.py:docstring of discord.user.User.create_dm:9 +#: 827186088d1d4f689ad318127cf593a4 +#: b6cefe350c984fc3b0fdd3b0b59ea5e6 +msgid ":class:`.DMChannel`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:3 +#: ../../../discord/user.py:docstring of discord.user.User.create_test_entitlement:3 +#: 6f3a14dd55e94eff97233f7cdb9ddded +#: ad1e53c4d8a74c90aea9eac9056fa9a8 +msgid "Creates a test entitlement for the user." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_test_entitlement:6 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:6 +#: ../../../discord/user.py:docstring of discord.user.User.create_test_entitlement:6 +#: 52b7f3d178ba45879ca736db726309ac +#: 2812004ba59d451cacbb47175f8796f9 +#: b6ac8dcf0bf142bab78c73484797605d +msgid "The SKU to create a test entitlement for." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_test_entitlement:9 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:9 +#: ../../../discord/user.py:docstring of discord.user.User.create_test_entitlement:9 +#: 688251e620db45399e35182ab313f053 +#: 31ce2a2adcdb4fc0adc3e688aed0d2b0 +#: 13ba39c12b064c2ba55a0a457d5c1fcd +msgid "The created entitlement." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_test_entitlement:10 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:10 +#: ../../../discord/user.py:docstring of discord.user.User.create_test_entitlement:10 +#: ed4f4ebe3d314273a8db0f388ad10891 +#: 6473a06d5de84d299e4903e3cb389bac +#: 13f0c0b2327347cbb0ba5e1cefd56491 +msgid ":class:`Entitlement`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:1 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:1 +#: ae059b12f7be4225823a1ebe75b9caa2 +#: 024d66d0841244cab9d49a97deb4c5e5 +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:3 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:3 +#: 73ee380e8eaa49b1985d9e76d0ce3011 +#: e10285f0eb4f48e8b6564c9263859412 +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:8 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:8 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:8 +#: 191945eb971249b586dd09f0a363f167 +#: 8a837858c9c74dd78408d01365b40b96 +#: 1da270d0073e43218b47ff25cf681f0e +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:11 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:11 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:11 +#: 6aa172e940f144f98ef4d69e388b7e00 +#: 19c5cfcf169d466a949ae4cad69dd539 +#: e8f9223260d442a89122d258943a9f80 +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:16 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:16 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:16 +#: 3be018fd0820429f800ddf00c58423ea +#: 960251d52e934e4c92c9bd0a0aa77ea8 +#: 92e0de4593204a60869b909527a48cc0 +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:21 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:21 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:21 +#: 2f95d22d8cda40e587765c256f57bfe6 +#: ccc5662bbccc488a8bd98f228735b700 +#: 6a8f4591ada2452cb285e2308ba7e14d +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:26 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:26 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:26 +#: cb8af2a165a445fa87148c0efa867904 +#: 45683405846449d59048c3085f095887 +#: eb85c21c7fb24b63acd8452d26608bbd +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:30 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:30 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:30 +#: 2fcb0d10765c4c01b53a633d1e7749f0 +#: c089af58b0c7402cb4dee2dcb39632a4 +#: 9e0acf5c8cb1442eb5ab46a75d1fc1fb +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:32 +#: ../../../discord/member.py:docstring of discord.member.flatten_user..generate_function..general:32 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:32 +#: dfae8467fd154ea5b8777569e61e764e +#: 7a9d13bf49744fff9c9bf9f66c88f6bc +#: 4477dcd6cf974b189ffa8308bef5b349 +msgid "Retrieving the entitlements failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:34 +#: ../../../discord/user.py:docstring of discord.user.User.entitlements:34 +#: add5fc2b3b474b48963f5e2d57af8ad3 +#: 87e7437ba3dd4295bcf7317cc8932738 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr "" + +#: ../../api/models.rst:75 +#: e2f6fc6b14cf443e9ffd5ee366ab35b0 +msgid "Messages" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:1 +#: 610ab4299cf34098b4fc7626fa9f4515 +msgid "Represents an attachment from Discord." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:7 +#: 36cbed8c5d6c44508ac29609b3fb8a2e +msgid "Returns the URL of the attachment." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:11 +#: eb4d45edb6984c1aae6adf406962d755 +msgid "Checks if the attachment is equal to another attachment." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:15 +#: c719b7728d734c2d872dd919ae331934 +msgid "Checks if the attachment is not equal to another attachment." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:19 +#: 54133d6dd993488ba10e3caf08a4c2fc +msgid "Returns the hash of the attachment." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:21 +#: 0c575e35aef5425b94a0dff90e2e0231 +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:26 +#: 8c174bbfd44147ecb1d712933fa3aa4e +msgid "The attachment ID." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:32 +#: cad88e03745e4898b486276d5648803c +msgid "The attachment size in bytes." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:38 +#: a2938bf7c9b44e4e9bca2663a729afaf +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:46 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:43 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:60 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:67 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:126 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:51 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:58 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:100 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:43 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:56 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:63 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:106 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:43 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:50 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:87 +#: ../../../discord/components.py:docstring of discord.components.Button:53 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:87 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:97 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:105 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:190 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:201 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:42 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:24 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:36 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:35 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:42 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:109 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:116 +#: ../../../discord/message.py:docstring of discord.message.Attachment:40 +#: ../../../discord/message.py:docstring of discord.message.Attachment:46 +#: ../../../discord/message.py:docstring of discord.message.Message:126 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:44 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:53 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:66 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:79 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:27 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:33 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:19 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:13 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:23 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:26 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:19 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:27 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:15 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:21 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:70 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:78 +#: ../../../discord/threads.py:docstring of discord.Thread.category_id:4 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:61 +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 4eda47990854400088b81bf7ad06b60b +#: f55fe32c1fb5446182de1835f38e3e5f +#: 32bfaad9dc0e42aba5a769f9c2139168 +#: 62e39fcf170c47679b6cd7bf3c126f84 +#: 861419498d894bd392b618fafce8f153 +#: cc7340cf856c432a8a37d01487f45c4c +#: 16aa462320ca4ecfbe0d2390f73def67 +#: a53dd3b06e6747ce830d157361089b45 +#: 310192c648264bc086b55a67115104f5 +#: eb3ace6983e64783abce722455d6e615 +#: 65e1a435c1b049cc91eb431a43bbbed9 +#: d3b412a841364dfcb8c6431351daec64 +#: 5f35941ead4d4d76bba0d3be16100250 +#: d9a52c5cd73e4aacbff03b2bb2db3e2b +#: 781ea2bb290f4f5c9a6847895bc36f9c +#: f50b8fb8640844a6933c62864952effb +#: 5af1b6a609ab4a2bb68eacf80865e151 +#: a2015f8f64cb4f339df7823c086758a0 +#: e8e248ebced446aaa3515ce0bfd8d29f +#: 7e1d4f66d0734e23b9fa8addc1b63b21 +#: 02fb8a7fa68f4fc99beccaba0f882fb6 +#: 71f3fdac0b6b4073ba87460aca44fa25 +#: ed225dab950c4d558bd55545e3799900 +#: facb1ee14ff74b9c938e79bd9eaa6216 +#: f71a1047a2724a139e2786688cce2929 +#: 4d67ab92ab204e4e8800ac97d65a7450 +#: f67eb922a408431a8a4d73afd615e7ed +#: 51055a5aed024bf792ede60ce22e1094 +#: ceb54099842d479a9603c8cdc027c557 +#: 66e1123e1a10415ab80cc965f1b9800e +#: 1dc07e8701134ae482745a6fdb0e1e83 +#: 18233b5f8f524f30ae9d138abb7b02e3 +#: c20d621bfdd04bd7958dd8ded1cf28ba +#: c0523d4d76584b5e87fa6f95d67ee6eb +#: 4bc8ed031739487a82896f9460b3d2f4 +#: a555a158d4c94ab297fc69a437a86da1 +#: d572027bb13a4a1cbb460e011e6e7ddb +#: bf585868837241d4b8e33d9dd72c6b0f +#: 7504ffa093a94699853b86e2c8b2b85f +#: 8046958056964e87915afecd2fb2f92b +#: 36687173af6a4ebcb53df972e3861091 +#: 0043e1b50b06475ab8f52dbd526aae0d +#: 2457c1a136e04a3f8fa1d32b8fb02406 +#: 241ded46e24148ccb59f478a051b531a +#: 000b7f5401ec42a5a2046b049a180c83 +#: c665dc8db2114a138259888175d238ff +#: 02b35825ed7a490e9a56a0e39a94eef3 +#: 903661c896074218bf9620014ce0cef3 +#: bd2355b1c0d546e1aade893a73a17fca +#: ba7cf59f9d0b41208909d48aca0d0d4c +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:44 +#: 5ef4f4ec93704176ab793181a849f05f +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:50 +#: 1578fbf5297d4be08834fd1ee5ef1fe5 +msgid "The attachment's filename." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:56 +#: 958d5b5f3b08410aa5055b2450fc39f1 +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:65 +#: ee16dbcd50b74902b088cad9dcd1cccf +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:72 +#: 992e18f11a9c4994b41a6e9c411d60de +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:80 +#: 3afcc47a746b41ef962d8970c735e85c +msgid "The attachment's `media type `_." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:86 +#: 1bc86b04dd0e4e3ab62f5abb1fa5a191 +msgid "Whether the attachment is ephemeral or not." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:94 +#: 3f39cbfb9d7b4acdbbbbb44af1a4a044 +msgid "The attachment's description." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:102 +#: 41a146e92e5c4b14b97610c414598c5f +msgid "The duration of the audio file (currently for voice messages)." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:106 +#: 5e36ab69e24a4e9281fef9f23b4e9417 +msgid "Optional[:class:`float`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:110 +#: eff44c3749674e1fbbf4b67f51584aa1 +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:118 +#: 8d72571d6ca849d6a35b59f075db944f +msgid "Extra attributes of the attachment." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:122 +#: ab0f888b90cd441e98e12a4233f6a5ca +msgid ":class:`AttachmentFlags`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:126 +#: eb66ce493d6144a692880c2d020256d8 +msgid "The unique signature of this attachment's instance." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.Attachment.expires_at:1 +#: 7a7e3e6209bd4c15afc6752b8c74040e +msgid "This attachment URL's expiry time in UTC." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.Attachment.issued_at:1 +#: 581eda75240949569707cd63ac09c7a8 +msgid "The attachment URL's issue time in UTC." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.is_spoiler:1 +#: 49b18fc268034c8db39371a3fc32c865 +msgid "Whether this attachment contains a spoiler." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:3 +#: c25732e0908f4dd8bd7a864809412d0d +msgid "Saves this attachment into a file-like object." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:8 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:15 +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:9 +#: 2b5ead79700145a382d76f44023473e0 +#: abdf57698eb34d8982ba647f6da17306 +#: 7aa4f610913d4f9b9a7d74ae16d69eb5 +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:26 +#: 3a2517aab81246b4b3b8e32809055a54 +msgid "Saving the attachment failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:21 +#: ../../../discord/message.py:docstring of discord.message.Attachment.save:27 +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:29 +#: d18abb0c844745c2807b072262ea7789 +#: ab9fdda4d9474a1086b411042447c7f8 +#: 38a5651d049e4b7e9f01bb38e9760855 +msgid "The attachment was deleted." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:3 +#: 89527552ebbd4d409dcce3694f51a99b +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:16 +#: 1bad3cdd715542a994765eeb1d5cc225 +msgid "The contents of the attachment." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:19 +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:27 +#: 50fc85816460419987fd4b9d6f35c1e0 +#: 4db1799592a342b69f4dff05cb3399aa +msgid "Downloading the attachment failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.read:20 +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:28 +#: 852f492f157c49a49a538a015d3dc7f6 +#: 93df4e1ae9c44fe4ab4e94a66887ed45 +msgid "You do not have permissions to access this attachment" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:3 +#: 512cefc81149403991eb28276fd27583 +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:9 +#: 97c789cd2203402caaf8749a1b36a101 +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:19 +#: c2dc41c458d14511af30641f128b62a7 +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:19 +#: ac21dc598e304ef99add56eb017be309 +msgid "Whether the file is a spoiler." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:24 +#: 3dbef21cef734a099ef0f5b9de18b4b0 +msgid "The attachment as a file suitable for sending." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:25 +#: 406bc1fb64024186be3b7ecaf1a02ac3 +msgid ":class:`File`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:1 +#: 10ef3aa25d85405fb59e9ab658bc9eac +msgid "Represents a message from Discord." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:7 +#: c89f0f707b8e46c6a7c6c501bc5f0293 +msgid "Checks if two messages are equal." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:11 +#: 96dc0272315c4528b796e1996105ea53 +msgid "Checks if two messages are not equal." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:15 +#: a4333cfc43cd4aa59cf2da1c96614ce0 +msgid "Returns the message's hash." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:19 +#: 66fcb5e73fa5422b84143f684a703457 +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:27 +#: 1c29cc92950e41328decea6a9493d984 +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:30 +#: ac22c5569dca4c34a8f7f0844f479dab +msgid ":class:`MessageType`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:34 +#: 98463528996a46798fc8efd5aa242dd6 +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:37 +#: 9ca47ce35e334775b050c5fffee921b4 +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:41 +#: 851fad41cfa943068fdd9dc3ce016772 +msgid "The actual contents of the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:47 +#: 539e6d62371d4f8c97f56e84dd29d925 +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:50 +#: e60f3027370f43b693c6d981bf0d4f55 +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:54 +#: 8a97782bb8154337aaaa86c73d5871a6 +msgid "A list of embeds the message has." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:56 +#: 6e668a78acd34b959732d8cbd2667cc0 +msgid "List[:class:`Embed`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:60 +#: 5e7f262f6ee24545b1ca267cfc28867a +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:63 +#: 33f5a93d3c45480890ed9a50bb089b3f +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:67 +#: 9995b387626a431bad40c78cda6d0c9e +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:73 +#: 1b1a4032950945b2a0895fe3c81c3721 +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:77 +#: d7804f1b198444419c99c4772c5d55ac +msgid "Specifies if the message mentions everyone." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:81 +#: 97bbea590d824d1f81373c1ace66ba4a +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:89 +#: 960165a680ad459eac0bbdccfbd7d204 +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:96 +#: f9800bb1f137401aab89591a1a423b6e +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:99 +#: b6bd045fd6c44ad09ef867d9bffbade7 +msgid "List[:class:`abc.User`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:103 +#: 7af63d54c0ff4a8690b5d9607495a1cd +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:106 +#: 011476095d5046498b1c37fad94213e1 +msgid "List[:class:`abc.GuildChannel`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:110 +#: 49955f9ef16d41bf80b7937f4ace197a +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:31 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_roles:12 +#: ../../../discord/message.py:docstring of discord.message.Message:113 +#: a4e4f174c60443c0afb51e724da832d1 +#: 9e75c40ee9b4463aadc399e8db6f6389 +#: 88c4c524c78a4857b913ca8d5973f08d +msgid "List[:class:`Role`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:117 +#: b652db0d948a4908bd0a5f651a230759 +msgid "The message ID." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:123 +#: 786d6374802f4e44b030b2fd41adf862 +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:130 +#: 421e917b62fd42bebe07d3de413ddf85 +msgid "A list of attachments given to a message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:132 +#: f24083bc199542cbbe74419d8abbdb6e +msgid "List[:class:`Attachment`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:136 +#: 2f13ad45fff048719718a0c2788c1d0c +msgid "Specifies if the message is currently pinned." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:142 +#: efef04c240ec4429aa48439dc785b972 +msgid "Extra features of the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:146 +#: 6c7e533bdc934532a1a9ed62d9dd677c +msgid ":class:`MessageFlags`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:150 +#: 55c105f0e8554e7ab630de0a57a2af15 +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:152 +#: f5938125bdc04e539f46f82dae7db0a9 +msgid "List[:class:`Reaction`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:156 +#: 1b8101a6a88346038765fee81ebe3ad4 +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:159 +#: cdd04cf139c9423a92d80149e2b2e150 +msgid "It is a dictionary with the following optional keys:" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:161 +#: 1423a2c02f774bd480ca350e72106b6c +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:162 +#: 21d99256b5c044858d72ec0bdeba7f33 +msgid "``party_id``: The party ID associated with the party." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:164 +#: ../../../discord/message.py:docstring of discord.message.Message:178 +#: f3f5b79ae0264c59b2b8f18457a33604 +#: 11c75525785d4c429178a7a718d68f80 +msgid "Optional[:class:`dict`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:168 +#: 5c638f47368d4db5882b325512edf336 +msgid "The rich presence enabled application associated with this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:170 +#: 1ae5cbf673ab45ceb3b8e66cc8706099 +msgid "It is a dictionary with the following keys:" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:172 +#: 221c04f455724fcfb9b0a46ddb3939e5 +msgid "``id``: A string representing the application's ID." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:173 +#: 5a6f862aefff4cbcadc74c8ba6271e5c +msgid "``name``: A string representing the application's name." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:174 +#: f4b50c05afeb4dd29178bda7d9f126da +msgid "``description``: A string representing the application's description." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:175 +#: 084d789e62d143e8b725a57852282cd2 +msgid "``icon``: A string representing the icon ID of the application." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:176 +#: ee50f70337d94151a302a61e82dbc029 +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:182 +#: 5582678c2ca8413ca069c56f2492567d +msgid "A list of sticker items given to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:186 +#: bd86ecd15cc848a8b57ef5dbb7c6f4d4 +msgid "List[:class:`StickerItem`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:190 +#: bb20c61da20940bab181136ef093d900 +msgid "A list of components in the message." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:19 +#: ../../../discord/message.py:docstring of discord.message.Message:194 +#: 67814d733bdf4049865a606a8b8f8cc5 +#: 84f37565d5b54049bca37476a10434b3 +msgid "List[:class:`Component`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:198 +#: 0f10704216da411fa9cb5ea9729a306d +msgid "The guild that the message belongs to, if applicable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:200 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:35 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:22 +#: ../../docstring of discord.AuthorizingIntegrationOwners.guild:4 +#: c721db13a7b146019d639a9f3f834bf5 +#: 9dd1e8c3b999410fa6625ba6f279c7c7 +#: 9db27d1a81fe4060ba470a836b7590b1 +#: 5e79555df3a64004a12dc6d167454d41 +msgid "Optional[:class:`Guild`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:204 +#: c711b5679e6f4001971bdbf17f5a6bc5 +msgid "The interaction associated with the message, if applicable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:208 +#: 9c695b320a55407a830a789ff0278c51 +msgid "Use :attr:`interaction_metadata` instead." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:210 +#: 4229c74086434a8da37f74044d1d1104 +msgid "Optional[:class:`MessageInteraction`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:214 +#: b1fdf0c3bbfe46aba08110ea038a323e +msgid "The interaction metadata associated with the message, if applicable." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:49 +#: ../../../discord/message.py:docstring of discord.message.Message:218 +#: bc296a912770482a81cf365b4076d957 +#: 465b6273c1434cdf84d1bf9d0bec35d1 +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:222 +#: fbae865071c64c2e9e3f98ada3d37e00 +msgid "The thread created from this message, if applicable." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_thread:10 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_thread:10 +#: ../../../discord/message.py:docstring of discord.message.Message:226 +#: d8d7b5cabb804112945544dd9fce00a3 +#: aac45b2defac480591d4ff80dd368aa8 +#: 2654a66e65374bf188f55b35405bed50 +#: 5b81316884dc4d4ab0ed062196d5f11b +msgid "Optional[:class:`Thread`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:230 +#: 976df015627c468c81e129d00a058565 +msgid "The poll associated with this message, if applicable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:234 +#: b70aff860e5a4c0092f8bc6056c6c429 +msgid "Optional[:class:`Poll`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:238 +#: ba8414a14e5247d1891f3fcd6ede7ba5 +msgid "The call information associated with this message, if applicable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:242 +#: 2e405f4e197f4b0ba5d54391a69b0d71 +msgid "Optional[:class:`MessageCall`]" +msgstr "" + +#: ../../docstring of discord.Message.raw_mentions:1 +#: d59d70f0cbd743578391ed22b87a8517 +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "" + +#: ../../docstring of discord.Message.raw_mentions:4 +#: bf9876a8435e4fb5a35d45f7ba9ab90a +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "" + +#: ../../docstring of discord.Message.raw_channel_mentions:1 +#: 21f2f539641c4128b9e6858d5de9a5ca +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "" + +#: ../../docstring of discord.Message.raw_role_mentions:1 +#: 61279901d2c144e3a417b89ad6970896 +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "" + +#: ../../docstring of discord.Message.clean_content:1 +#: 5905102b41e94421a8bbe2d3e39e0dc1 +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "" + +#: ../../docstring of discord.Message.clean_content:6 +#: a849cf73f2174ff19747610e465a352d +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "" + +#: ../../docstring of discord.Message.clean_content:11 +#: 69355ee0c0ff4f15a9b729b4ca15c973 +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.Message.created_at:1 +#: 55e47beaa3ac4cee992d5883ba04a4c6 +msgid "The message's creation time in UTC." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.Message.edited_at:1 +#: bb1c1cc12b08400f86be29f7d0441b3e +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.Message.jump_url:1 +#: dbcd2c570fa4423cb11ac679697038d6 +msgid "Returns a URL that allows the client to jump to this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.is_system:1 +#: 902275c17f3c469aa785343359c47fb9 +msgid "Whether the message is a system message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.is_system:3 +#: 380bdbfc46bd4c5899551469cc7e5889 +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../docstring of discord.Message.system_content:1 +#: 6ac96034f537482981cd178d888a47e4 +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "" + +#: ../../docstring of discord.Message.system_content:4 +#: cb529005bb6e428d9a95dbc310bfe671 +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:3 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:3 +#: f3ebcd5f2ae04e4995b614f305c52ccf +#: ad8810e402c64d56a4003b1747b42550 +msgid "Deletes the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:5 +#: 0bbb54d698a1473eb6060514cc3eca99 +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:9 +#: b016c406275e4375a282ef3c913836f1 +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:13 +#: 3e7b8a13ba7745cb878a4b89c7dc35ff +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:17 +#: 7766e3a4eb534510bc1dcafa3f915983 +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:10 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:20 +#: 31dae9bdaac8430bab6b0a5bad06b2c3 +#: f075f7ddf459448486db289bb7a664c8 +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.delete:21 +#: b863c986a0fa4047b2f5c54b2393cb04 +msgid "The message was deleted already" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_message:3 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:13 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:12 +#: ../../../discord/message.py:docstring of discord.message.Message.delete:22 +#: 11626a89e9754d98b9e406dee995ee11 +#: 918b2eb266e64d8b92a504fe13d28665 +#: 1775e9f431f84cd29c8c6c988d71ccea +#: 120db33a3735472ab0570bbc976c4428 +msgid "Deleting the message failed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:3 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:3 +#: 6ed53c62bf794126a8bcd24d3fd2a19e +#: 99ff3a0b34044b0aa7c00d20adca1974 +msgid "Edits the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:5 +#: f506e070d16e481b93649766961323be +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:7 +#: c919b04337dd4e29b9089203012031c2 +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:11 +#: f15edfb6cdf74e378aecadedb0ab3e72 +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:15 +#: eea88257163b4962992fe33593dbc23a +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:19 +#: 93c44872f4754ff89bacdf2adf89814e +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:19 +#: bb7569bda28141f4b8cec0729aa54f1f +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:25 +#: e635ccc895ce42aab5f9e248143bfab4 +msgid "A new file to add to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:28 +#: 929da4038ce34700ac4c10e343adce0b +msgid "New files to add to the message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:29 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:23 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:24 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:31 +#: 37250a2ca1734906b0f17639a4ca5a55 +#: 30fc507352f2434c88bf8dae92a030f3 +#: e014c6640ee145b0aab2568538ccd36f +#: 4ed98df9062a4b399b1b5f856df698d8 +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:35 +#: 94013e4244574f8aa0b4bc45b834b58c +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:41 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:35 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:32 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:41 +#: a865ae969b7e4cd1aa10292adaa53422 +#: 1b1c8d98c40d4a1db673aba02af8ab84 +#: 58eef6762f754bf88a5e271aeb18c7f2 +#: b5aa5307ca2a499daae3180e2c565713 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:37 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:31 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:28 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:56 +#: 66bd52e02f594816b9a3876ee0003e20 +#: 14c5970e926b4bdba9cf225c428573be +#: 869c57acda054a9fb03fecf5f287fb71 +#: fd1c3bc9a4de445c9358b27bd7301c75 +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:6 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:52 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:46 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:48 +#: ../../../discord/message.py:docstring of discord.message.Message.edit:60 +#: 332dbf07fc3c4518af8fb62bff79dcac +#: 12c60e70af4046e8ba10b2e84f4f0bb3 +#: 67b05d01e4534778912bcc2bc182d711 +#: 3c096f547fea4471a93f76950f3b2bc4 +#: 1228bf839dd24f82861433ea3a5e81eb +msgid "Editing the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:61 +#: 8f9e1ea8a2e340cd84961e1002372225 +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:62 +#: d13f7e34dd204807a23d8f242e6cfd40 +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.edit:64 +#: 7810feb6286743e1815a8c05a3a7c021 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:3 +#: 963e6ad32ed64ea3866c7c9c5d8c9dff +msgid "Publishes this message to your announcement channel." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:5 +#: b79c0f15372a43f784dc744bcc092094 +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:7 +#: 0753a753405c425fbb76674fcddf3c26 +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:10 +#: f6019d9837ad4cc2ba2a8577c019a50d +msgid "You do not have the proper permissions to publish this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.publish:11 +#: 3250bbcd5c12424d887a0f63f25245af +msgid "Publishing the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:3 +#: 5a1324914dc7460d865a7533dbe183bc +msgid "Pins the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:5 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:5 +#: 26202505ba6947e586039e2c754bf8ae +#: 63843b42e1924b479832a6a8a7e48618 +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:9 +#: 7847b26da73f44e1838c342d6466391a +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:9 +#: 3a1b5b438c584983b6f4325d989fd5ab +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:14 +#: 67f7fac70faa4d079104ff9431a16bd6 +msgid "You do not have permissions to pin the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:15 +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:15 +#: 4533dbcb39de41998e7511a51a37bb11 +#: 0d21afec7d6044b798fba0b60322f7a2 +msgid "The message or channel was not found or deleted." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.pin:16 +#: 07a60251003047b4ba481745ac32e138 +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:3 +#: 2b5c4c9d2422472ab042fc1afdf24b9a +msgid "Unpins the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:9 +#: db7044deecb0488889c0dfb4903060fe +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:9 +#: 55b0db066a994507b071a381697cb7c9 +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:14 +#: 133f2ff9453e480f8c6e7d6262afa326 +msgid "You do not have permissions to unpin the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.unpin:16 +#: a9aec70f724a485e8dcf19b74bd2fdd3 +msgid "Unpinning the message failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:3 +#: db5902f5e8834ed1b202b00edd1b0fa1 +msgid "Add a reaction to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:5 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:5 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:5 +#: 1aa5ee02625744fb8125add13b1e3df3 +#: bd657fd6ab1340feb3c8e0ed695a8135 +#: d66a572a4fa74e52addeaad952d58e89 +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:7 +#: 0664e6f74ec5451ab9265738e4ebaa40 +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:12 +#: 6ed9eed730bf47b3b9f83a2ce7028148 +msgid "The emoji to react with." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:15 +#: cce1f1518b1f4c9883a53cb3927da79a +msgid "Adding the reaction failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:16 +#: 65ce388e1f284767a1e0cba3ce4e79a6 +msgid "You do not have the proper permissions to react to the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:17 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:17 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:13 +#: 2ffd54e393ab406ea54fc4e98a266593 +#: 8dd42a82528e498f8b2686102872ac6f +#: b88c13ed83e5418a9170adff1a0e3523 +msgid "The emoji you specified was not found." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:18 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:18 +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:23 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:14 +#: 422c7b0521e54a28afe1e65e6a49e3ec +#: 0505095b173e48159d4b6dcc1f0f7cd3 +#: 3c7d18a165c749cda738792a0312f453 +#: 09176183d3c048e581fe6e2b9983e4bd +msgid "The emoji parameter is invalid." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:3 +#: eb47bea041e84503880cbe32bd2eda61 +msgid "Remove a reaction by the member from the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:7 +#: 5ec65487191e427e87384de3b9fbcf36 +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:10 +#: f378e96813ce4f299c457ebd9601de1a +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:14 +#: ae8c48c041ac4b45b9ad7077617146ff +msgid "The emoji to remove." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:17 +#: f659d999d16d4416bea4ca7796135f67 +msgid "The member for which to remove the reaction." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:20 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:15 +#: 9941fe595096404386307faed343ca19 +#: 662ed5086e76494795de8ea9d5bca33f +msgid "Removing the reaction failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:21 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:16 +#: e41740887bbf483fb11ce6d383c6c9ab +#: 7f2bc964d6354e959e7a3a4c5cb754c2 +msgid "You do not have the proper permissions to remove the reaction." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.remove_reaction:22 +#: ebb24f101b3a4f38bfec6edcd473c2e2 +msgid "The member or emoji you specified was not found." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:3 +#: 7fc2eaf92eaf4373ad753b449a33caa1 +msgid "Clears a specific reaction from the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:7 +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:5 +#: b31e5a12186248189a19328b932b85ff +#: 4ca4c4f14828485bbc6d2656a2bfce2a +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:12 +#: 548ef981414b4d49b0e7b676a0ba9e8f +msgid "The emoji to clear." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:15 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:11 +#: e8b551eb942b41679802a74c35e331c1 +#: 2233857fffb7482cb227cf18ee71a104 +msgid "Clearing the reaction failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reaction:16 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:12 +#: 2c0573085ea84c958bc40240ec04a71a +#: 02e12cad95884ce09602f895440c1f7c +msgid "You do not have the proper permissions to clear the reaction." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:3 +#: 0a40adeb44d5439a950b26edbdd378d9 +msgid "Removes all the reactions from the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:7 +#: 80ff4108cd8942f48f27098fcf3dbfba +msgid "Removing the reactions failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.clear_reactions:8 +#: 612b122606c349a39130881cbbebd531 +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:3 +#: defabf462bcb4c59a3f42586f4c6fdcf +msgid "Creates a public thread from this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:5 +#: e88a011da86341b78f27a8424f89819f +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:8 +#: d5ce5953554646d39d00cc9b39f2b240 +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:11 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:11 +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:13 +#: b76d73bb2eec453fa791730f2896373e +#: c412555942314e6abb96db9bca6ed6c0 +#: af9f4efb3cf14d1db6c8db8eb7c51ead +msgid "The name of the thread." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:53 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:19 +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:16 +#: d4ed5bbfc3cd43088a3b6e8715f45654 +#: 30e22d15e90d4423afb572096bc361de +#: 33c111a27179455d92bd62b9292c9d2f +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:20 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:30 +#: 8e3b3a9d19ac4812927782e4fa09edfe +#: 181f2f80fc1c44fd9bed109ac89f141e +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:24 +#: 926796b3230345a3843522da29c30bb8 +msgid "The created thread." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:25 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.archive:10 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.unarchive:6 +#: f5280afb2c934a6ea25391480ed57a0e +#: 9f646bb40e254fe0b597541bce565ff5 +#: 6bd1a154b1914d709feda6fb132689ad +msgid ":class:`.Thread`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:70 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:42 +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:27 +#: ac637d19fb1d403d95c9d2561056cdc5 +#: 1edc4b26a7b14e7ebc76ed185b7258dd +#: 95bda186577a43a68fa0721c150c56a9 +msgid "You do not have permissions to create a thread." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:28 +#: 0fe9251d141d41ffa3f62b42ca7fb130 +msgid "Creating the thread failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.create_thread:29 +#: f428c849be8f4e07aaf5ed090b6216de +msgid "This message does not have guild info attached." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:3 +#: fbd67ff4c215400ea4a271748c5dc77c +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:9 +#: 8fb0c77645f547c6872c4b243378a15d +msgid ":class:`.Message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.reply:13 +#: 407cc6ed96864a86a0c521ed428b7511 +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.end_poll:3 +#: 3dafec6926db4c4d81092ac287d3d107 +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.end_poll:7 +#: 4a3dc6d67ed745eb97c46bc2b0126c04 +msgid "The updated message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.end_poll:8 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:54 +#: 301847af28674e3fa66b98a999ad3a24 +#: c6245cc6405d4d10a83d87b23ebb1501 +msgid ":class:`Message`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.end_poll:10 +#: c3d9fa4ad2024a41b78d90e1ab3ecd18 +msgid "You do not have permissions to end this poll." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.end_poll:11 +#: 4c4e783c9fed479e9d3f508871e459d1 +msgid "Ending this poll failed." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:1 +#: dd4d2e31e18f48c893bb52c2705c78ab +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:6 +#: 86483833c0624de19d40b49b553e42d5 +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:6 +#: c506ff24bf594020a7e0c82912c8d828 +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:12 +#: 8a8ab09da0a9465bb681ee6462a156b6 +msgid "The reference to this message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:13 +#: f06595a3a15743dcbeae344ccd5daf42 +msgid ":class:`~discord.MessageReference`" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.DeletedReferencedMessage:1 +#: 463786c736924e608ec8378a080aaa31 +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.DeletedReferencedMessage:4 +#: 05f414ff3d5f40a99da782fcff12356a +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.DeletedReferencedMessage.id:1 +#: b91f6f228ec34d6e84926a07cb3d5529 +msgid "The message ID of the deleted referenced message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.DeletedReferencedMessage.channel_id:1 +#: 5b18fda51f044f26a474b5006c9e19f3 +msgid "The channel ID of the deleted referenced message." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.DeletedReferencedMessage.guild_id:1 +#: f98421f4146f431d805b01b7566a2e35 +msgid "The guild ID of the deleted referenced message." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:1 +#: 443e4a7e83794c9ca6b03288c36bc0db +msgid "Represents a reaction to a message." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:3 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:3 +#: 6b17d7197c824dbf9b1b9f5555dda822 +#: 60bb87648d9040c3bdc1881005a683a5 +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:10 +#: f040ad6d3ba445bf806d65e991a4adb5 +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:16 +#: 8aa833a603ae439ab7e49c83c19b4e35 +msgid "Checks if two reactions are not equal." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:20 +#: 33e424db11bb4c59a3cd27e734ff36fd +msgid "Returns the reaction's hash." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:24 +#: 14eaf906b99446a2934f19940182a54f +msgid "Returns the string form of the reaction's emoji." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:28 +#: 49a6023ce4184bde8d8392dce854c7b5 +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:30 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:21 +#: d0fdab02f7ff4c81b105f060099ea6dd +#: 4bde8fe9c1b843e1ac8e64327c6fa644 +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:34 +#: 2c4aa0d7cbbb4f988a1a6fc2f1c7f688 +msgid "The combined total of normal and super reactions for this emoji." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:40 +#: e57d310799d741d7bc0252178f43d114 +msgid "If the user sent this as a normal reaction." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:46 +#: cc47d47b4dd9496ab72a4c8d4164fb31 +msgid "If the user sent this as a super reaction." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:52 +#: e4ed4b4cd1854fd792b439e7a511e825 +msgid "Message this reaction is for." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:54 +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:58 +#: 5190e5726035489ba22258b7e607d443 +#: d9ad7a2be3b24ac686dda32d9c316fc8 +msgid "Whether this reaction is a burst (super) reaction." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:1 +#: 0958e07a78ed4d869f34ae625b3e196f +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:3 +#: 1f04234398f743a595187130048adfed +msgid "The ``after`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:7 +#: f56abc2327e64340bb04db78a26912a0 +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:12 +#: 380084668e484c1fa2c2a29a0770cb29 +msgid "For pagination, reactions are sorted by member." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:15 +#: bc8530e934df4b92844df9fc397447a6 +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:18 +#: 2283d254fc64459f8958cd07bc7a1df1 +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:23 +#: 5a9b3c83c2c04f2d91cce4856581eee4 +msgid "Getting the users for the reaction failed." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:24 +#: abcff3aaba8c4326aba0f10be153dcdf +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.users:41 +#: 2b042430e8bf4ac69ad5fa232c94b85c +msgid "Getting super reactors: ::" +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.Reaction.burst_colors:1 +#: ../../../discord/reaction.py:docstring of discord.Reaction.burst_colours:1 +#: 859ad1f6d6fe4419a6e0d7429d714a1c +#: 0fc3e29d13884d05af4fd7829184073f +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.Reaction.burst_colours:3 +#: 9ea3273d46664bcabfaf997faf75903a +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.Reaction.burst_colors:3 +#: 4b1e6455f99b4cb48761829e9947ae34 +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.Reaction.count_details:1 +#: 8020928c7c884030a43d1f1e88be1f12 +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.is_custom_emoji:1 +#: 4fedf8fd7cf14f929d4e43b0dc7ea4a9 +msgid "If this is a custom emoji." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:3 +#: 80a1041811c44091b60360414c3f34d4 +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:5 +#: 67cc8cd0b18a45748f81dbbd084e6c34 +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:8 +#: e1a7b4b270994c6bac90d3e34c58a439 +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:12 +#: 480798e124144fd88c458233e8cae802 +msgid "The user or member from which to remove the reaction." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.remove:17 +#: 9ed3319b3f8f4b26b59fec846526fc76 +msgid "The user you specified, or the reaction's message was not found." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:3 +#: a9b348caee0b4fbf8f25c7fed3fbe950 +msgid "Clears this reaction from the message." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.Reaction.clear:5 +#: b8aa893b08e947e6ac97e260e4875972 +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.ReactionCountDetails:1 +#: 27e3ca8007f24a42a899c8fc86d444c9 +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.ReactionCountDetails:5 +#: 6ee28a4591c342499c80e1beabd65020 +msgid "The number of normal reactions for this emoji." +msgstr "" + +#: ../../../discord/reaction.py:docstring of discord.reaction.ReactionCountDetails:11 +#: 79fcfd62a81b475ea5ccb85337642bac +msgid "The number of super reactions for this emoji." +msgstr "" + +#: ../../api/models.rst:105 +#: 438fa97418ac42c086378f5f6cd9cbb5 +msgid "Monetization" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:1 +#: 0912f7894a974f38b5c491381fb703de +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:7 +#: 18fe6a743d8a4bb3b829f258f8d7533a +msgid "The SKU's ID." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:13 +#: c922fe84c9444e08b6923dd77e3e47c4 +msgid "The type of SKU." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:15 +#: 7eb21e004f3f4df98cc31e4e8d127d3a +msgid ":class:`SKUType`" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:19 +#: 50cef2d53ee946559047ecd0176caf96 +msgid "The ID of the application this SKU belongs to." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:25 +#: 316a83431191428293c26edf082f08bc +msgid "The name of the SKU." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:31 +#: d2a15e893ab040709adc7ecc9d98c68d +msgid "The SKU's slug." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:37 +#: 9ecda8e413964917aa9d81547e5061b7 +msgid "The SKU's flags." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:39 +#: 064c9c1e49414b42b274509ac23e53bf +msgid ":class:`SKUFlags`" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.SKU.url:1 +#: 167b1d199a94472395eeb277b09342b4 +msgid "Returns the URL for the SKU." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:1 +#: f90050e635304cceb060faed27c18428 +msgid "Represents a Discord entitlement." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:7 +#: 474393e263ed49ceadcdb9df979b1e80 +msgid "The entitlement's ID." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:13 +#: e22b12906d11423b92816daccc7bbee6 +msgid "The ID of the SKU this entitlement is for." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:19 +#: fcc6d115692f4a39ad0cd1665c40aded +msgid "The ID of the application this entitlement belongs to." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:25 +#: 390ffbbcdbea4754bbbd4fa8dc55c4a1 +msgid "The ID of the user that owns this entitlement." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:27 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:57 +#: 6cb0d709a1ce4db0ac68dcdb6166f2fc +#: eb3c7861a13a491ea908638d3b775c62 +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:31 +#: 6127f165c1f342a69f6e0693dc75a9f9 +msgid "The type of entitlement." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:33 +#: 7d438bff37c749b3950ffe589d702f9f +msgid ":class:`EntitlementType`" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:37 +#: eeed4145d06f42de87ad7d9fa099ee64 +msgid "Whether the entitlement has been deleted." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:43 +#: e426dda4c7484e6c94320a0b89169497 +msgid "When the entitlement starts." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:45 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:51 +#: c2010b24b8dd4c6d88d0ecd78719e628 +#: 7d2c5e5d21084616a225b5b35ea056dc +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:49 +#: 455f169162d3445d83c04197602e6bac +msgid "When the entitlement expires." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:55 +#: a8a68a11ea664400b47e3c47bb207c13 +msgid "The ID of the guild that owns this entitlement." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:61 +#: 75e64b3cc68246fd9a86531d95c85d6e +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:3 +#: 7007221d52574f1ab5ad1b0a27d15876 +msgid "Consumes this entitlement." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:5 +#: 48fb2081fef249e38e28e7ff56356232 +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:7 +#: 1a95e9e2ea00431a8d3081cad5c245c4 +msgid "The entitlement is not consumable." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:8 +#: fb894fb00daa46e8b8dae1d812d0c7b9 +msgid "Consuming the entitlement failed." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.delete:3 +#: 3c25dcfd92364bf79c3674ab64f0c7b6 +msgid "Deletes a test entitlement." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.delete:5 +#: 8fa876c4cba046589d6be6c002dc5805 +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.delete:7 +#: 03034a25ec2842b49ff30db4103d47ab +msgid "Deleting the entitlement failed." +msgstr "" + +#: ../../api/models.rst:118 +#: e844acaaa52845ed85e5fd6814cb0f53 +msgid "Guild" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:1 +#: db1ab6b381fe4cf2a74999dd87bf4c66 +msgid "Represents a Discord guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:3 +#: 6ea24a3ae2eb4c84acbdea570bb61225 +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:9 +#: 366cf975af114c628f6c2dd3dc509e36 +msgid "Checks if two guilds are equal." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:13 +#: 229df8b397124f35ba0f02f760cbca31 +msgid "Checks if two guilds are not equal." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:17 +#: 9b50dcd790d04b489c01c87670b2a5c0 +msgid "Returns the guild's hash." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:21 +#: 1cbf5b02d7d348cc9ad53a509759f84a +msgid "Returns the guild's name." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:25 +#: 1a8044c512e34298a1e621c2018506b5 +msgid "The guild name." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:31 +#: a49865a6df284e17adeb5f445d3524ff +msgid "All emojis that the guild owns." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:33 +#: 258a28d33dbe4186945587d0e306c05b +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:37 +#: 93bac270df3c4e049e8b16b766fedea4 +msgid "All stickers that the guild owns." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:41 +#: 0887294ac6c94174b7099a5f75c5a4f7 +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:45 +#: b43540d7ae864f39ab06e51116f8b67b +msgid "The timeout to get sent to the AFK channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:51 +#: 8616d231b75a4b68b9d00fb946e6be36 +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:53 +#: 4c522f09862f4ca68745afa6fe5084b0 +msgid "Optional[:class:`VoiceChannel`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:57 +#: ../../../discord/widget.py:docstring of discord.widget.Widget:19 +#: 0ea13064f858406d9a644970bab4738b +#: 882f2ffccbb54152b08a3a1c84128add +msgid "The guild's ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:63 +#: c9538b5448934b30b766e0ae1d32918d +msgid "Indicates if the guild invites are disabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:69 +#: 5e161c99d2614533a657fd69b38162ef +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:75 +#: 678f43ad19ba4c61a33ce8f109f66203 +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:79 +#: e375ccafce024828b9792faeb45f8a70 +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:85 +#: bc2aad77e90e4ef89efa55be5b4b3c0c +msgid "The maximum amount of presences for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:91 +#: 21f9958ddf3f47d88ffa435fa73d3e75 +msgid "The maximum amount of members for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:95 +#: 30217731df6d4b218c05a58ba6c68105 +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:101 +#: 40324476aaaa4b58ae2b3e97fc7595d9 +msgid "The maximum amount of users in a video channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:109 +#: 7621b825fc6848199afd96d57cdb3c46 +msgid "The guild's description." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:115 +#: afd0570ec40e46bf9dd1d40f2894791b +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:123 +#: 058f5112199e488192d7833ff52a640b +msgid "The guild's verification level." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:125 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:40 +#: fc441b8a398a45528430a0b152144c74 +#: 30f9afd8d244416dbcacd423e52553d9 +msgid ":class:`VerificationLevel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:129 +#: f5dde26f539a4a519dfd9d17d13e77dd +msgid "The guild's explicit content filter." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:131 +#: 8eabd9ce697640f598d06c0958ad8883 +msgid ":class:`ContentFilter`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:135 +#: fb017f4588244305b97543cecc6f7327 +msgid "The guild's notification settings." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:137 +#: 7697e3149f17414f9cd6205716954255 +msgid ":class:`NotificationLevel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:141 +#: 96094a79a794453ca947a68e85a7ac9d +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:29 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:38 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:52 +#: ../../../discord/guild.py:docstring of discord.guild.Guild:145 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:46 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:53 +#: 1062d87a1499437b8d0fad52243a2c42 +#: 402fe8591df646adab6f23b2f9d9081b +#: 19ad51b345af4df49ee08b6b7dea9868 +#: cfce9c7844724f2b8b92ec746f486b11 +#: a4384e9ef03b4e43b8915d6c210fd8fd +#: ef560abc33de4a39aa9a24ccf333125b +msgid "List[:class:`str`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:149 +#: 2c052457608241eba3b00da2a2a12fde +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:156 +#: 7c4970cbb42d464999f7d038ad54c407 +msgid "The number of \"boosts\" this guild currently has." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:162 +#: b13ceeec9b754f61ae4851568efe13d3 +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:170 +#: 450c59c978d0455da13ab5e457f9d5bb +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:177 +#: 512295e7ee00418eb57569f797cf38bd +msgid "The guild's NSFW level." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:181 +#: cb80e8016d41430cabcaa25c939547ec +msgid ":class:`NSFWLevel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:185 +#: 4fd548acdbe942b6991c79437ea7f900 +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild:194 +#: 6482522942c045cfaf1b031b70eb826a +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:1 +#: 0120dd3a92464615b401de79efb6e0d9 +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:6 +#: fb2df2dda5d44726afe47364f6c07cc3 +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:13 +#: 23c7ea33859848df952ea7e2cf3208d6 +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:17 +#: af75813c15d24e61b162b7b6c73903e0 +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:22 +#: ce79475da5b3429490204a963d62eb31 +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.chunk:14 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:24 +#: 9cb64e499c0f479382a5ec14961861e2 +#: 31b960ea95b743da9185fea00ff094d8 +msgid "The members intent is not enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:25 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:19 +#: 077d9bc4af6441c6a5ed391c7ac1e1d2 +#: 5641b671700a4bf3b21a2239f64e9cd8 +msgid "Getting the members failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:26 +#: 3fe2216ce94246bda3794d4c16683ddd +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:41 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:35 +#: 081c6429caa04e0a8c5e5dbf3e7662c7 +#: 4c5a13c5676c44cc86de248b93dd8baa +msgid "Flattening into a list ::" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:1 +#: ae8d71971791441db70367c5a6d14451 +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:3 +#: 888f32c854a1461e9e8a19497ea6576e +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:5 +#: 2c14687569f44565a2b9669476dcb351 +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:9 +#: fb2eba26c34c411ca8bbe737728d0a39 +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:12 +#: 5cf3fb6971b44875b110b8bf4e68ed39 +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:17 +#: a3d821e0288a4f5c8eeac00a68f740d9 +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:22 +#: 6cd1626aa86e49e383b0cd2cd3538dd9 +msgid "The moderator to filter entries from." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:25 +#: 14e26f608aa6430a92c507d3647cb792 +msgid "The action to filter with." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:28 +#: 509ca146023a4b0b8f0d92909152f46d +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:30 +#: f6f6cae23df840329202e2ff1533930a +msgid "You are not allowed to fetch audit logs" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:31 +#: 853d3de6365f4416975a212373d7fc6a +msgid "An error occurred while fetching the audit logs." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:32 +#: 71a9a557b42348ec8e3746a3f51ea658 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:36 +#: cc8f18ece4004b4e8d0bdadbebccf25f +msgid "Getting the first 100 entries: ::" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:41 +#: 99f720978c984a339eba44173d6a39c1 +msgid "Getting entries for a specific action: ::" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.audit_logs:46 +#: cc73d866480b4b3db62be86a652f10b9 +msgid "Getting entries made by a specific user: ::" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.channels:1 +#: 6ce1830b26764a30a5e526eeaa23b59f +msgid "A list of channels that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.threads:1 +#: 2d77e18619ef45009234869221d9121c +msgid "A list of threads that you have permission to view." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.jump_url:1 +#: 40d9ed8c7b2a49a89fdb8479d6c0cacc +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.large:1 +#: 3d4d9b02116d4da4ad340477b0e48753 +msgid "Indicates if the guild is a 'large' guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.large:3 +#: b9a7a645115c4ce48b106b7a1a01a40e +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.voice_channels:1 +#: a6d6d0cf319d424fb1c0ca09689b9157 +msgid "A list of voice channels that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.categories:3 +#: ../../../discord/guild.py:docstring of discord.Guild.forum_channels:5 +#: ../../../discord/guild.py:docstring of discord.Guild.stage_channels:5 +#: ../../../discord/guild.py:docstring of discord.Guild.text_channels:3 +#: ../../../discord/guild.py:docstring of discord.Guild.voice_channels:3 +#: f180923c6bfe4725a27df0027fcc0aab +#: 8cd16538342347349db85c45c4048567 +#: 3b767c7eca7b4c108c0b8a1ec2392e54 +#: 373e876152f148038089f956a932f20c +#: 92654e54cec845f2b651b5237c632afb +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.stage_channels:1 +#: bbbf7717cf1e4bc3bb698d09ffc8a345 +msgid "A list of stage channels that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.forum_channels:1 +#: f7ef4b1006854a04a171bc2e321489b6 +msgid "A list of forum channels that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.me:1 +#: 5aba6d2a00dd4aa4818d5f17ba085874 +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.voice_client:1 +#: b6776b60c00e49bab33fedb2af1df73f +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.text_channels:1 +#: 2cd56f1919f54ac8a3d8634aa1ae7a60 +msgid "A list of text channels that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.categories:1 +#: 22b43fc194e344c08456c90f8ccc357c +msgid "A list of categories that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.by_category:1 +#: 5d91fd36b588460390754e6fd167d425 +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.by_category:3 +#: e8278239d98d46b1a52f50039ea88c4a +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.by_category:5 +#: 5abcb3095e764520976db20ad48da11a +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.by_category:8 +#: 4fbcb98503744d30b86ce12cbe73a634 +msgid "The categories and their associated channels." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.by_category:9 +#: cda56a62a87d49d48faaadbf7c0763b5 +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel_or_thread:1 +#: 3cf03eac3bf54951a9d1b63afa4fad2f +msgid "Returns a channel or thread with the given ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_thread:6 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel_or_thread:6 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member:4 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_role:4 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_scheduled_event:4 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_stage_instance:6 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_thread:6 +#: ../../../discord/member.py:docstring of discord.member.Member.get_role:6 +#: 3a1180e1deb44b6a8374aee179bde960 +#: 9b4160356f9649e1a8abcfdaf94ea03a +#: b9a5cb9dcc2a445e84a4df4707c5497a +#: 8e5457f352a34ed48d5a54f0cc4bd840 +#: 4f51145163c24784940599506be8b039 +#: 56c6c525daa045cca9d6990eb2a7785c +#: 6fb31e7daaac48ecb8ae0f2ad021074f +#: 452389fba28449f28392dff61f99b1da +#: ad097eb547694053b6243a41ec0e53f6 +#: e6c0593064824cf7bb117782969108b7 +msgid "The ID to search for." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel_or_thread:9 +#: 73cc5f097e0047fdaafa76a89e0d26f6 +msgid "The returned channel or thread or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel_or_thread:10 +#: 77fc52a6e5c84cbf9bc3c58a7a94bd18 +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel:1 +#: 7c63100096a24c67ba8c3fa77d186380 +msgid "Returns a channel with the given ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel:5 +#: aa4d6cd6520845c5b47ba50e98855219 +msgid "This does *not* search for threads." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel:11 +#: ff8cc3b719644dccb57c090f5d814d48 +msgid "The returned channel or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_channel:12 +#: 99732313fb2b45068a8b7f1756b51876 +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_thread:1 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_thread:1 +#: 6756f4807ebc43bb9fcd4ade90cb9a0c +#: 063021b717da4ac1bbe2b9d24f4e77a8 +#: 266cc6b962d249a49ac1c0282070f242 +msgid "Returns a thread with the given ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.get_thread:9 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_thread:9 +#: 0b52a378783845b9a553efe578dab819 +#: 2b49c4d121db43b194ffa1bfff78a702 +#: c8070d4961ab4090a337a0368ecb5b70 +msgid "The returned thread or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.system_channel:1 +#: c3e97d65cd5d406e9b8fe6c3548cb16d +msgid "Returns the guild's channel used for system messages." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.public_updates_channel:5 +#: ../../../discord/guild.py:docstring of discord.Guild.rules_channel:4 +#: ../../../discord/guild.py:docstring of discord.Guild.system_channel:3 +#: 9e3d2735e47a433f876420b2db8a5da2 +#: a64c2c61a8224e0bb4226e11ef4994a6 +#: 2ae6c126f58341fc988bfa1804274039 +msgid "If no channel is set, then this returns ``None``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.system_channel_flags:1 +#: 42fb2ad7ac984b2fb420d833affbecaf +msgid "Returns the guild's system channel settings." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.rules_channel:1 +#: 79cdc8efcf314c76ad5285ef3ac7d66d +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.public_updates_channel:1 +#: 4cdbc6c8e74f4434b7b96631dd4e8ac0 +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.emoji_limit:1 +#: 87332d6da80941448cf805bef2040e2f +msgid "The maximum number of emoji slots this guild has." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.sticker_limit:1 +#: 87fb8a5cd4a64448920bc860483db18a +msgid "The maximum number of sticker slots this guild has." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.bitrate_limit:1 +#: 382f34f464964f41b660ca62580be5b0 +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.filesize_limit:1 +#: 50b9637ed32944ce8d4d032493bd94af +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.members:1 +#: c1634d0bf11144208238d3422e50572f +msgid "A list of members that belong to this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member:1 +#: 9e1bfb5c6d3c429fbad485e4e0911755 +msgid "Returns a member with the given ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member:7 +#: 11899c35315748e0af61b02ca2c67e7b +msgid "The member or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:21 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:47 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:40 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:33 +#: ea5ce4db5209427392e12d73651f271b +#: e66d8f3d8faf4bf1b19074324f7b4f06 +#: 3dd36482d6584e0caa30ff04b7f88ac2 +#: 934b43fbec684ae0b88e0cd0822cd8de +#: 388129a7867c4f7493b7da702929885e +msgid "Optional[:class:`Member`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.premium_subscribers:1 +#: 9620482fa56a459eabd21941ab8d6849 +msgid "A list of members who have \"boosted\" this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.roles:1 +#: bf330cfe91ee46c49b95aea56ab062a4 +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.roles:3 +#: 0377dec4d9d0431b87fefbf7989a745b +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_role:1 +#: 8f5df98b969a48cb85026bf9c8d2ed81 +msgid "Returns a role with the given ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_role:7 +#: 75f2adc480a74d009cd6a50616a74db2 +msgid "The role or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_role:8 +#: ../../../discord/member.py:docstring of discord.member.Member.get_role:10 +#: 49faa26614694f83a8a1031e5b037fc0 +#: a59751e769344c159a35d97d289207ab +msgid "Optional[:class:`Role`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.default_role:1 +#: f4fc8210064941dbb8869f5e26c39a3a +msgid "Gets the @everyone role that all members have by default." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.premium_subscriber_role:1 +#: 32b04d6a2dde453fa99673b5d4b6dd65 +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.self_role:1 +#: 281b90db195b429d989343b55c507a32 +msgid "Gets the role associated with this client's user, if any." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.stage_instances:1 +#: c13aa5fc5ca24a538fa770acba338f68 +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_stage_instance:1 +#: fc99eb73f72942eea987ad13cc9e1d81 +msgid "Returns a stage instance with the given ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_stage_instance:9 +#: b6bb1a2527644e4b87b69d5db0262f3b +msgid "The stage instance or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_stage_instance:10 +#: 9a1967e478074ccaa951da219250162b +msgid "Optional[:class:`StageInstance`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.owner:1 +#: ebfa0bfbc6de4d2ab737e25be9da32dd +msgid "The member that owns the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.icon:1 +#: ../../../discord/invite.py:docstring of discord.PartialInviteGuild.icon:1 +#: ../../../discord/webhook/async_.py:docstring of discord.PartialWebhookGuild.icon:1 +#: 9edfce4f13344022a20bc5d74a5618f8 +#: d8382b4b46e949acbd18ad7290999e60 +#: d4a595d7a81c425980c3253113e40bef +msgid "Returns the guild's icon asset, if available." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.banner:1 +#: ../../../discord/invite.py:docstring of discord.PartialInviteGuild.banner:1 +#: 79b98460de4a45918567ea4ed97db67b +#: cdc6de4d93d84126981872de7ddfd9e4 +msgid "Returns the guild's banner asset, if available." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.splash:1 +#: ../../../discord/invite.py:docstring of discord.PartialInviteGuild.splash:1 +#: 1503595c1aad4549a6988e6597add1bd +#: 617b62d85d634607ba8b35af07a4aed2 +msgid "Returns the guild's invite splash asset, if available." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.discovery_splash:1 +#: 277e63e39cce4b76b7a0c9f020c5bd43 +msgid "Returns the guild's discovery splash asset, if available." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.member_count:1 +#: 25aaad6f80ad4572b4f36923fb9f132b +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.member_count:5 +#: b7ccf0f88ffa435688d7e3fe61ba00fa +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.chunked:1 +#: 3a535c2ef8d6481282d9ef9ed786082c +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.chunked:3 +#: 239d55a0fbfd45539a7a3e9b81987630 +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.chunked:6 +#: bfd0b7b89f9d499fb1319f6072489e7f +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.shard_id:1 +#: c834ed32571a45efaf70049924028c84 +msgid "Returns the shard ID for this guild if applicable." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.created_at:1 +#: ../../../discord/invite.py:docstring of discord.PartialInviteGuild.created_at:1 +#: 98a9abb4d99d4af6a1bc90dead64714b +#: 2a63da98f7714298bd86c262529e96fc +msgid "Returns the guild's creation time in UTC." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.invites_disabled:1 +#: 21438da4623b4f089e64f5fd9065d2c8 +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:1 +#: 389668f9993d42cb9e8b13be6aedaa12 +msgid "Returns the first member found that matches the name provided." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:3 +#: 5a17c55789534edba8bf8ff9e15f399e +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:8 +#: d458dfa7d494407a91d3c42d7b71cb21 +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:13 +#: b6257865a85f4b6680875aa63c4badde +msgid "If no member is found, ``None`` is returned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:16 +#: 1dfe62681b2f48f295a5625f440b6665 +msgid "The name of the member to lookup with an optional discriminator." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_member_named:19 +#: e1562c59250e48369ff2dfd424899106 +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:3 +#: 18d743c07fc04fdca34d8ecf8c42d49c +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:5 +#: d15d11b0f7884cfa9ce8b8e10b0f0081 +#: 7ccbcfbc7c0245ebaf80c63fa46ca066 +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:8 +#: 0826bc86fc6844d7bd523a337d246ef2 +#: 59dc80266fe441d8a613d4b177b2519c +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:15 +#: cd41b65a000942078be736927f9af9cf +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:6 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:29 +#: baa4ae0af73d42ccbd4f2ab5592b2b5b +#: f04ba645478941639f2375ddc8661948 +#: 1609f6ef955b46daa8feab89aed3f130 +#: 436aeddd681b4340bb158dac6a294899 +#: 3caddaa8be9748a0b5c7e2b6d20702cd +msgid "The channel's name." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:23 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:14 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:23 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:9 +#: d061fcc33b574ffba76bef2a087460c8 +#: e755d7a964c3468b8f7905f13a5ce264 +#: 0c2adeba36d84af9aeff4fd8ffa5d7a7 +#: 3790b49ca326407bacd99677d85e7ca1 +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:26 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:17 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:26 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:12 +#: d1087d9122e94791b0aa20790b0e668a +#: 1edd8ba28a214a2689b68c958b267c2f +#: 6f4ba6a61d134a19a4351fe041cd967f +#: 9d06515f3f7641b09dbaf639bb7e6587 +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:31 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:22 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:31 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:17 +#: 0848ff8e94324c9db997de2a3c123e40 +#: c9a5417638814f06a3b018b6aa0838d6 +#: ccdf540d4f874713bd55b15253bc98d8 +#: 53e9a8d1ef7c486db9167ae9c78bb56c +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:10 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:19 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:35 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:11 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:35 +#: b12af80947024bd196b707459a1c7ab1 +#: b2201c903bb4444c92177c8cff398d07 +#: 2bc1d86a3c9d4ed2bcdcafe7083bdbca +#: 445e7ca3ca40409399381cc3fa66c395 +#: 7d4789fa9b90471c907c2d269e15857f +msgid "The new channel's topic." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:38 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:38 +#: 9e9dd9425b054fcfb714c7318b17daaa +#: 04bb9a8b4c6a47a8ab232c8d41007089 +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:14 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:23 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:42 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:42 +#: 6e0e5f25fba64a62b1ac7c005cb3c4aa +#: 158f4a82c5184ed186f0c45d5ca5b0d7 +#: 5249f14b4df34180913d70dc0424dff8 +#: 7aee99025e1f4ccd88df1682aed86569 +msgid "To mark the channel as NSFW or not." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:45 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:26 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:45 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:38 +#: 9adb04fec50a471792f88440104c745e +#: c4783994e88f4aeb9f00f605dc7aac4b +#: 2a5da0498eb4468e95bc376c2e663bb2 +#: 017d65bacf3b4bfbbd241ed984235147 +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_forum_channel:7 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_stage_channel:7 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_text_channel:5 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_voice_channel:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:10 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:55 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:29 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:48 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:41 +#: 33ff9c9a82b64c10a83c4add616fdc82 +#: 62cd93ababdf4cfd9cce9f1a801e775d +#: 04c22cfc54c044df8a63b0d3dbd206b3 +#: a47b33dd7e3e423bbc5cb05c12895fc7 +#: 1cd37bb095e24c0cb549434848340622 +#: fde12a59435846c39cb0f10c1e144e14 +#: 10f333753a3f485ab9e166f5fa769198 +#: aece983089a442cfa1ece6b543102f75 +#: 5b371e662fb1414e8f2ddcb4aef68646 +#: 4780413f494c461bbfbfc1810d800fff +msgid "The channel that was just created." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_text_channel:6 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:49 +#: 8b6a84cc25c349419c31de47c2303d96 +#: 809a9a177767412ea6242641e68be16f +msgid ":class:`TextChannel`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:22 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:22 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:22 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:22 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:13 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:58 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:32 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:51 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:44 +#: 4add16d398aa4f518bf3f72e29c63eb3 +#: f8709c4a529b4bdf9a369a9e4fb45a7e +#: 58e3a614336b400e90a85ec0941087e2 +#: 7e15a4a056c44b6aa411b98f9832c52d +#: c80ea61f690a43b1b33e04f5455833b6 +#: c9655e17e69d47da801e88fca3d16f86 +#: 0114eb9f7deb4dadaa52b41a0ecda85d +#: 7d7d319d153e4821bc6e1fc8cdce4d9d +#: 848c12271a1643379966640c7c0fcd81 +#: a09d6c3b0ebd4ea1b1888cec3edddb43 +#: 18458c9704b94fb29bfc43f3b54e5e48 +msgid "You do not have the proper permissions to create this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:23 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:23 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:23 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:23 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:14 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:59 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:33 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:52 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:45 +#: c9330770911546dd87b510a3ebe4cb6e +#: e3fbf7d8bf344cd0b81613c462bf5066 +#: 45065f4fa65d4bd8baf39aa0a4aae98e +#: ff2795e7198d4a86b02989a21cf39afa +#: 6000a8b302d348b6bcc347bfd2d4a1ca +#: abfcf22ceae94b8ba266c29a2fa8ba6c +#: a152e92313ea4bb89cecd1b6400cdbc6 +#: d54113a11a1b4111bda9d01a425d3ed5 +#: 38b186b5d13d49e295e465c8de51c7dc +#: 63ebe328986c4490b56bfa7ec7243aef +#: ae242a4ed51e4c93ab464e401ce82dd8 +msgid "Creating the channel failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:15 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:34 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:53 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:46 +#: 0b663ebdee664572bfd1ee200898c6c4 +#: 7bf63611242a4cdc9df3378f7c4b7143 +#: 353e85d3c97d4d3f976c9a308e8dcd37 +#: 83ae3be9003e4fc1af548a97fff9850d +#: 18e2b63aff2d4d938974528b742d4c88 +msgid "The permission overwrite information is not in proper form." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:64 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:57 +#: 7df77a377a454968b06f3a9737d86455 +#: f84b5551f533496385cc0f08cdb31bcf +msgid "Creating a basic channel:" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:70 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_text_channel:63 +#: d02100cc73e84244915ea5042b7d93b7 +#: aad25d44f07241feb96ce590433a0d06 +msgid "Creating a \"secret\" channel:" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:3 +#: a7ac1b9755e64488ba4b0ef8ce4dba06 +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:62 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:54 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:21 +#: da6c567358d2457a8328b9419aba1b0c +#: e4a529edf2a7427d9f0d448e950c5a3d +#: f24397075a3342c3b7c10d046e9e75e8 +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:60 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:24 +#: 61e6218add924882b4544d4f65fe3038 +#: b45a714586514aa199c2aa4f8fd70cfc +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:27 +#: 77472c0b87ee4c12919534435862d712 +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:66 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:27 +#: a012c67cbf8c4c758c6232633b5b90b4 +#: ae62841317554b39b2c03b27fb66f7c4 +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:38 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:33 +#: 143d16193a8a48bca8f44b6c8f8b294c +#: 198ebaf4f6584b8abd4208269d8a7f60 +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:75 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:38 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:33 +#: 41726a9352834d8eb39464ddde36de96 +#: f81dfca9eaf142aabf6243ffebb15d3a +#: 66e2e2d2b94741489df64f1c57e3b62b +msgid "The camera video quality for the voice channel's participants." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_voice_channel:6 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_voice_channel:42 +#: c5cb71ee58114ad9a77c365f6c9176be +#: 882663e87fa341189dff841fac58e4ba +msgid ":class:`VoiceChannel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:3 +#: 63e5deabd69a4e71b26eabfb7b24de5d +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_stage_channel:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_stage_channel:30 +#: c125cd5cd18a4cc9bc46d5d9206d57e7 +#: 3682e80e1aff4ac38504209bf3c75b67 +msgid ":class:`StageChannel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:3 +#: c2b2f7d2a8a84fc88f7a5a1071887bf2 +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:15 +#: 6a39c30db0244703b82139035e88f91d +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:48 +#: eb7dfe39426b4d8abafbed2980956151 +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:41 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:48 +#: acba40fd9b99460bb43889ba61c943d4 +#: 674bb951bf6f4615bdd90432ab644f2c +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_forum_channel:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:56 +#: 40f5253a0a994369be22ef233358809c +#: 18dbe7f3736a46b086fab0dc3f51122f +msgid ":class:`ForumChannel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_forum_channel:60 +#: a86092ffb99e4f6d861dfb93fcdd2b28 +msgid "The argument is not in proper form." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:3 +#: 79a4e988b37d4e64afe1d69afb920ca7 +#: 9bdb1e626e5b4c1f9dad1bb9f2df7372 +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:7 +#: 716d3c3986d448ba8bbae24d3a927b3d +#: 9100aed34bd14af28745ceddb65aeb80 +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_category:11 +#: 27c0ba54755f4232854c7bb1e836306b +#: 5f28803b6126460f925f168cd21164cd +msgid ":class:`CategoryChannel`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.leave:3 +#: b1abcb9f0f754be0b71b198a7424036c +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.leave:9 +#: 372e626a7b2c4524bb3ba6cd71060653 +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.leave:12 +#: 1c39e7d936124a0bb40b3516844d893f +msgid "Leaving the guild failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete:3 +#: 6ddfed444a50419fb1453c64936386f2 +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete:6 +#: e59e369114c1423aa81d821f040d9c7f +msgid "Deleting the guild failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete:7 +#: 32c7959e2e0d475aaff8585af43a2269 +msgid "You do not have permissions to delete the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:3 +#: 2a70d99413c1496a8359c704195070fe +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:7 +#: c77287e8b0af409aa38371f49a55b252 +msgid "Whether MFA should be required to perform moderation actions." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:10 +#: fd273e9c1b4d49e0807f3df28ccebf24 +msgid "The reason to show up in the audit log." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.delete:10 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:35 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:35 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:13 +#: ../../../discord/member.py:docstring of discord.member.Member.edit:84 +#: ../../../discord/member.py:docstring of discord.member.Member.request_to_speak:17 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:17 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:17 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.delete:6 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:54 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:17 +#: 6a5a47ad973940209028891e87d59314 +#: 6e383a0f60374e1792867357bb73d27a +#: f6b04db8faf546f3b0389b0b50eefc61 +#: 22f7e66174da4542a96136839247baba +#: 0401bd2a8e2641b4b33a27e26bec88b9 +#: 223e01ea8b5d4754b406f20f8f7b0e46 +#: 8a6430ae96364ac0a723f5b13ce8a53a +#: 845342df7f694a18b74e63bd8283fbf9 +#: a00f0a826b5845d88f7fbf796d37540c +#: 92f8d3e87c8c401088996e1fbc85d62a +#: 1a8f3af8f267400299fc9f8a387399f6 +msgid "The operation failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.set_mfa_required:14 +#: f00beb8bcf8b4e62b56d0ffbd22cfff0 +msgid "You are not the owner of the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:3 +#: 11428f2987084ae8a40f98220ed55984 +msgid "Edits the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:5 +#: 3014c6612676410f8e42c405e062f6b6 +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:8 +#: 83bdf14b43b6420dbc3bb9615f728f89 +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:11 +#: 4cef9bdd20ec471381b60d7e5b638401 +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:14 +#: a056ab336703485491f8ed91c4cd7526 +msgid "The newly updated guild is returned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:18 +#: dd46e3094d2f4ce3882c5849c7f57d9e +msgid "The new name of the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:21 +#: 8a2a5c56f33e4533b97b13d27713e4d5 +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:25 +#: bd982c8dcd424f1d888906966c6520e7 +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:30 +#: 62998ed161f747af97127a6f4b69dea8 +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:35 +#: ae92e8acc94045e7b21be41f9f3e3d51 +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:41 +#: b263908257734e2596e92d68c51e1fe5 +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:47 +#: a353ef800ffd4c0285090d9df4e8e459 +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:51 +#: 222420833b4f41f3a3e29975e1d78035 +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:54 +#: 57955f97485b4a8d99435d0ed84493b4 +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:57 +#: ee57edd89c934f6f8851f745bd657faa +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:61 +#: e00b07f969094865b88d709b4e3b2b73 +msgid "The new verification level for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:64 +#: 58b9d36ce2304eb7ae2a7d248bc3d561 +msgid "The new default notification level for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:67 +#: e848eb60847643f392c41d9933562d1f +msgid "The new explicit content filter for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:70 +#: 9c088bed23924d1299dd212181955017 +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:73 +#: e4e7e720a8eb48a3802a88baea0f0a0a +msgid "The new system channel settings to use with the new system channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:76 +#: e8c42c080f354eb089e1fecd40acd31f +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:80 +#: 9fbd7fff4fd24355935af8d2aae792f1 +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:85 +#: 3242067dfd4e44b78067a933e8675cde +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:90 +#: 387f2c8ecb814ef79b4d196dc73a9991 +msgid "Whether the guild should have premium progress bar enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:93 +#: ab83fdbf1e0e4760b895cdc4cf06ee7e +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:96 +#: 226196ae337f47ba9ed1b2641b83f3df +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:99 +#: f2ec2f8365b0482f88522cb620b9f3c2 +msgid "You do not have permissions to edit the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:100 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:19 +#: 7026e8922b26447f903df8f0411dae38 +#: 3d2005f11a794335a10c47ceb9494569 +msgid "Editing the guild failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:101 +#: ae815105c2f445988a7245f534d3ec20 +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:103 +#: cf020628c49b457ab63b2155e49a9aa1 +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:33 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:31 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:33 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:31 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:31 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:105 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:21 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:21 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:21 +#: ../../../discord/member.py:docstring of discord.member.Member:48 +#: ../../../discord/role.py:docstring of discord.role.Role:53 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:27 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:29 +#: ../../../discord/template.py:docstring of discord.template.Template:52 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:33 +#: 276f56a64f5843658e8be434f64806d5 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: ea6cbd3c38054350ac17481932fbff5f +#: 364f423f0f684fb099ae478b8a6429bc +#: 7478a1f277ce4e0482d0893c77b9ca68 +#: f3649ef8bda3456dad6f372753fc7426 +#: c4359159419e486c875b9757ffeaee76 +#: 8a777bcf2f744a85acb3ac5f6a5b1139 +#: c8014540dceb4113897c72eea0858f35 +#: c8cf7ca3652b4ce59c540276e211f43a +#: 10421526397b4c528a3ef6a2f2b11dcb +#: eb6898fc0e064f5a8531ad044c56c93b +#: 671e8987266d4a279a78c8408c31cad6 +#: b9ef0849d0ea490c99eee73248caf27e +#: be96b25e8b4c4163a94ad92465630dcd +msgid ":class:`Guild`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:3 +#: ec1d25a9867d4249aee938ced8744313 +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:7 +#: a060dfadcca74ce8a74827770f267656 +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:11 +#: 72a6ea47b50d444e8be720b4e9f920b9 +msgid "All channels in the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:12 +#: ff60027791904e2da51e8afb72d19bc6 +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:14 +#: 77c5aece3a47484991744680b8ff1713 +msgid "An unknown channel type was received from Discord." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channels:15 +#: 4e3038da83364fee951438fc677b1bcd +msgid "Retrieving the channels failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.active_threads:3 +#: 08d8e0b261174bf5985026c2d38886bc +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.active_threads:5 +#: 6cdf67c965c0468395de19b1edb81445 +msgid "This includes both private and public threads." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.active_threads:9 +#: 77aa93650f0548b5b5f44e7454c3251a +msgid "The active threads" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.active_threads:10 +#: f1336549afe545e5b63468ec39a2d9a8 +msgid "List[:class:`Thread`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.active_threads:12 +#: 90fc74fa0c694a70aed7f1070b0dcc9a +msgid "The request to get the active threads failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:1 +#: c3a5be09680c4bb4b29c379de1ff3ad5 +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:5 +#: 3a0c12402f8e4f1c9a8df56e6f478ee0 +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:10 +#: 0de4b1e2691e48e18560ab218d588c8c +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:13 +#: 4e654b49af1d473d943ba41ab77a4b3f +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:33 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:16 +#: 92f75e3a49844fddaa6a5089964c0135 +#: accd314ed7a443a092b37ec3dd0d8643 +msgid "The list of members that have matched the query." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:34 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.search_members:17 +#: ../../../discord/widget.py:docstring of discord.widget.Widget:47 +#: 12afd1d7c7e440c880a4b51741d666bd +#: d1bc4b075a1f4d74beb00c7b12f21914 +#: 4ab8c0068b7244b3a7274cfc050aaa1f +msgid "List[:class:`Member`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:3 +#: 34622231a6d44019beafcb50678c74cb +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:7 +#: 9e8f21a714514f38bc975340a5d615d2 +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:11 +#: eaf9c2a41dc3449bad4fa716e05919fe +msgid "The member's ID to fetch from." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:14 +#: c8716867e27c47d199c918ab7f1fd42a +msgid "The member from the member ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:15 +#: a57ef03bb44d468185e9564cdc18a638 +msgid ":class:`Member`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:17 +#: 125f70fac7604877b0bd457d9307c8df +msgid "You do not have access to the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_member:18 +#: 6dea9ef6b41e49789e8679ae2d3c66f3 +msgid "Fetching the member failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:3 +#: 998765fd112f49c7890d221c7b3df54f +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:5 +#: 4d271df745ba4e4d8d75b0690e6c5fec +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:9 +#: 8feaeaab6d0c4bfc83cfdc3dc629cfc0 +msgid "The user to get ban information from." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:12 +#: 61c138eec62643948c4a0a9ef41b24b1 +msgid "The :class:`BanEntry` object for the specified user." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:13 +#: f1265b8b1c3b4065854d6017be37b9a0 +msgid ":class:`BanEntry`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:10 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:30 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:15 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:11 +#: 73cd4a54b33f468fbd6598ae6039b5ad +#: 53af8ec9a63546c58412a8f4710b321d +#: 9c4c94aac34c4e5daa5dec9015f1399e +#: fc14665c6b8c42f7b2021236fbe289a1 +#: 0f2aa7be730a4540a10a2d9b050141ba +#: 0ca3de26f18b4e73a153865828e69951 +#: 61c3c83ebc0d4c1da0e32b6e27e74be6 +#: 64e799b78e6c49db8e8d24691863dcae +msgid "You do not have proper permissions to get the information." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:16 +#: 3f8c6f500b8d4c88b4ddce6ab0a57f7f +msgid "This user is not banned." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:11 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:31 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_ban:17 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:12 +#: e91a22a8592f4d83adfff9b890100c70 +#: a18ed0d4d7704b9ea30fe7d2b8d050b0 +#: dd2d4279f4094eb185c46164537534df +#: f604401cde9a47eeb37838e3eefdad3d +#: 7d89a62d85f842c28fad5db4798a17e6 +#: 0851625a7c194a409c5d5ce5397f0223 +#: 5e60b347a56e4b37a494aae37a6a95a6 +#: 9a30c46316374bdeaf8814565f4d3280 +msgid "An error occurred while fetching the information." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:3 +#: 63c9970013b74eab9035aba0b82c855e +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:7 +#: 80b8d9d092d847b29eea8795f8e6dbc8 +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:11 +#: dd265519b29f40288f55accbe36ad0d2 +msgid "The channel from the ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:12 +#: a964c939aaf04a96ac70d5a8fdd4a8b6 +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:14 +#: 59ba84c18b934ead84f0ba94f9e4e6a2 +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:15 +#: 437ad0ad76014283a02907a34ca01091 +msgid "Retrieving the channel failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:16 +#: 6af31751ceb34a3fa0252e9b345829e1 +msgid "Invalid Channel ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_channel:17 +#: 86d5ca29effe4cb09b8d22c86e77656e +msgid "You do not have permission to fetch this channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:3 +#: 8d1aa24b8df846e198d57a66eaa690bd +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:8 +#: ef722d362274401cadccae1d34099995 +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:12 +#: 7a6783ca6f8d40a9b189fd699aa9ba79 +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:19 +#: e985008dbcff48aca12f0100d929a58b +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:22 +#: c668a0aaaac3483eb31f1d9e8827eab2 +msgid "Retrieve bans before the given user." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:25 +#: f83085d7ced84766af1276c9e2d23b61 +msgid "Retrieve bans after the given user." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:28 +#: 73f3c061a7dc49a6b7a0281cd4ee722a +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:32 +#: 1b254db9f76c48a3a18af4c1aa3d16e4 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:3 +#: 36bd9264268b41bc82369216df6d556e +msgid "Prunes the guild from its inactive members." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:5 +#: 9e184b794e3a48488563772ec896436e +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:8 +#: 5d3ed663a2d247ae941a48d1f7ddf3d7 +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:11 +#: f47e977e4213413095b13e20c8fa36d0 +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:14 +#: 2a76227ee9244bd1be22bcc036548369 +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:16 +#: 05582715c7ee4711947323e84fc4ba60 +msgid "The ``roles`` keyword-only parameter was added." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:20 +#: 0fd3894014d744e3a1de5dc175707f11 +#: a6643b5e6f8548d2adfc203bbb424b8c +msgid "The number of days before counting as inactive." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:53 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:23 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:14 +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:18 +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:11 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:11 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:13 +#: 3224d7c321cc4c78b44b8fc4932f2b89 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 44623dbcda624f08b580ac269a4deb9a +#: 5b5c76b2844f4b539161de9a52a8a2bb +#: 79effb6b67e54758a941a7aa88d44aa4 +#: a1c8888a65d34bcc9919e3c27f33a254 +#: f58fea0e9fce448aa8b677d9ba307fe3 +#: 48812ef2ec494b77ae36032ed550fdc1 +#: 425903bee6a24d7bb13d56ecae0385f4 +#: 4eb2617c7b4f47b1a4702029818bc9be +#: 2df0a16e80b145b5bf34c50bf37e9e97 +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:26 +#: 3f1d1f1bc748436e9ef41a0a4d024fe7 +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:32 +#: 9fe81644274d4411b33f21d867b79cbe +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:36 +#: 5aa6ae18b0af4102b10a032b1b6a7e8f +#: 913056eb50fa459dbf010b7884d25537 +msgid "You do not have permissions to prune members." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:37 +#: 5dc1ca51912b48ebbb7a301e0e5c7be4 +msgid "An error occurred while pruning members." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:22 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:38 +#: 95e8775caf6c4fa98a50493042af3094 +#: 7b88402799514b5cb8b7bbe58831a29e +msgid "An integer was not passed for ``days``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.prune_members:40 +#: f0e830e71ab24714baf086e45202c039 +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.templates:3 +#: 5a96260e347a4b21ad9f5a11e79dca0d +msgid "Gets the list of templates from this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.templates:5 +#: ef25d2947bf74162a067f3be348525dd +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.templates:9 +#: 7d7692d53cee484d8d516a477ded5a56 +msgid "The templates for this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.templates:10 +#: a2964b1b45464c15bdd7949f8b1999c1 +msgid "List[:class:`Template`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.templates:12 +#: 6a48d471dda844de8120ebeb9ac61d4f +msgid "You don't have permissions to get the templates." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.webhooks:3 +#: ed3a05b8d6c8434895efe539f774ddd9 +msgid "Gets the list of webhooks from this guild." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:5 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.webhooks:5 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:5 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.webhooks:5 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:5 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.webhooks:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.webhooks:5 +#: a41a818bb60d4197af2cfa72219eee39 +#: 81f00aa66a804c659436513d84f58331 +#: 540ff63c5002460598ee0be85eb49bba +#: f11b5f63cc9948a58b560f61ff8abe73 +#: ffbbcc35702f472b8c4a8ac7f660abd1 +#: c09ceedbf6b4484c8ef86000a50cb43e +#: 7ef1f26e380f4333918def306c547172 +#: 4fc0d582140642ea8ec764b8d54b1ada +#: 26c381b3cc5c4f1a8c07269c496933ab +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.webhooks:7 +#: 1b4210747893413196486dea81f2d24a +msgid "The webhooks for this guild." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.webhooks:8 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.webhooks:8 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.webhooks:8 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.webhooks:8 +#: 7253240c20004a45b527af391c6c7fae +#: 99e2ef5f06e840b49beef674316afa93 +#: 144f07295e2a42269f911817e96ba2b6 +#: c45431eb5fd849c3b03aa9d6e1f4fafd +#: 1667fbd81bb342e2b02976df10fb1c69 +msgid "List[:class:`Webhook`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.webhooks:10 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.webhooks:10 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.webhooks:10 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.webhooks:10 +#: cfc0d35c673d41278b8b1cd4581fee83 +#: a35aad3bdf6a4eab97d658e6525ce10a +#: 1cdea22818a44de7bf4264590400ccca +#: 8faf44d3948d46aba3bdfd391e543ebd +#: 39d180ec5751453dac7641e95c9870f9 +msgid "You don't have permissions to get the webhooks." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:3 +#: 6ed6691303c4485ebb8803ae67509f8e +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:11 +#: d27a0fa2d9394b858c7ef2054f3127e2 +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:11 +#: 47d3809a6ba642ea9c25fc471b1a07e4 +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:17 +#: 019bb91bee7f46fc8b771b3e5bf99c0f +msgid "The number of members estimated to be pruned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.estimate_pruned_members:21 +#: f46f5a56cae94de9a978505c18e3df19 +msgid "An error occurred while fetching the prune members estimate." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:3 +#: 0970de5aed86413dab17883b99c8afac +msgid "Returns a list of all active instant invites from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:5 +#: e991e4e67c0f4be1ad9b6e7230f98b7c +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:7 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:8 +#: b4eb1b6da60540cd89dedf2329be357a +#: 74f1849dc85b465e874fdcba96c50071 +#: 1b9721886e68405f98240c0c286e5d16 +#: 5486591d428b4a398e10d4934995e670 +#: bebe47ca3918454ba2e47bbd07e5215a +#: 4c44d4722f4848708568385aa3416de2 +msgid "The list of invites that are currently active." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.invites:9 +#: b28e08bf49ff49a7ace96e2b061393ed +msgid "List[:class:`Invite`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_template:3 +#: 615e1f0d0cb7492abcab7502b8f8e9a0 +msgid "Creates a template for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_template:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:5 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:5 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:5 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.sync:5 +#: b248bb63d2404648aa22ca648a5d0ca8 +#: d99eae95a87a4b7f913ecc5a4c7ca6d6 +#: adfb039ef6d545d6aa4a65fee758b611 +#: a582a220595b498096d03893062a9df0 +#: eb382f6ad9bd40cb85f40f95b03db0c4 +#: 93b22c491b4642eebf06dd24e2ff6af9 +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_template:11 +#: ../../../discord/template.py:docstring of discord.template.Template:19 +#: 8a02d4ac608d419788e95d560d214721 +#: 6573de58430a435fb453dcffcad5c318 +msgid "The name of the template." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_template:14 +#: ../../../discord/template.py:docstring of discord.template.Template:25 +#: d305a169d2574be8813ea5e8a02a9756 +#: 29ab765f02d240d882a315f3e85185da +msgid "The description of the template." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_template:17 +#: 760cda1cd1bf483ebd28b138dbac9316 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:3 +#: 0c00ff66a0c74ba8bdb568b9ade08e40 +msgid "Attaches an integration to the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:11 +#: 7055633b41f14e90817f176388a13d25 +msgid "The integration type (e.g. Twitch)." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:14 +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:7 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:7 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:7 +#: 1346001cfed24b21b072ef9856fdbdae +#: 944b63c7272645ac8e3cb2e3e21563fe +#: 5bbf10d811d3473cbed2c24c8db3172a +#: 01130a78ef0046fcbc2d58e078d66a10 +msgid "The integration ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:17 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:13 +#: b2080ec5a9504c288adff5bb581385d4 +#: d113a7909c6d4a71bf31959da1ae369d +msgid "You do not have permission to create the integration." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_integration:18 +#: 8b360cadc5e6410f9163b009e1798c17 +msgid "The account could not be found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:3 +#: 55c98a3dddb043f98fb6d84b2d473f35 +msgid "Returns a list of all integrations attached to the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:10 +#: fed6ce5bcef64a35ab2b8b162b5eb50c +msgid "The list of integrations that are attached to the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:11 +#: 707fa57d80054d489f59022167789830 +msgid "List[:class:`Integration`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.integrations:14 +#: 5ad7153c64f047ad9daa906a9becef09 +msgid "Fetching the integrations failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_stickers:3 +#: 00dbbbe1eab34f6d894eca32b04b95fc +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_stickers:9 +#: 64c032cddf1e44aabf81215b2fd65a7d +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_stickers:11 +#: 0be1df9394af4fffa74cf3c2c1f2e4d7 +msgid "An error occurred fetching the stickers." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_stickers:13 +#: 55697da9b79446dfb69b28f4fa3adfb2 +msgid "The retrieved stickers." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_stickers:14 +#: 1714df6157b64ca5a1a90b995fd44623 +msgid "List[:class:`GuildSticker`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:3 +#: a8d670ef84b143d982f79b48c0b1c562 +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:9 +#: 63867ec00f414a55bbef1821d171b784 +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:13 +#: f0a03ba8de3d4db5a3968b94e40ed0bd +msgid "The sticker's ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:16 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem.fetch:5 +#: 2e5e5cb4083b4d768bb3ca349cd4cc41 +#: ee33114d35c04bba9e3a60b0daace838 +msgid "The retrieved sticker." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:27 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:17 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:19 +#: 2802fcb7a86b474589f5c11ccebdfc55 +#: 0ef37b2e6d2e442fb19065b7614a9b0d +#: ae85608176334c78a30d747892aebbd0 +msgid ":class:`GuildSticker`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:19 +#: 6f2712591be94a89ac8d4530d2c62af1 +msgid "The sticker requested could not be found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_sticker:20 +#: 10ab3b6a5c934028bb0caa016beaed29 +msgid "An error occurred fetching the sticker." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:3 +#: 2bc1d5ddf1094d0ca12d95d8a2c84076 +msgid "Creates a :class:`Sticker` for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:5 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:5 +#: 19d83ba9c2b64a40a0d99a566e2f1570 +#: b08f600f8fb24a939877a9f21c67b6b9 +#: d9bcd31ba9c8417eaebec2098f4a6866 +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:11 +#: a6460e077e1044cd82e7514c43a74c85 +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:14 +#: b83cc1df192e44cfa969e71988e5677c +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:17 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:12 +#: d1d3341da8154cc6b4378671085d6876 +#: da50ce0daeb14bac9177688a530a501f +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:20 +#: a66e5eaafd104f64b94753b15e176012 +msgid "The file of the sticker to upload." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:23 +#: 66fe361a6d7d46a4a6844cfae8e53e8d +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:26 +#: c5a2ccdde03b45da82a41aafe5ca11f4 +msgid "The created sticker." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:29 +#: e497f6606bf64d688a4d1adcbe4550d5 +msgid "You are not allowed to create stickers." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:30 +#: 4014ebbe73454bba80fffcc20a76d48e +msgid "An error occurred creating a sticker." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_sticker:31 +#: 0d272e8551554a528b510633e63e660b +msgid "The parameters for the sticker are not correctly formatted." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:3 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:3 +#: bcb585d0888b47c5aa7e11bd76e69153 +#: e42fb4e9e6cd462899cde8b8f13f183e +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:11 +#: 389b2c95a682457586d94318d12dcdc0 +msgid "The sticker you are deleting." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:14 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:9 +#: f7a4f3ca9f0840278988c57b3e1584ba +#: eb21701dec21455885321861a71e8a93 +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:17 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:12 +#: 57b98898cf2b4745af78f85b0f783f43 +#: f882c67f674f47e397cfa9cbd16ed37e +msgid "You are not allowed to delete stickers." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_sticker:18 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.delete:13 +#: b1d13694e29548c2b31bf65409c39404 +#: 854d757ca8b241ebab7c4cacf7bcec8c +msgid "An error occurred deleting the sticker." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:3 +#: 7e19d4e700d74093a3cdc5c09aa87a7d +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:7 +#: 0e34069b5d51441ab8c457a52f2d4c01 +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:9 +#: 6c8e39b268f349da8aa4bf43ef2e8dbd +msgid "An error occurred fetching the emojis." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:11 +#: ab7b44a854f44e168c38f0c4119385b0 +msgid "The retrieved emojis." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:12 +#: d20f42179eff44a7a621d7a831ddbe4b +msgid "List[:class:`Emoji`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:3 +#: cc1afd530dcb498eab35fafe4575a8d9 +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:7 +#: 20deca88487948c09b27806328bb2663 +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:37 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:11 +#: 53a1817de08548d2a68fbe1e43614c15 +#: 04438e1da08e48938f42dbf2de330ba9 +msgid "The emoji's ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:14 +#: 906d9a9b33fd4c2fae5128b182620971 +msgid "The retrieved emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:25 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:29 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:15 +#: 1eb1e8a92e454d7bbee3b5e9541f84fd +#: 37a41037481642b78fafaee019f75015 +#: 399573321d6c4868983d0d4e6e50494d +msgid ":class:`Emoji`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:17 +#: 7dca8307be0f46d9bc1484bffd2db96e +msgid "The emoji requested could not be found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:18 +#: 1268b68564384470a7e408eb7ffe05cc +msgid "An error occurred fetching the emoji." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:3 +#: c19298ed5a9d4c7f94a5ba4c63da6ecf +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:5 +#: 67653b1edbe444cfa63bdb3f8dd142ee +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:8 +#: 017a600143d2422fa0e812681706e91c +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:12 +#: 97c6fd9370bf4aea96238eab140f5d1e +msgid "The emoji name. Must be at least 2 characters." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:15 +#: 2fec2eb4ceb747919d9b166d18265401 +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:19 +#: 1e4d12b61e6d490598ae6693db9198cf +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:22 +#: bd0e76c282eb438dab73ee18a87a6267 +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:25 +#: 949a7873ef1f4058b494809e97495c5f +msgid "You are not allowed to create emojis." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:26 +#: de6fe0f7f1e4471d96ac84fcaccafdad +msgid "An error occurred creating an emoji." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:28 +#: 7840ab867f304e7f922df2244f5e9e17 +msgid "The created emoji." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:3 +#: 29f350f034fc4530acff6df42f01d8c8 +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:5 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:5 +#: ff6de30aac954fea9e2f208059f9cb4c +#: 3312ce3f569645198e48c2b41085b692 +#: fb90b1ef5ff84a2fa79294890e940a4e +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:9 +#: 5168a27eeb5742e19c0c8ed921c02486 +msgid "The emoji you are deleting." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:9 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:12 +#: 678beeb23b2d4987b952b0071cc7e655 +#: 83fa5c76aa45496c8a174a7aba164212 +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:12 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:15 +#: d87322ed656a4631bd9fa98caa580e08 +#: 06192bc5820542e09a610656abe007be +msgid "You are not allowed to delete emojis." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:13 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:16 +#: 595f6eee2e13488f8569abd8053aeeb1 +#: dd8fe40fffc947b8adf8f1e9fdfa8d16 +msgid "An error occurred deleting the emoji." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_roles:3 +#: 6c8d370449314b2187994721e4cca657 +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_roles:7 +#: 75df743b5f774665a0376cf6ee506507 +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_roles:11 +#: 113e7cb6f37f43a78caf4740e39fb7b8 +msgid "All roles in the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_roles:14 +#: de362117a6804bf9aaa7770e8b9a8e18 +msgid "Retrieving the roles failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:3 +#: 681fb3ca2ecf4e84ac864c64062b94f3 +msgid "Creates a :class:`Role` for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:5 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:8 +#: dcfe27cdb7b04f7785b896b227db69aa +#: d2707f10f087496d932421ff29031df5 +msgid "All fields are optional." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:7 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:5 +#: 25b3022700bc40c98280cd7ad9067eac +#: aa06013c19004179bcfcb31c7058a095 +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:10 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:10 +#: 44506364e73a40a2b43adf68402543c1 +#: a7629d90adfa41cebd47fac9b60c4cef +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:14 +#: 2f9a2e14086443cf9aca60ecc5d37418 +msgid "The role name. Defaults to 'new role'." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:17 +#: d215923b1e584a69a414a1184375f930 +msgid "The permissions to have. Defaults to no permissions." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:20 +#: 0a615245fd3c4c0b8e29edf8e72d8d88 +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:24 +#: 93bce075ad454d48ae59eb4d231dfd8d +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:28 +#: b1a288ba1940445ab63c5c1bde1d1efa +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:32 +#: 1d2ebd073b2c4459be628151776f3b50 +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:35 +#: ba8c8b44279743f2bcd9efddc53d5b58 +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:40 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:46 +#: 9cdff82aa82a440db4251f66f2e822f6 +#: 739cd491cb5f4defaae39d48711c975e +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:44 +#: c965ce93ea074ed78be662486645a373 +msgid "The newly created role." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:45 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:51 +#: 79519cee140f4bafa12f86a5c341f0e7 +#: f2b88b3cd57f4ce58b1f571b1d7c295b +msgid ":class:`Role`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:47 +#: 6ac5de532acc4a0386c665a37617cb7b +msgid "You do not have permissions to create the role." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:48 +#: 013ad29dd49441ce9292d34076552ad7 +msgid "Creating the role failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:49 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:35 +#: b7ba11634247483a88e4f438230dcdbf +#: dfd9adbb613a4f5491d078cb00e63802 +msgid "An invalid keyword argument was given." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:3 +#: 8a6532467f3445c8aac59a9849fe69d8 +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:10 +#: 53cfc538295b49a3b7caf1413df5d719 +msgid "Example:" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:23 +#: 5be883a67eca47498aa481fa2ef1935e +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:27 +#: db47caaeff6d4546bb0643624faa9b92 +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:30 +#: 12db7fb56e4240d5bb76d9855001ebfc +msgid "A list of all the roles in the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:33 +#: c4e82f0721b340f080c4d67188f58b04 +msgid "You do not have permissions to move the roles." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_role_positions:34 +#: 776b7a3630cc4e66bf21286c273569ff +msgid "Moving the roles failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:3 +#: cb317007469e4271a5e6c0606e32c86c +msgid "Kicks a user from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:5 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:5 +#: 71041b43fe424416b87fd77ec0c5d5e4 +#: d8e5c4f7592c46e4a4964126317df1e8 +#: 6530c707f3e74512b7a8ad6ac581d67d +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:7 +#: d7b0f37f560049afbe7c47f86d66467b +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:11 +#: 45009620b7f94266a041b3e310508761 +msgid "The user to kick from their guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:14 +#: 1c2dbbc4e17f448cb9a05dec693b0442 +msgid "The reason the user got kicked." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:17 +#: 0cb82bb2c31e4229afae977226735946 +msgid "You do not have the proper permissions to kick." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.kick:18 +#: 7c6a72f5d47441b7b8953ae50bb69637 +msgid "Kicking failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:3 +#: e7e76ceffdd84efa98c4d457787247b9 +msgid "Bans a user from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:7 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:7 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:7 +#: 7898787d528947f9b335b0550794b0da +#: 0ceba9afb6ef41cb8b5663b6752c16ec +#: 5f319f12a60c49ec8c9e4d69c0fb8dca +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:11 +#: 964deba937b1486a8a65222912bd2eb2 +msgid "The user to ban from their guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:14 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:22 +#: f12004652b6a44c3aac2cd2af378b28a +#: 0fadd586f7c94eedbf5c78f7a34663fa +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:19 +#: 921f87c6d6924435af9237d0e0831da0 +msgid "The reason the user got banned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:22 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:34 +#: f0ed8f3842b8443994b81e6081dc5d00 +#: d6d7a811d3eb4e9784a1fb7b5b5e7517 +msgid "You do not have the proper permissions to ban." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.ban:23 +#: 2f002500714e4934a50414836da732aa +msgid "Banning failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:3 +#: dd877201bae44c008dc09493b09db8e6 +msgid "Bulk ban users from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:5 +#: 33f03ddefbd64b499a435901401beee3 +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:19 +#: 160521264b974bca8bc5a69bfc8efb20 +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:27 +#: a2d44ca22def408cae0e51c561ea6252 +msgid "The reason the users were banned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:30 +#: c8be38577fe0452f83af35aa10e6ba6f +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:31 +#: fc54d0cdae1c407fb5edbf6291ec62a5 +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:33 +#: aeec79561bb949d99becec9c2f6b2c73 +msgid "You tried to ban more than 200 users." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bulk_ban:35 +#: 5297b180a9ce4baa8074dd8c40f5e39d +msgid "No users were banned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:3 +#: 0d95fc42ca2e46e4b00022b067e9c37e +msgid "Unbans a user from the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:11 +#: 31d409761a5e47a18a41b77429bddf8e +msgid "The user to unban." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:17 +#: 1273209cc03a4f17a1a441da321140a8 +msgid "You do not have the proper permissions to unban." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.unban:18 +#: e7f66e79fcd445c9918e030dcbc3c959 +msgid "Unbanning failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:3 +#: 53fc54fe12e441ceb936081f031cd6b9 +msgid "Returns the guild's special vanity invite." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:5 +#: e6a89eec37044cf4aaba02a7cdffc538 +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:7 +#: f95ef0a0ffad4af89dbac74c911ece29 +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:10 +#: 61132536a75c4980ad027ff7010dd60d +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:12 +#: aac84dd0fab64564aca458b9921f1cba +msgid "Optional[:class:`Invite`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:14 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:14 +#: 9afd0935187a461ab98d15477738fc11 +#: e6bc990a8ca2460f9268e3035be680ea +msgid "You do not have the proper permissions to get this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.vanity_invite:15 +#: 92f4126e516b40a7ad0844916b460b61 +msgid "Retrieving the vanity invite failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:3 +#: 6db9c141f3454a02956d67ae075181e2 +msgid "Returns the widget of the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:7 +#: 6de997f9d74246c9896ec0512e55d05f +msgid "The guild must have the widget enabled to get this information." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:9 +#: 5ae3e49f57f649848879953ba95e33b5 +msgid "The guild's widget." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:10 +#: 70de3135e29b4adc9c43ed76a9f743bc +msgid ":class:`Widget`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:12 +#: c3c4d3e924ff42d4af62063676318e1e +msgid "The widget for this guild is disabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.widget:13 +#: 7164076f8680428b9070baedc4dcd961 +msgid "Retrieving the widget failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:3 +#: 884a618895b24208824d7df0d9f00753 +msgid "Edits the widget of the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:5 +#: cc0f8147df47422290bc58a79ac5732b +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:11 +#: f8df75bf67b94e6e9f9cc36b91a776e3 +msgid "Whether to enable the widget for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:14 +#: eed0ed35d95f4b0cbd48c7113ac1bcbc +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:17 +#: 6937fbe0b1234f878097827fb7d43b77 +msgid "You do not have permission to edit the widget." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_widget:18 +#: be2d233cd66048c18682d4d806a9a250 +msgid "Editing the widget failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.chunk:3 +#: d93329457a654f3bba9f67c57323690d +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.chunk:6 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:6 +#: 9544932f24934807a6ea75123701b991 +#: 7986efef1f3545b1b6b5fd1ff301f01c +msgid "This is a websocket operation and can be slow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.chunk:11 +#: 70c561834f024cd0883be83ee259e182 +msgid "Whether to cache the members as well." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:3 +#: 4781c9b928184ff3a261a54fc07fdfbd +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:11 +#: 7f885af8335740ee876b3af40fb3042f +msgid "The string that the username's start with." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:14 +#: 3e87b46212064dde916a768dd405fd77 +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:14 +#: 2e4eecbdbe4841fabc4431d67b034d80 +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:19 +#: d516d96fa2ad4c3a99294f38c51b62e3 +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:23 +#: 3b9a20e913de48aaa1c019f3d468957a +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:23 +#: a5456f3fda6040e7acac052db041d781 +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:29 +#: 176463243a414ff0b64fdecf6b9717cb +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:36 +#: b7e36216d69045c4aff6ea6fc951ab13 +msgid "The query timed out waiting for the members." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:37 +#: 5b3af2d6e1464e3f826c1461e5bc74cb +msgid "Invalid parameters were passed to the function" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.query_members:38 +#: 083e7113abc141828c9963a0a2a331b3 +msgid "The presences intent is not enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.change_voice_state:3 +#: c1a9a546f19746c78140e6093203a0c6 +msgid "Changes client's voice state in the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.change_voice_state:8 +#: a33b965829f846f79a99cf1cae906491 +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.change_voice_state:11 +#: a6f7e41be9e9486b86706a0b86f3b77e +msgid "Indicates if the client should be self-muted." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.change_voice_state:14 +#: a53b68d5aa2d4bf5abd74686fd90145d +msgid "Indicates if the client should be self-deafened." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:3 +#: 9bda182e2a214445a72c17f558913fe7 +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:5 +#: 2f6bd3131f2042e389a6cf5c679145f4 +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:7 +#: ff928f87056341a5a1d5860f421d87ab +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:11 +#: ecc30a5b66ff403d9f99fa235321b757 +msgid "The welcome screen of guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:12 +#: a8775024ec8c4156acf05824fcf64a34 +#: e52dd7702c754dffb9ce9825abdcff4c +msgid ":class:`WelcomeScreen`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:15 +#: 1aaffa8b3af54bc493fe065e0c985b2c +msgid "Retrieving the welcome screen failed somehow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.welcome_screen:16 +#: 2ca0a22a6e4f4d12bc55b9ac10cd1239 +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:3 +#: 99eed2c0f64445be860077576d0f2263 +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:5 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:5 +#: 0645a3e4c2e94af68988b850f3ac4c16 +#: c853a64fc9104006b6c5a70ad88e4863 +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:8 +#: b9c269e6c70948b49571ba727e4f63e8 +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:10 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:8 +#: f0b106b23b04473aa6fcdc972261afae +#: d139c738e6524a9bb1733f46b6d361ec +msgid "The new description of welcome screen." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:12 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:10 +#: d6c4741ad35f4feda1007d4313472b28 +#: 9c43887450e84207a6d41f87791776e7 +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:14 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:12 +#: 05a7a458521d4d14b6b4d4b4d4ee44fa +#: 6ba2dcd80afe434194a599de4d3818fb +msgid "Whether the welcome screen should be displayed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:16 +#: 69fcaacc9de94c0fa26eb00efdf57a41 +msgid "The reason that shows up on audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:19 +#: 24b50a56be2c4454ba4c69145e24289b +msgid "The edited welcome screen." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:22 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:17 +#: 001bef1ddd0c4b4e84fcd27b8df3d96b +#: d5e86bd0953c44ee81ab0a9306d0a12c +msgid "Editing the welcome screen failed somehow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:23 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:18 +#: 6003dd88fec7420199985ef5024bb31a +#: c9561863e91541e6b40e8d2a17867595 +msgid "You don't have permissions to edit the welcome screen." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_welcome_screen:24 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:19 +#: 2ae3a3676df24d8aabc07fc2d60eb677 +#: 0b7cc1a06b8244c7a6e371bb6495ee5d +msgid "This welcome screen does not exist." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:3 +#: 1146710c6f234b72868f4854820b1fe7 +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:7 +#: 1f6a9aaf78384eabae7f935cc30d3215 +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:10 +#: b93d82959ad540abb93c374a05b62412 +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:15 +#: 7803509167534117a3e927c61c8d6e47 +msgid "The fetched scheduled events." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:16 +#: 4efd44f0307d477eb185d6690ad7db25 +msgid "List[:class:`ScheduledEvent`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:18 +#: 488e46f3eb884958b2b4c9629a4b11c2 +msgid "The scheduled events intent is not enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_events:19 +#: 8e4569e0213b4be6ab5b186e2f56f730 +msgid "Getting the scheduled events failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:3 +#: 8429230cb33b41c6ae22422ea1f3eb1b +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:7 +#: b9ab54b2a02d405a8507f76ce557bf9d +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:11 +#: a5ff8f1150f8474cb9bb6be02d54e2a6 +msgid "The event's ID to fetch with." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:14 +#: e033fc413f41483d87af4c519972741b +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:19 +#: 4a29e289bff74069ba4cc113ffe0bd97 +msgid "The scheduled event from the event ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:32 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:20 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_scheduled_event:8 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:161 +#: ea335cf575724209b2c07a48814c2c53 +#: 86baf481154547959ddb8413c5939b28 +#: 19e73c090d4143509b2399f9b15acb56 +#: 8fb8eecd403146efa96c830babc9f3dc +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:22 +#: b62feec903004869b092dfc14ed12962 +msgid "Fetching the event failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_scheduled_event:23 +#: 72f86761735b41cb87fa7b1c31a59bde +msgid "Event not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_scheduled_event:1 +#: be73574af08f4eb28dbf633b9e545760 +msgid "Returns a Scheduled Event with the given ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.get_scheduled_event:7 +#: 5d68a842563a4de38d4c48588d6d5c44 +msgid "The scheduled event or ``None`` if not found." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:1 +#: f5cb5ca28d824761a94020f0a60ac378 +msgid "|coro| Creates a scheduled event." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:5 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:31 +#: 55dcb7456e3f40efbcb954cea6d49413 +#: 9cb6a9aa14ba4b0f8c0521bedaff5788 +msgid "The name of the scheduled event." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:8 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:37 +#: 2377bfb5becb4b0591ce93ddfe51545a +#: 3b4ccd2339f648748b570b1a98fcc54e +msgid "The description of the scheduled event." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:11 +#: 512f5da5b9094054a5601f150fbf130b +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:14 +#: 0e491a34f7424daf872bb453bf8f1395 +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:17 +#: afc2c8680c3b4c99b29dfeb41039ac2c +msgid "The location of where the event is happening." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:20 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:32 +#: 5f56ce92853748bdb97c7d6a998a2956 +#: 1d988b0e572242579f782e711764422b +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:25 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:10 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:10 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:37 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:10 +#: 6f0e0e8f39384675bc1794823cb3fa20 +#: 4a0c771d928743e0a0d5f8dcb042df87 +#: 4fb602f6a3a84bb6a24ad4e2a65d255e +#: c508b221873e431ea5caf96935b7f78c +#: 91b1314d1eb74db29f0e8f9826b4cb40 +msgid "The reason to show in the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:28 +#: 6eca104b38b340f0a46b29a4c8199630 +msgid "The cover image of the scheduled event" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:31 +#: 546727e696df48378cae34ed85c59496 +msgid "The created scheduled event." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_scheduled_event:34 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:16 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:16 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.delete:5 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:53 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:16 +#: 5d785162986749e2945e8c651dc507eb +#: d54a10e71d1d4e3aaac96ced5a8dac6b +#: 9fc2572d04314382b9e0dd9248d44b28 +#: 6f79762a7230416ca226b2bcf4693903 +#: 8be4fa1354724f1eb713ecc5565cfffd +#: 2c54400df1334e268cc56c1910298a54 +msgid "You do not have the Manage Events permission." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.Guild.scheduled_events:1 +#: cfdafb562ce2471cb433dffc655b8923 +msgid "A list of scheduled events in this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rules:3 +#: e43b1b902c254f22982e6c92115c5491 +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rules:5 +#: a4eb186fe95e4d638aebdad1c96262c6 +msgid "The auto moderation rules for this guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rules:6 +#: 92001cdcd8024353b77d873048fca432 +msgid "List[:class:`AutoModRule`]" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rules:8 +#: 7fa3d786434c46bbb28a3203dbae0c3c +msgid "Getting the auto moderation rules failed." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.delete:9 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:34 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:35 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_auto_moderation_rule:11 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rule:9 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rules:9 +#: f4cb677bf946444db00720582cadf54e +#: cf5d9362cb0f4a96ae1fcd563b178d27 +#: a26d07907ec141c78b415ce7aba17bab +#: 0584a9acbb634e72b33da79fb72fa2f2 +#: 63799c92b8934d09ba2658eece057c39 +#: c68b52d22a9c47048dc2fb20e4a974b1 +msgid "You do not have the Manage Guild permission." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rule:3 +#: 9fd0f32195da4f8a8ba6afeee64defe2 +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rule:5 +#: 8e9b5d93fd7248ffbc6f2a1a36e66f74 +msgid "The requested auto moderation rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:32 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rule:6 +#: b9a3c3d15f1d42158f2d6557141abe8f +#: 47026803b5ac4677bed6418dff390aa2 +msgid ":class:`AutoModRule`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_auto_moderation_rule:8 +#: be33175c8ed04894a62d75550622c6da +msgid "Getting the auto moderation rule failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:1 +#: 022f3795574a4ae9a73bc531c60b5f33 +msgid "Creates an auto moderation rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:4 +#: fc7c82e7ce5240ae87a4b8888a1834a8 +msgid "The name of the auto moderation rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:7 +#: 2bf99f7c1e524737a54f7496291c4a69 +msgid "The type of event that triggers the rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:10 +#: bd79dbece2e34f6883ab4c43f0eefdfe +msgid "The rule's trigger type." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:55 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:13 +#: 761219e812e54e64acae665e0f0a3ee0 +#: 61b3b52178694c44a1747d1639c3fe37 +msgid "The rule's trigger metadata." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:16 +#: 2c4ec7efb2a84a4e932cd105f8c8bd9f +msgid "The actions to take when the rule is triggered." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:19 +#: ea4fedcb8baf4e8e80b732580b8864c7 +msgid "Whether the rule is enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:22 +#: 38f882f570db4c2ca22c7f0c52e414f8 +msgid "A list of roles that are exempt from the rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:25 +#: 81f668b4f0c94a599649916de9551caf +msgid "A list of channels that are exempt from the rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:28 +#: 4531d8bc55b844b3958a17c91aac2604 +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:31 +#: 105efa6a98d7495c9dfa2b71680219b3 +msgid "The new auto moderation rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_auto_moderation_rule:34 +#: 8e17d899e28b469bbe0771a8ae35d57a +msgid "Creating the auto moderation rule failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.onboarding:3 +#: c61190617cf6478d8d9c4b6d95d08e50 +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.onboarding:7 +#: 46ce13e0435c4f2dac885ba6d56e4069 +msgid "The onboarding flow for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:27 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.onboarding:8 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:31 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:16 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:16 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:27 +#: c343d9d40bae4a43bd68f1af8e94f4e8 +#: d0e4a7028303472499c0ab57758bf25d +#: a2206b96c9b2440db35b6dc880ad35b0 +#: 95672de64d124beab59c553c03c8667a +#: 8b3baad711894789adfbb1bd7fe5f051 +#: 2a7fb664e3954e54ab26676d9c5ce021 +msgid ":class:`Onboarding`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.onboarding:10 +#: 77d044af231d4ace904c995790c1a138 +msgid "Retrieving the onboarding flow failed somehow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:3 +#: 0d64da82315f4e298378e33fe0448d34 +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:5 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:5 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:5 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:5 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:5 +#: 0882c5ddfa7e4b1a9f4c9a828646c692 +#: 75e135823c824c86a630c22cc93b83e0 +#: 86a4113f1151423bb4dcbf749ddb84ae +#: 5ef23baaa93a45a7b4ad9399e1471500 +#: 97261ddb61a84b7f8fde14fcf9bda5fb +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:9 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:9 +#: 45a92da581e04fa2b319585280d42b15 +#: abb4481a794b4eecab8ea40b8dc1e10f +msgid "The new list of prompts for this flow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:12 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:12 +#: cafaefe922dd48c5ba61c50a27ec28dd +#: 7748152f2951436aa1b988d8191bfd8d +msgid "The new default channels that users are opted into." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:15 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:15 +#: 5d6d3ca99aa8482dbc6ffda9436fbe5b +#: d862dfd0dc944913889028f5f9a5902e +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:20 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:20 +#: 74763711887947678db4c474731cbcea +#: c4a6dedf71a14902ac044d17b450b425 +msgid "The new onboarding mode." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:23 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:14 +#: 4efb14b400af448684e8daabbaf07bfb +#: a14b7635716f4e16b0b2929a448b2994 +msgid "The reason that shows up on Audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:26 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:30 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:15 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:15 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:26 +#: b2acfb4f157841e4b7c8d566142234e4 +#: 8cee524f6441404e9434980c82321a6a +#: 6dec58d3e4994c3aa3af6c7da6186d38 +#: 771e31d0a41e44589b476f73cfd814b0 +#: 7fc92736f5af4294bf3af846a716ac26 +msgid "The updated onboarding flow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:29 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:33 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:18 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:19 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:29 +#: 3f3449ad058c4ff6bf3428a177b5aaa8 +#: 4ff7b713386c41208c3f8e3f42c8c0ae +#: a440de31dc7e4359a110e4115c010397 +#: 9457d603432c407bac0225bca3e8f19d +#: beb4cf4c3fbb4886a1d0aa2cab28cb61 +msgid "Editing the onboarding flow failed somehow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit_onboarding:30 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:34 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:19 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:20 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:30 +#: 86b87547d2ed4552ac12516dc869b8f1 +#: 9ec5132f183345b9a45a0fa05edce865 +#: b7b89dcb746040c983feeef2a2bdb8cd +#: abc94f4282a24e4d99e40c8d603a2755 +#: 950af5f4a4fe43f6b9f9f79810d54654 +msgid "You don't have permissions to edit the onboarding flow." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_auto_moderation_rule:1 +#: 48cf22ba0c99497080c86cbff0eee085 +msgid "Deletes an auto moderation rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_auto_moderation_rule:4 +#: 3f5008bb6cf04927b981b47ead834904 +msgid "The ID of the auto moderation rule." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_auto_moderation_rule:7 +#: 7067e1b021e24246a274ecf334b608a3 +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_auto_moderation_rule:10 +#: cf81134ec30b4520b0f5883093b5ef56 +msgid "Deleting the auto moderation rule failed." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_test_entitlement:3 +#: ead2e3553f9f4a35bbb876a7f8a1c957 +msgid "Creates a test entitlement for the guild." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:1 +#: 0a2edf433dd24913b837190596f61a7d +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:3 +#: 49db5051d76041628c6e8b56d1e9064e +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "" + +#: ../../api/models.rst:134 +#: fb9668f6a20a4f0bbf8ba6929fd3594b +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "" + +#: ../../api/models.rst:138 +#: 4d8636790bdc471f860037026c9b8f57 +msgid "The reason this user was banned." +msgstr "" + +#: ../../api/models.rst:143 +#: 83ffc7d2c2814caa965b59434791892d +msgid "The :class:`User` that was banned." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:39 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:45 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:63 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:23 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:37 +#: ../../../discord/template.py:docstring of discord.template.Template:33 +#: ../../api/models.rst:145 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +#: 5eb4ffbd8c6342cd8aacf63185e47f39 +#: e36ce4e955e146d098cf2f2c5c8fc31b +#: c14de0046d7f496c8dd8145c45146651 +#: c52998b02b414e8c862a0f4abbfd50cf +#: 76b6811d7c134458ab4de2f5d19022be +#: 0f0717ef3be94246842f6971156ed5da +msgid ":class:`User`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:1 +#: 4224e72302b244e5975ce30b9083fe11 +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:3 +#: 16147907536f4214984d222a2b1f3b49 +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:9 +#: 4bd0f2d59e4c475b997f1ec81989baeb +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:14 +#: c16c8485920d4219bc3306573a48106d +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:19 +#: cd62a2fc56714695abacf07b65286fac +msgid "Returns the member's hash." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:23 +#: c916cab233ba4291b5947e372bead4d4 +msgid "Returns the member's name with the discriminator or global_name." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:27 +#: fd09fb6dee234da99f1a284943155802 +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:34 +#: 97e4088148b34fd29deedd05736cb686 +msgid "The activities that the user is currently doing." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:38 +#: 300358621dd14a42adf6c1f0b0aa3c5c +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:42 +#: 94261981c2ca405dbc02c617650d3d7e +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:46 +#: 15957280725e487e86cc9fdc1f09686c +msgid "The guild that the member belongs to." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:52 +#: af5f6ac353344515bf322a8d556b7492 +msgid "The guild specific nickname of the user." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:58 +#: 54756fffdae9412eb7cacf5266721fe4 +msgid "Whether the member is pending member verification." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:66 +#: 23818d39e4094f75a12136a59f5a79f0 +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:73 +#: 3950ea6a6bd645e7a1bf3c1284b3bc3f +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:81 +#: a9a6616aac0148a58f9225a34376e401 +msgid "Extra attributes of the member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member:85 +#: 5cb8a7de85bf4b94b5bc71709d021690 +msgid ":class:`MemberFlags`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.name:1 +#: d19c2f29833942f18d614198d6fb687e +msgid "Equivalent to :attr:`User.name`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.id:1 +#: c492902022b849c29d575c5329b401e3 +msgid "Equivalent to :attr:`User.id`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.discriminator:1 +#: 59af3cdce2f84e048157b3ee5440b776 +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.bot:1 +#: df849db718194071a81fe2a2f7184a2a +msgid "Equivalent to :attr:`User.bot`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.system:1 +#: 0bc73fc598fd48039fcfcc9a78d3b99c +msgid "Equivalent to :attr:`User.system`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.created_at:1 +#: f9d06af574d1446c87a936924dad6c64 +msgid "Equivalent to :attr:`User.created_at`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.default_avatar:1 +#: d05acb1f08ea4efca7ea02095ff098d5 +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.avatar:1 +#: 0636df0c16b34527af057d465fec0505 +msgid "Equivalent to :attr:`User.avatar`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.dm_channel:1 +#: 303c7c64fda0424ebbe70e6883543f44 +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.mutual_guilds:1 +#: 423c486c003247ac9966ca71793c8b48 +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.public_flags:1 +#: a592ed6a8cfc42d3a82c9f7e3e27a6f2 +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.banner:1 +#: dc7ae802cab54df5a8aa17332269f562 +msgid "Equivalent to :attr:`User.banner`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.accent_color:1 +#: 19d8cea50fbd44909edfbf8a094bfae2 +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.accent_colour:1 +#: 0432ce3359414325b19aee690117aef6 +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.raw_status:1 +#: 2f5fea69ade2408d8f7ee6fd6088f598 +msgid "The member's overall status as a string value." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.status:1 +#: 9e786b933ad54b38bebdba5654823859 +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.mobile_status:1 +#: 54c542a06dc241189497c93b96043a9b +msgid "The member's status on a mobile device, if applicable." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.desktop_status:1 +#: 29edc36c25774b2ab46b7321043cde87 +msgid "The member's status on the desktop client, if applicable." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.web_status:1 +#: fa6a34f9e6f04c128a517e4f8262782a +msgid "The member's status on the web client, if applicable." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.global_name:1 +#: ca2bed1e705c4f4a853c1a36773e1e9e +msgid "The member's global name, if applicable." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.is_on_mobile:1 +#: 6bfa3f0e7dcc47368b087045bbfd8453 +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.colour:1 +#: ec82496d1ce14217b009e4cb3c93ae1c +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.color:1 +#: ca143b673e1845aea65f2c7ce04c1301 +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.roles:1 +#: 621f782ce5f14018a13edc57e5d3e1cb +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.roles:5 +#: e9735a8be8f844cb9d1f7506c6948b54 +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.mention:1 +#: cb31142c94234c7d96a5f9e8a9203a76 +msgid "Returns a string that allows you to mention the member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.display_name:1 +#: c7bbcd6fa1b8499c9d5abb92d639c395 +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.display_avatar:1 +#: 7cd0c7fd0121466d856b8544e0085b53 +msgid "Returns the member's display avatar." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.display_avatar:3 +#: 2db0b9f8f64f48938c7e870b6c4d507c +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.guild_avatar:1 +#: 58517cfb8d7e46efa7aad63030e3d132 +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.activity:1 +#: 0fe8c01199404f9bb81abee32e46de02 +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.activity:6 +#: 61a9e50b25374094a07265d4c6e399bf +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.activity:12 +#: 463255fd89a34300bd54e6b46893449b +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.mentioned_in:1 +#: 8f055d7ad1d3409c9bc0a6982a4df3d5 +msgid "Checks if the member is mentioned in the specified message." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.mentioned_in:7 +#: c123f04c08954fd880f0b46e12cf1b5f +msgid "Indicates if the member is mentioned in the message." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.top_role:1 +#: 2de2e5171bf84639ac1169e05f17b87b +msgid "Returns the member's highest role." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.top_role:3 +#: 99f7f895d96949ef857d0068159226fc +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.guild_permissions:1 +#: 95d5eecd0cdc4c518d47eb8dc9f410f3 +msgid "Returns the member's guild permissions." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.guild_permissions:3 +#: 31425c322a96462e99b4728a7ae8cf2b +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.guild_permissions:8 +#: a5c4a9f7842446d19859918a6574b8c5 +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.voice:1 +#: b7f18c6561624baf9b387e7cbc9410f7 +msgid "Returns the member's current voice state." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.timed_out:1 +#: 8fa6a9e228fa43ae828849ed839b3fe6 +msgid "Returns whether the member is timed out." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.ban:3 +#: cf3459c60a5448888d44092d532857cb +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.unban:3 +#: 55b8c90e571e446792626dd6ae30518b +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.kick:3 +#: d4b65da0baee4f14b3ead3f145cb41b4 +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:3 +#: 3f0a1b838a2647c3b891a0598e75ba6d +msgid "Edits the member's data." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:5 +#: 191f92a299584434b1a8ece363f2970e +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:8 +#: c583cbd9466848e5b3a66e42d181fa40 +msgid "Parameter" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:8 +#: 2b01166c89e247bea4fc825dfcb3b915 +msgid "Permission" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:10 +#: f5156642c2e34f729bbe6863ddc3184f +msgid "nick" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:10 +#: e683810bda264f899e9c08a6db087a41 +msgid ":attr:`Permissions.manage_nicknames`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:12 +#: 4f4b3d3eb3a841ec9bcd348b6e6b754a +msgid "mute" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:12 +#: d3f5c1a20f264280b200cbcac5c0d6d5 +msgid ":attr:`Permissions.mute_members`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:14 +#: 5a0b2ea3a1fe4c00b62fbf3ca37a2056 +msgid "deafen" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:14 +#: 6aa212566176493fa4693e9e84a1ca0f +msgid ":attr:`Permissions.deafen_members`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:16 +#: e68265f5c790401bac6f73bcc637cf99 +msgid "roles" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:16 +#: 9ea588ed6dd64cf1a5fe4bf6f57c6059 +msgid ":attr:`Permissions.manage_roles`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:18 +#: 520b1222e9fb4a82af38bbbc41bbf3d3 +msgid "voice_channel" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:18 +#: 369a4c2a10674441ae336a1ccb56e699 +msgid ":attr:`Permissions.move_members`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:20 +#: b55fbe99ab8742069352b60ad9017339 +msgid "communication_disabled_until" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:20 +#: b497816b27384f2f89f7def4a8a8b46f +msgid ":attr:`Permissions.moderate_members`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:22 +#: bbd302f910334704934ca0c09a1837fa +msgid "bypass_verification" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:22 +#: fb447ba10e5d4f0788669d8e55273e16 +msgid "See note below" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:27 +#: 76a3becb4b6c4bfab9e65f0e7fc1e4ef +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:29 +#: c5003198a611467882fab14bdd0444bb +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:31 +#: 66e3186beb5a47ceb21589afcbdfcd6c +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:33 +#: bdadfe5cb0704ebd9df5045592ffcff5 +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:37 +#: f841e22738634da48594ee1e17ad1916 +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:40 +#: 9daf22cbbe1b41bc8bdd328b01d14338 +msgid "The newly member is now optionally returned, if applicable." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:44 +#: 1e205abbcb6c42148f88e2b2ea1e223d +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:47 +#: 93bd86a0ac724cfbb2b9e05b0e3bf0a6 +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:50 +#: 5ce7761f05ac4b15b453852bc84acd07 +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:53 +#: e0c6410979ab4bb999e9c991839b67c2 +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:53 +#: 4707597fe3f4402d99abcd4c353e8d8c +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:58 +#: d5ad7f3d9790412b8a1a6e9e335d35fd +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:61 +#: ad76d48b98e344078e1778cae1d3828e +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:65 +#: 7d2ece875a854077aa8922df9658464e +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:68 +#: 12b3b480b959409c97a966579c582741 +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:68 +#: 3c6b7a21d66b4d2fb80ea744cae56c1b +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:74 +#: 7a3b65549f614538a0ebb902d0238dff +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:74 +#: 6465b7a29e214013a4a396a21814536c +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:79 +#: 2adf8663f70b4a72b1fa3c51ddfb6c41 +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:81 +#: a6a8e0142c534a4c9db5ea9905bf1324 +msgid "Optional[:class:`.Member`]" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.edit:83 +#: ../../../discord/member.py:docstring of discord.member.Member.request_to_speak:16 +#: 9fcd0b74f14347da8c2bbb599a1d6f8a +#: 179b515f1d994d56a543a53f1a1a6808 +msgid "You do not have the proper permissions to the action requested." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:3 +#: 67fcfd3c206a4c318800ab0f5de5c77b +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:5 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:6 +#: 8f3a11b0ffb6483eb2e62e38d7f3b417 +#: 07ab819209a440ab914bf6c94d75af30 +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:8 +#: 1e92b504d5134586905349c69536d3fd +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:14 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:16 +#: 290a334f5b9f48f0ad5f62553d07c555 +#: 311fbadf14704565b9ecee449e6950e9 +msgid "You do not have permissions to timeout members." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:15 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout:15 +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:17 +#: ce0d879a4399461a90bc27598271760b +#: 69c19502500542b7a21f62f338b0d492 +#: 4543b69df9d24ff6a666020db13b7796 +msgid "An error occurred doing the request." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:3 +#: 39be7fd9a9504abf8bb9496fc5da44ca +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.timeout_for:10 +#: fd041c18511244ac839dcc4d8c2d4c07 +msgid "The duration to timeout the member for." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:3 +#: fd70d9a85517425eac26f22be69dc022 +msgid "Removes the timeout from a member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:5 +#: 8f09beeaef574af6a7d9e0a5b815cee6 +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:8 +#: 3a47bba56957450c8a25ee82cfe2acd8 +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_timeout:14 +#: 722571d769ca4a9c845bb58aebebbaea +msgid "You do not have permissions to remove the timeout." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.request_to_speak:3 +#: 8b1ddf2494da4d18b8104138bdad7fe9 +msgid "Request to speak in the connected channel." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.request_to_speak:5 +#: 0399a9d50af149919d64576b2e22f6bb +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.request_to_speak:11 +#: b8b4bc2b34d041c8aa4c00881624baee +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:3 +#: 482a70bf0cdd4117afac463a709c136f +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:5 +#: 5499de24315c4e3681b7dcd8cca1e9b1 +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:8 +#: 69861da81eff4d51b5634bf458738e8b +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:10 +#: 0ef28902ea594c2690adf3ba5b9d81c9 +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.move_to:14 +#: 503735ef849943d2b4b2fa0fd2d04967 +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:3 +#: 4fca1b79777444d7ad677cd10494b795 +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:5 +#: 16b5351a5d2d442e95285cc327bff730 +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:10 +#: 08e555262cee446794f4f563b0c99c84 +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:14 +#: cdb82fa7747642ebbbb2e87cdfb0641e +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:17 +#: 8ab879d3759a45a1b30cc9e5d8271623 +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:22 +#: b29f7142676942f9acc3da4f6606a1d3 +msgid "You do not have permissions to add these roles." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.add_roles:23 +#: 59cd6ba166c9409abf12b3a10d1f2e48 +msgid "Adding roles failed." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.avatar_decoration:1 +#: cabe3ed43fdf4e4ebc41e33075bd0b9f +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.is_migrated:1 +#: f9263362216f45cb993e644b8f06e9b7 +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.Member.jump_url:1 +#: 2a9456847dbd44caa70b41a1ace5907a +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:3 +#: ce5eafe9a84847258a6bf6a05706fd4c +msgid "Removes :class:`Role`\\s from this member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:5 +#: 9d40127d6bc14fa6849472841667a3a3 +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:10 +#: 151f782cf7da475a9348e09c83b381a5 +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:14 +#: 2e48cc6bee8f4c1c82f680c63fb2f9ee +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:17 +#: aaa8ce8da63e4e36bfd04c5556440d03 +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:22 +#: 9056f686438c4efda4be253e5b5d6698 +msgid "You do not have permissions to remove these roles." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.remove_roles:23 +#: b28ab0944bac46fcb93d05451f0c7447 +msgid "Removing the roles failed." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.get_role:1 +#: 1a315b9d0ae84ef9a8aaac0e3b6e82f8 +msgid "Returns a role with the given ID from roles which the member has." +msgstr "" + +#: ../../../discord/member.py:docstring of discord.member.Member.get_role:9 +#: c4ef36a9616d459ea91ba285772aa15c +msgid "The role or ``None`` if not found in the member's roles." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:1 +#: bf5548d7f1344452ac9aab8d493066f8 +msgid "Represents a Discord template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:7 +#: e9cb8b6efd734274924a4126f172a997 +msgid "The template code." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:13 +#: 1f2a73ed296346078fcffc86ef712e2b +msgid "How many times the template has been used." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:31 +#: c83fded2631f4cf1b2d646c3d5e3c144 +msgid "The creator of the template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:37 +#: 38af213396984d9681c7e60a89460807 +msgid "An aware datetime in UTC representing when the template was created." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:75 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:77 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:21 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:45 +#: ../../../discord/template.py:docstring of discord.template.Template:39 +#: ../../../discord/template.py:docstring of discord.template.Template:46 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:121 +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:39 +#: b8e1833f3ac147369e252c5d8801de52 +#: 68bd48ad6afd4d808a9d995aee63bb0d +#: 19b618fc8cee41e2ba589ca7a27c4969 +#: 0a0a0189f2264767a126de6cae9aecdb +#: d14b8f41bd3046ec8e6dab0236bb825d +#: a049e1192ffc41ee9a39a2397ebb9657 +#: 5f26ca85dd1046b9ac8711b9cfc58e0e +#: 49d2dc8636ba4967bef2bec78a257e58 +msgid ":class:`datetime.datetime`" +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:43 +#: a08d3b7933ae42939fabfd13f6d815fa +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:50 +#: 29e7297008044e4ea82c9f41238467b1 +msgid "The source guild." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template:56 +#: 1c3d15b96df6417498447cf15dd2b44c +msgid "Whether the template has unsynced changes." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:45 +#: ../../../discord/template.py:docstring of discord.template.Template:60 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:73 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:79 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:85 +#: ad7ae992e9464d198f1ab9b5ae6b4efa +#: 12ce72db8325456abb69ea7e49dee965 +#: 552c670169364fadb0ff972c772da3ff +#: e15e3f0474eb49a38abc0a4cfee3ec65 +#: 171d55f872874ddeadf53a824013e40d +msgid "Optional[:class:`bool`]" +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:3 +#: 188d3a03174d45e0bc3e507f9284c0aa +msgid "Creates a :class:`.Guild` using the template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:5 +#: 1f7e68f47747482790c6bfde1f799131 +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:8 +#: d7855834282943ff8fe5f3f2e1586fb6 +msgid "The name of the guild." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:11 +#: eeda24219810402f9f0f4d863622e24e +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:15 +#: 9720111e71c14949bd37d4710e5ba779 +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:17 +#: 60fb7adfd729405c9622a41dac16e0e7 +msgid ":class:`.Guild`" +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:19 +#: ebe7523a8bfa43798097a7af866aa23b +msgid "Guild creation failed." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.create_guild:20 +#: cc161cedb24a49fa87c8e704c82d516d +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.sync:3 +#: 0b9f97db60654891ab2ac4487da374e5 +msgid "Sync the template to the guild's current state." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:5 +#: ../../../discord/template.py:docstring of discord.template.Template.sync:5 +#: 977e60b646b7448a8979fb130ee01916 +#: d5b5cda6bd5a4cd2876df80673368c1f +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.sync:10 +#: 4970e09963914887b0fcf223d3189144 +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.sync:13 +#: 86a98670847c4f308c3be4099d382b5f +msgid "The newly synced template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:21 +#: ../../../discord/template.py:docstring of discord.template.Template.sync:14 +#: 972be385b13d440092cdccd620111c7a +#: 31ac527e2325486c9969cbe14e8621bb +msgid ":class:`Template`" +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.sync:16 +#: 46a228ca6d6144b3b791081a13773e53 +msgid "Syncing the template failed." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.sync:17 +#: 63d20844750f4597802d03f9df32fef4 +msgid "You don't have permissions to sync the template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.delete:14 +#: ../../../discord/template.py:docstring of discord.template.Template.edit:25 +#: ../../../discord/template.py:docstring of discord.template.Template.sync:18 +#: 33c32e64d0434d23a47aa521c5f83dad +#: ed0d6daa8e704d6e90bfcaa41867634e +#: 42eb36b76278471d8ab6962e9afec68f +msgid "This template does not exist." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:3 +#: caef495a64ea4a2abf259a30923afff0 +msgid "Edit the template metadata." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:10 +#: 4f12d8ba2b4145f69e90b8808fdc0a07 +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:14 +#: cb045b76ee6c47549f43603081eed127 +msgid "The template's new name." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:17 +#: 24f040a38b8a45908cdcae4b34bb8cdb +msgid "The template's new description." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:20 +#: de911bbc2e0b44188641f650ea0b7be2 +msgid "The newly edited template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:23 +#: 5ed66316abce4297b32eb011363b5d7d +msgid "Editing the template failed." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.edit:24 +#: 7ad6202760ba4961891ab9718d7cc26b +msgid "You don't have permissions to edit the template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.delete:3 +#: afcc7d9d4e454de7902106a6a09e2964 +msgid "Delete the template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.delete:5 +#: 8b5a9e96266a4023b25f75b35b65796a +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.delete:12 +#: 907065e9899b4eeaad5ddd08f9203a20 +msgid "Deleting the template failed." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.template.Template.delete:13 +#: 2a4855817ddb4b6f926e1ca0101d5d7e +msgid "You don't have permissions to delete the template." +msgstr "" + +#: ../../../discord/template.py:docstring of discord.Template.url:1 +#: c8f3576f377c41bf991f59cc9514db58 +msgid "The template url." +msgstr "" + +#: ../../api/models.rst:166 +#: 225faf34ffdd44d1b1e7d780b7711787 +msgid "AutoMod" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:1 +#: c27d0bb1f5bf40568dc7702d3a3030ad +msgid "Represents a guild's auto moderation rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:9 +#: e3f6ffd480a947daacbb3ee3dc9bcc2e +msgid "Checks if two rules are equal." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:13 +#: 101d390cb41f4c62a44c8df8b739f11d +msgid "Checks if two rules are not equal." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:17 +#: d7b0787407c840b79eee4ad0c2df3ae9 +msgid "Returns the rule's hash." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:21 +#: e2877fcc254949309be5940913b5fa49 +msgid "Returns the rule's name." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:25 +#: dad5bb9babac4fa995acbc17f8802c23 +msgid "The rule's ID." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:31 +#: ca774a304f9a4d4baa6329ce8e864eef +msgid "The rule's name." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:37 +#: 6aa70ca12ef64846a5efe5890863cd66 +msgid "The ID of the user who created this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:43 +#: 06de674f376a4b4abe96c1042cc2a0e7 +msgid "Indicates in what context the rule is checked." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:45 +#: e7e6a53fb12b47838e344835380b52c9 +msgid ":class:`AutoModEventType`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:49 +#: 02beb191b9c142a48ff1df40a1e07b29 +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:51 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:23 +#: 848ba8fba5d94c7da78956880b9befd4 +#: 9d19e8306c4f4ad0a375e3810d3d6187 +msgid ":class:`AutoModTriggerType`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:57 +#: 45e34f01bab246e7ab8def22a7b3b766 +msgid ":class:`AutoModTriggerMetadata`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:61 +#: 42106214e93e46c48ce6a567c7e5d4a6 +msgid "The actions to perform when the rule is triggered." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:63 +#: 0437f0929c274d88b99010b4bd10e60e +msgid "List[:class:`AutoModAction`]" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:67 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:18 +#: 1b34d636f1674e9f9a8297e79af3aa07 +#: c3bf041c356d4180a72ff9ca397d7aa5 +msgid "Whether this rule is enabled." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:73 +#: 0759c70f615648d4b1b0b4c37556dd99 +msgid "The IDs of the roles that are exempt from this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:75 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:81 +#: 87c8fe8fea4441edb52f0ea109aaae0a +#: 2ad4982ea3ae46099c4200332619b812 +msgid "List[:class:`int`]" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:79 +#: 82153e076b5f42eca5f02ddfb4a738b1 +msgid "The IDs of the channels that are exempt from this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.AutoModRule.guild:1 +#: 66f75bf0d3964e8fa888333a284a7480 +msgid "The guild this rule belongs to." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.AutoModRule.creator:1 +#: 5902be937b934b3dab2737ac2ba90684 +msgid "The member who created this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.AutoModRule.exempt_roles:1 +#: ae0c2b3646bf4314a2b436f029353385 +msgid "The roles that are exempt from this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.AutoModRule.exempt_roles:4 +#: f2b2ce1dbc4a452e80b48de7fadf471d +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.AutoModRule.exempt_channels:1 +#: 3d1c090fe2744ae7920d9b41b93707c3 +msgid "The channels that are exempt from this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.AutoModRule.exempt_channels:3 +#: ../../docstring of discord.Onboarding.default_channels:3 +#: 4605c05e782c449fbb9df453c31e8668 +#: 2f0d321b2bbc4c6aa8ce1addc608e5b6 +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.delete:3 +#: e577fb88088d45699005b7a923d2ad0a +msgid "Deletes this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.delete:6 +#: 278ac7d30eb2425093e409cb04b02bdc +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:3 +#: 953c903154d94a5db43a89fd099bfb98 +msgid "Edits this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:6 +#: 9ad875341a1448938d88b24cdb962f43 +msgid "The rule's new name." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:9 +#: 0d476f45ec98457cbc8c01fe527b3058 +msgid "The new context in which the rule is checked." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:12 +#: c8306420574d4b5783433979e2595a32 +msgid "The new trigger metadata." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:15 +#: 9968061d3f5e47c29b419db205ffd58d +msgid "The new actions to perform when the rule is triggered." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:21 +#: 48142cdaf6284df9ac9a9d91fa05a605 +msgid "The roles that will be exempt from this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:24 +#: 9c486c6dcc47492ca546aca991afaba2 +msgid "The channels that will be exempt from this rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:27 +#: 110894ce28854cfa96d399b582d05d94 +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:30 +#: 6433b6a7db514d358a3f4093103a6389 +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule.edit:32 +#: d863f1c014244e438f267edde0a81727 +msgid "Optional[:class:`.AutoModRule`]" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModAction:1 +#: 5d6016062f7c41c0accd5c9c802d02fd +msgid "Represents an action for a guild's auto moderation rule." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModAction:7 +#: 2744effe31674cd6887f039aaf3150e2 +msgid "The action's type." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModAction:9 +#: 9a73c92ce0c1452f8dac5dec612f59f4 +msgid ":class:`AutoModActionType`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModAction:13 +#: 29f292c60c514b4fa71bcb95a03f98b6 +msgid "The action's metadata." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModAction:15 +#: 1cb00afaf1b44c83884bfb663de6ea64 +msgid ":class:`AutoModActionMetadata`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:1 +#: cd1d6707da27496d819b4bc93fa8d9a9 +msgid "Represents an action's metadata." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:3 +#: a88697345fec4d69b0da3b40328193d0 +msgid "Depending on the action's type, different attributes will be used." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:9 +#: adf66476594744779d49521c5f892de1 +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:16 +#: 2c9f4f06300e40a8b2478a5825b9df6e +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:19 +#: 43745dfaea0f48c2b061c077103091b2 +msgid ":class:`datetime.timedelta`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModActionMetadata:23 +#: 24850b9583a942e2b87b2024e264356c +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:1 +#: e6473b15bf1c4aab8d18c91cd7a68623 +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:3 +#: 9b6947b4ccf14e44a9ef208417f38303 +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:6 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:27 +#: 7ece475c494647459b908955f3d194df +#: 5f343f9895b2407d94bc12a541d60fdd +msgid "Attribute" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:6 +#: 8c548fe1a7c34ca6bce83e5e90e41f62 +msgid "Trigger Types" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:8 +#: 4496649362734b089d460cd8c7f67771 +msgid ":attr:`keyword_filter`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:8 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:10 +#: b3a97afc4a6d45f1b595e20dcfd61b00 +#: 3c13f6de0f9a48d08f67fc04de0ae59a +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:10 +#: 4af760617eae40a49267b86322b8311d +msgid ":attr:`regex_patterns`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:12 +#: b1e8ad230d1e49848260dc3ccdb4cd07 +msgid ":attr:`presets`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:12 +#: 3e776a67efb24799ba6d061c21ee7c35 +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:14 +#: 6d82b167b64941a8a2d1239c77d47bb4 +msgid ":attr:`allow_list`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:14 +#: 3fcd3e8edbb2474f87ca8ec502a448e1 +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:16 +#: baa8675fda194957a18f620d958af8da +msgid ":attr:`mention_total_limit`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:16 +#: c94a6bf582e5483d9a84c8933763bb52 +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:19 +#: 1c6c27691aac4d85b49add284a607515 +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:27 +#: 08cf564ffd8f4fdd85936d9e3a7d8739 +msgid "A list of substrings to filter." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:33 +#: ecc19b65d2a844dd9c3257978c9471f1 +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:42 +#: 8ec3997fd0a44fc5b1ba9942db04c3d9 +msgid "A list of preset keyword sets to filter." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:44 +#: 1a31537f646b42e287d2e35e283b37af +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:48 +#: 455fd824a9da48ec8d8ef2c2c5c43e09 +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModTriggerMetadata:56 +#: aef8ec696f474f2aa37e3d91d1cb8dc6 +msgid "The total number of unique role and user mentions allowed." +msgstr "" + +#: ../../api/models.rst:189 +#: 30ed9cbe01954df3a16f002ee6bb94c2 +msgid "Invites" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:1 +#: 69fba3baef004ee2b84142272ccce2d9 +msgid "Represents a \"partial\" invite guild." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:3 +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:3 +#: 45776a9178224707a1d5cf4ebfff169b +#: 8a3a15f5637043418f140e6b176be921 +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:10 +#: 89fb246f756446b38c7f3f3b535fdfeb +msgid "Checks if two partial guilds are the same." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:14 +#: 1f072902c7b1434897f2b821bf1f710a +msgid "Checks if two partial guilds are not the same." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:18 +#: a95177c93f494a09b14669a985cb009c +msgid "Return the partial guild's hash." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:22 +#: ef98a21ce76645eeb3b149d4b39da542 +msgid "Returns the partial guild's name." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:26 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:15 +#: 93d2a832d86246279c35490b6c878a86 +#: 3681c06afdd44bde9f0b415686d5796d +msgid "The partial guild's name." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:32 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:9 +#: e194cbb46c32457d858d2e294d45765b +#: 9aed39dd8c30499d97e05b280a228733 +msgid "The partial guild's ID." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:38 +#: 9aadc47d60734bb8abf3cf294402d4b7 +msgid "The partial guild's verification level." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:44 +#: bdd12952c5c54de4ad633d5a56475d15 +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteGuild:50 +#: 58805ad02d6a468e80400ef9c583bd6e +msgid "The partial guild's description." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:1 +#: 832a15deed5f4ef4b30ce4df2b19ee8d +msgid "Represents a \"partial\" invite channel." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:10 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:7 +#: 95e9950220b84e359463a51ad286e6c9 +#: 28ad5c998f5a48f2bfb7505f9ec03598 +msgid "Checks if two partial channels are the same." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:14 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:11 +#: 30b235b76e1342cf941b30523684f372 +#: 784c015a03fb4aec8c0d1fba8d555213 +msgid "Checks if two partial channels are not the same." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:18 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:15 +#: f9335d3f6f084e94a23c90b76421fca3 +#: 060afa96ddfa4a14898a058613c50652 +msgid "Return the partial channel's hash." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:22 +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:19 +#: cf5680cc558b4f1c9ee058a815a6aa99 +#: 664aa249be1b46318c0e740c9e33d563 +msgid "Returns the partial channel's name." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:26 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:15 +#: 141d223702fe42af8e2c67e1fe220ad8 +#: 58539d03253640188317fb1719225b3b +msgid "The partial channel's name." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:32 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:9 +#: 34fdd30888cc4a69a2ecff38e80c7735 +#: 5402dde36d8c4432886ee3a77ae11de3 +msgid "The partial channel's ID." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:38 +#: f303ce62e1f14e0da28ca61198536e08 +msgid "The partial channel's type." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.PartialInviteChannel:40 +#: b14920fd93004ab5816c641d6c994d31 +msgid ":class:`ChannelType`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.mention:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.mention:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.mention:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.mention:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.mention:1 +#: ../../../discord/invite.py:docstring of discord.PartialInviteChannel.mention:1 +#: ../../../discord/widget.py:docstring of discord.WidgetChannel.mention:1 +#: bf4b576b58b64dbcaa30f9f34b305d1c +#: 3845c35e16034685bf2c1c7cff1a922f +#: 334a5309b3314c8393fa74148058062c +#: d36c40a3775442d48acbbb1ef5dd1a1c +#: 83d814bb85ec44099118d84c71ab7c84 +#: 8708f6b3cd8f40559a1d70db4a613337 +#: ea2ced8c3b4c41d0a081c7bce51b374b +msgid "The string that allows you to mention the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.created_at:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.created_at:1 +#: ../../../discord/channel.py:docstring of discord.GroupChannel.created_at:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.created_at:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.created_at:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.created_at:1 +#: ../../../discord/invite.py:docstring of discord.PartialInviteChannel.created_at:1 +#: ../../../discord/widget.py:docstring of discord.WidgetChannel.created_at:1 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: 2852ea7f34b4407797239dbaa10f4d34 +#: 7d4768ec52984e95b2c7ff5804d75e52 +#: 220016a694e7464983a3b436779d790d +#: 7ba97d59e9ad431b9ce5ca31a306fffb +#: a9c54c2948324d5bb3b440c02c8bbd4c +#: e6fdc1e905a943a9a34e12ea0e6cda4f +#: b7e68c8e5f9a4301ba43b43a232ea430 +msgid "Returns the channel's creation time in UTC." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:1 +#: 6e1375d7315842f389240d361f9e940f +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:10 +#: 40c79e3afa054125ac51372fff62c627 +msgid "Checks if two invites are equal." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:14 +#: 88ce1ecfb798467da639a3bf341c04a2 +msgid "Checks if two invites are not equal." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:18 +#: f627201143cb4f289aa3fd1b82dd7a5f +msgid "Returns the invite hash." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:22 +#: 812a6ee84f4046a699ba426c6add7d28 +msgid "Returns the invite URL." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:24 +#: be54ec540e4d4166ad2b1edfaf5f7562 +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:27 +#: 67b0891cfb804ad7b5cf90f89d770328 +msgid "Method" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:29 +#: caff775708cd4876a15508a9fdb66328 +msgid ":attr:`max_age`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:29 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:31 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:33 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:35 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:37 +#: 888ee5b5c54841b18baa7f2ba1dfd8c2 +#: de8b1db9e91d4eabaa8ab7b6da63a444 +#: 4ccaf1aeaae8416cb4159b490980b6cc +#: 23894709ba054b7ba1eafa295fc1ed73 +#: ec2336d9969e45d4b88b12e9076282bc +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:31 +#: ad799b98576649d8802dcd295ebc0dd9 +msgid ":attr:`max_uses`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:33 +#: e0a962b6bbda4f739665deac7489d153 +msgid ":attr:`created_at`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:35 +#: 8d8febf96d094432b54a0b48f74bad39 +msgid ":attr:`temporary`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:37 +#: d4805f27f1dc4d7999b200935cb75e97 +msgid ":attr:`uses`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:39 +#: 8c30a6bf469647fba6e2394ee934abae +msgid ":attr:`approximate_member_count`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:39 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:41 +#: 38c5c5e52ebf42a8a131562a6bf58a86 +#: 609997d03f0c4a3280fcd2919b035b5b +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:41 +#: e10dd807365640f1a2ec881e571ec9af +msgid ":attr:`approximate_presence_count`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:43 +#: d8f7449f7d3d4bc0893e0ee643fa117a +msgid ":attr:`expires_at`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:43 +#: 4ac46789b8f642ddaf4c5e54851c4dd7 +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:46 +#: b4a65c6404244f719d338f5e80b7a68f +msgid "If it's not in the table above then it is available by all methods." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:50 +#: 71c850531d60478ebabc66051e813fdf +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:57 +#: 662de69e9fae4578bf4142bd3dc1d7bb +msgid "The URL fragment used for the invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:63 +#: be8e6c9dd831487bb751f81d56d1a2cd +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:65 +#: b1392531abbf409a8e7c252b057ae900 +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:69 +#: e5816f6ab311461f86b05afe960120d0 +msgid "Indicates if the invite has been revoked." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:75 +#: e19f71ea88dd4ba38b5550b82e75abef +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:81 +#: 5d28782dd7694324949984de51047486 +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:88 +#: a896b00f401f47b3bff014a4652f5d11 +msgid "How many times the invite has been used." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:94 +#: 00069cbcc5e347768ef002d8f2f1bbb4 +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:101 +#: f5152bae14734569aeef4a6b6f207e59 +msgid "The user who created the invite." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:27 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:43 +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:76 +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:39 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:103 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:147 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:84 +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:60 +#: ../../docstring of discord.AuthorizingIntegrationOwners.user:4 +#: cc61dfae294c4579ba596a34ef3fa088 +#: 2bafe44becdf494d8ac697df0bebc21a +#: ee4e48bedeb7470a896959c9de24e6f0 +#: 23b5c045400d4b02bf4ed61caa5a274a +#: 62639481ae7a428281f424d1bc34903d +#: 98f564628ca04a19b6b3eda794e125ae +#: f40eb064d1984b3a8508af05a943ed46 +#: f6850a4714a44aefb5eff84e958bb28d +#: ba3b522439514a4a9123597af4903bda +msgid "Optional[:class:`User`]" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:107 +#: 092635739e83496eb3cfaf0b1e9893bb +msgid "The approximate number of members in the guild." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:113 +#: 21544a9ae3414724afee94ec77100e81 +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:120 +#: 0fb015a916f84ff79a330f0846477afa +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:129 +#: f884e37b37a34004b7a60715f9c7e323 +msgid "The channel the invite is for." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:131 +#: cc72df05282c45baa3c3a91d6478083c +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:135 +#: 39b0750e8cbf48ae839656f658244074 +msgid "The type of target for the voice channel invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:139 +#: b032b0fb8cdb4d8f8c23635f64d87c28 +msgid ":class:`InviteTarget`" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:143 +#: f6ce14dc542f41d58faf3343fe7e3588 +msgid "The user whose stream to display for this invite, if any." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:151 +#: 1284111c547e490395ccd35e0a06b0e5 +msgid "The embedded application the invite targets, if any." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:155 +#: e5acecac4ece457db47dac10f2bb7aea +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite:159 +#: aa16b1be4bc549659e87c7c8bea28707 +msgid "The scheduled event linked with the invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.Invite.id:1 +#: d78e636501ba4a9496c3e2d74742b9c7 +msgid "Returns the proper code portion of the invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.Invite.url:1 +#: c86c778cb8704643a0aff10ce58e44f7 +msgid "A property that retrieves the invite URL." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:3 +#: 8daafc92ded341cab14f98fbf27ae51f +msgid "Revokes the instant invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:5 +#: 85148c52c6af4d47a184d6dd44768251 +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:8 +#: 441bb5982c4b41f9bbb8564a33e9f82a +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:11 +#: 320594922ef34be8afcd2c84ca73a327 +msgid "You do not have permissions to revoke invites." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:12 +#: 27532139278643cca80692a6913ecc8d +msgid "The invite is invalid or expired." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.delete:13 +#: f5b462234a1447cbabc2f3d30423b54b +msgid "Revoking the invite failed." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.set_scheduled_event:1 +#: 0b28b765bed746be8b84b9c2bbebbbc5 +msgid "Links the given scheduled event to this invite." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.set_scheduled_event:5 +#: 40b1ead2f26c44be9f8d235e30913fa7 +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "" + +#: ../../../discord/invite.py:docstring of discord.invite.Invite.set_scheduled_event:13 +#: 7ed4e3948e6d45278da021e5a830aeb8 +msgid "The scheduled event object to link." +msgstr "" + +#: ../../api/models.rst:207 +#: b0b4dba2274847c2bc1e96752ddd4675 +msgid "Role" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:1 +#: 14f0b3819e864b7a89db5d4552ee08d8 +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:7 +#: 76cac8abf7bf49a2b8a67fccd3be816a +msgid "Checks if two roles are equal." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:11 +#: b92755862c7d4471bd1889e2ba7981ec +msgid "Checks if two roles are not equal." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:15 +#: 436f1560b791441cac322a7967adad6c +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:19 +#: cd79ad1c57ef40f7bba566449bc33b61 +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:23 +#: c1720665fb4345feba29535022d8b9d0 +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:27 +#: 5885ab2ad4294d468d632b657112f8b5 +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:31 +#: 244e8fd76d424931a3d287e634510aff +msgid "Return the role's hash." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:35 +#: 0cb4be6ef3dc4b808045712f1dbd5e6e +msgid "Returns the role's name." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:39 +#: 5d81164f7c4c4823aff92d0c6d7d5050 +msgid "The ID for the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:45 +#: 511691ba37f34cbbbe377481dcbd99bd +msgid "The name of the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:51 +#: 31505115fa5a44068bab84354a5cd954 +msgid "The guild the role belongs to." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:57 +#: 62642a7712b54bd39f19c1ce29d2e5c4 +msgid "Indicates if the role will be displayed separately from other members." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:63 +#: 5f7db28911cd408096024e3b849cb7cc +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:68 +#: 6d87eb7337744266b5b769b4d5eb238f +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:78 +#: 71708c2052ef460cbf50e18eff7472ff +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:85 +#: b9bafa1eea5a42449a950ef3b3948003 +msgid "Indicates if the role can be mentioned by users." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:91 +#: 90292a8451094a81b831a50845ab0581 +msgid "The role tags associated with this role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:93 +#: ce68cf07f32542ee887cbfe498cd4506 +msgid "Optional[:class:`RoleTags`]" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:97 +#: 6b477dc220bf4cd0affb1801794c7c46 +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:106 +#: fa704dc55e8b4bc89b983325045fb26e +msgid "Extra attributes of the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role:110 +#: 235c07739380495f822049acb2f71763 +msgid ":class:`RoleFlags`" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_default:1 +#: f8b5d7e6df82406bb4c5f9cfdb6dc7cb +msgid "Checks if the role is the default role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_bot_managed:1 +#: abaa9e6454b3434897bdb6657fb9c73a +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_premium_subscriber:1 +#: 57a256a1d1ec47d8bd23a3f5a026fde3 +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_integration:1 +#: adc96808a0f849419bffb0291dfcf2e1 +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_assignable:1 +#: c2e51432847743fba93caa703ec89c5d +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.permissions:1 +#: 7902c3504ac24ac0a24155bd9bcbce40 +msgid "Returns the role's permissions." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.colour:1 +#: 4a391466dd224b78895dc3b4dc98a713 +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.color:1 +#: fa84130cdb2e41b9aeabc2461ce3e03f +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.created_at:1 +#: 0bc0e2c3149a4903900a6cc2688c0f81 +msgid "Returns the role's creation time in UTC." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.mention:1 +#: 5c6d4251d1054c46b5866e2562db0ec8 +msgid "Returns a string that allows you to mention a role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.members:1 +#: 43e2f1a35d6542c5b9bcabb86ce49a1f +msgid "Returns all the members with this role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.Role.icon:1 +#: f550271db031424d9bb95b4b4c6b3dfa +msgid "Returns the role's icon asset, if available." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:3 +#: 6a0db6cfac2441b6b52b131acdc42943 +msgid "Edits the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.delete:5 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:5 +#: 1342d2d0aed64ae7ba75ee42534a7a8b +#: e359cd8555cb4cd88176eb283ea57b7f +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:13 +#: e453bb534cfc463fb008712c93126d97 +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:18 +#: b13aa6c81fc8460b8170b67aca970828 +msgid "The new role name to change to." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:21 +#: ca4744954a454ba08c142db3547c4ee5 +msgid "The new permissions to change to." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:24 +#: 57f0dcf8c8a84faf89677dc7c270c68a +msgid "The new colour to change to. (aliased to color as well)" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:27 +#: e9916faa46634b49ad0598b3084eaea2 +msgid "Indicates if the role should be shown separately in the member list." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:30 +#: c4bff8c51bfe4f7b8d4f5211f9c79a79 +msgid "Indicates if the role should be mentionable by others." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:33 +#: 6d9bace9d861488894fc85bfcd50b3dc +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:37 +#: abeffd1a802842c2a6493224e6f02d2b +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:40 +#: bd9f0feaf75b4b3f8587fd19981f6ae2 +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:50 +#: 4a9a00d62a984236a0ad4aefa11e685f +msgid "The newly edited role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:53 +#: 726a634f83fd43c6bacebf07a8dcfd2b +msgid "You do not have permissions to change the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:54 +#: b2728a1bd3684723b2562070971b253b +msgid "Editing the role failed." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.edit:55 +#: 2ef1a6690c73422cb2edead785d1e265 +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.delete:3 +#: b1c68744b35b41d7b9fc7ad838756aff +msgid "Deletes the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.delete:9 +#: 09634e2e93d24ddabd7e058a560ff8fa +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.delete:12 +#: 8c1678106db14993b38b64ab433391a4 +msgid "You do not have permissions to delete the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.delete:13 +#: 3d7c30b23b9c4b35ade1e6a1e0bd2d73 +msgid "Deleting the role failed." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags:1 +#: 3ce6d748ce74481dbd88eaa208d8d38c +msgid "Represents tags on a role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags:3 +#: f055b2214fc846c69dafe51a7828d5c9 +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags:6 +#: 7b96a689baf942ce8c8d44c556ca1315 +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags:13 +#: cefbfbe8367243c9873b7f3e6efd68cf +msgid "The bot's user ID that manages this role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags:19 +#: 05a238fa0ee54228891c9067f660ce29 +msgid "The integration ID that manages the role." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_bot_managed:1 +#: 32f901508cfe434eaa834608ef0a2813 +msgid "Whether the role is associated with a bot." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_premium_subscriber:1 +#: 99c432602c464398bf8657a5d7720033 +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_integration:1 +#: 8cd2b27c79a1497d9fe2ed01efa457c8 +msgid "Whether the role is managed by an integration." +msgstr "" + +#: ../../api/models.rst:220 +#: 501c6b29607b4c55ace35858ceb2e513 +msgid "Scheduled Event" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:1 +#: 10e0de9eb9274b9a90009e1d986359bb +msgid "Represents a Discord Guild Scheduled Event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:7 +#: 338d7d42898a41c1aa76bae4170d62d5 +msgid "Checks if two scheduled events are equal." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:11 +#: c94e50d69c844f7ab6df2b14c4dfd011 +msgid "Checks if two scheduled events are not equal." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:15 +#: 63533c1674a54dd38883de86d857fadd +msgid "Returns the scheduled event's hash." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:19 +#: e6e8056199704fb19bebfa19fbd84a0d +msgid "Returns the scheduled event's name." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:25 +#: 1dfe359919ac4a94a5753514a83b8ee4 +msgid "The guild where the scheduled event is happening." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:43 +#: 7db26903f71241b8b5d862be13720ff4 +msgid "The time when the event will start" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:49 +#: 4a373162831b42a280178408697638a0 +msgid "The time when the event is supposed to end." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:55 +#: 7fa115df6d194b9eaf2c37b4960c54fb +msgid "The status of the scheduled event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:57 +#: beaedb41ec2840239f556ef2b031ce7c +msgid ":class:`ScheduledEventStatus`" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:61 +#: 06f7d4894f104c109e7f423cb180b019 +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:64 +#: 5e1cf8c0e6574b238759f48a2beb96bd +msgid ":class:`ScheduledEventLocation`" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:68 +#: 0e52f18181e548e2b175255bd6ce27dd +msgid "The number of users that have marked themselves as interested in the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:74 +#: dceb5b236844473e86a48e3ee1e9fc9e +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:82 +#: 5ccd05fa01e64cf09322dd166b85f5c5 +msgid "The resolved user object of who created the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:88 +#: 2dced7676e174ab0848be9afd308410a +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent:92 +#: 4ea359d726ae4aa28a9dbe385e18693d +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.ScheduledEvent.created_at:1 +#: 739d9ebd38654aa199a2ca98c2ac31b5 +msgid "Returns the scheduled event's creation time in UTC." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.ScheduledEvent.interested:1 +#: 249062afc1644255b779d2c32eb3606f +msgid "An alias to :attr:`.subscriber_count`" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.ScheduledEvent.url:1 +#: a6c5206b2783448885037dd254cfcc5a +msgid "The url to reference the scheduled event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.ScheduledEvent.cover:1 +#: ../../../discord/scheduled_events.py:docstring of discord.ScheduledEvent.image:1 +#: 5438a938169f4597aa1a5242f21d12e2 +#: 024fbcc9b9474b83a41b9e54f6bb2a3c +msgid "Returns the scheduled event cover image asset, if available." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.ScheduledEvent.cover:3 +#: 5374a22bf91b40c59814524886eb6790 +msgid "Use the :attr:`image` property instead." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:3 +#: 0f0bbd18446341ed961bf49012e47619 +msgid "Edits the Scheduled Event's data" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:5 +#: 0825ab9a3ac7430aaf4fbebb5f494030 +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:9 +#: b05ee511b9f641ca968da622ca3cff17 +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:12 +#: 9240e0b449764b00832cc50af78f4c02 +msgid "The new name of the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:15 +#: 5466aa4697994643ad1e42485bcb4530 +msgid "The new description of the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:18 +#: c550fa6d58a24a3c8eaf6c88e9d288a2 +msgid "The location of the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:21 +#: 012b9b8518bf489b8b78ea88133fc122 +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:26 +#: cc71d9959291468e8b68b66491f03ef4 +msgid "The new starting time for the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:29 +#: 2918c259d7114424aba68bcb28771575 +msgid "The new ending time of the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:40 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:43 +#: cdfb40b39a994b05a328decf47ec528d +#: 29e8578fa8e348dc8c055c7893c9da6e +msgid "The cover image of the scheduled event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:43 +#: efc47c7c1d6d46ecb3948046ef60c88b +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:45 +#: 1d36d39c01a24d3f9ecd5093343f501c +msgid "Use the `image` argument instead." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:49 +#: ed2a50594a6c4c67b633ce1f269cae09 +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:14 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:14 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.edit:51 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:14 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:59 +#: 29af72e8c0344ccb8418d3680362e11f +#: c9a946376c044be8ac18f9577b947d86 +#: e2cf9ca830f14945b40d524e8e4ac31a +#: 2ff94e63b5414549b8d17bef9b53c5dc +#: 8ea327279d484e47b555b10b24fe81ae +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.delete:3 +#: ff7f51d150fb4766815a206e71c0dec7 +msgid "Deletes the scheduled event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:3 +#: 4958b434b9cb4d289319db632ca44181 +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:7 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:7 +#: 0c1c2e3e84764a568b297d90d0b75c5c +#: 38a7f78f29bb4513a7c66d8e4f76880e +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:13 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:13 +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.start:13 +#: a64cb72cf711477f9207ff71bbd6fe6f +#: 7a90e7aae7454f79b9065bf90aae825f +#: dd20762f3968485aaf0f1473530119d6 +msgid "The newly updated scheduled event object." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:3 +#: 8cae4739d8e44a1fab241670b0bf776d +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.complete:7 +#: d4a3e8de49d348b89d7b8477fd4bf250 +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.cancel:3 +#: 9914bb7334d24671a216557961e06dda +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:1 +#: 68731f25d3ac41da925136d5120ea267 +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:3 +#: 0918ed64d7194f8c99486ce6f9bbb63a +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:8 +#: 650d1964db3d415184de61f1f7b17d35 +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:12 +#: 5402be59de4d467f84400c7be1993911 +msgid "The maximum number of results to return." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:15 +#: ecd0ce1df77242cb97d8dc7cceec24b4 +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:20 +#: b8de116ec76b417bb07bca3005600f2c +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:25 +#: c6856b5aac894500b8b84fcc31b1b38a +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:30 +#: 8671805c66244008905e0ebf131d47f0 +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:34 +#: aa2b527516c44c569aff79684995a1ba +msgid "Fetching the subscribed users failed." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:35 +#: 96236c596b12476284b35f3f352e6df6 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEvent.subscribers:49 +#: bd1bc81cad8b496aa9b9a5e90585f5b5 +msgid "Getting members instead of user objects: ::" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:1 +#: ef94d3ad86b54127b54e63206f010f5d +msgid "Represents a scheduled event's location." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:3 +#: 9aa9d7eadef24ce28f0064e5b979e562 +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:6 +#: 7bc32d48f49d4be99491c05be1a98851 +msgid "Type of Input" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:6 +#: 29525c9aa20c4dda9afbbf810b4096fd +msgid "Location Type" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:8 +#: df99d5de02784c35a91a783590e60dd9 +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:8 +#: d87e2ab2c93848258ff304f6fcc46ca4 +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:17 +#: d242449192c44c94af25f194a83e40ae +msgid "The actual location of the scheduled event." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:19 +#: 55879a88833246c9ae72fb9d33df5445 +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:23 +#: 3dce7682f6a949d98c73d003368d6139 +msgid "The type of location." +msgstr "" + +#: ../../../discord/scheduled_events.py:docstring of discord.scheduled_events.ScheduledEventLocation:25 +#: da80a8bae0e64be2bb5e162a771b6a93 +msgid ":class:`ScheduledEventLocationType`" +msgstr "" + +#: ../../api/models.rst:231 +#: bd728eaba2b94cb59255cd2be9d0a4a5 +msgid "Welcome Screen" +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen:1 +#: 3a9a9b015d3843bbb893b7756919f4f3 +msgid "Represents the welcome screen of a guild." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen:7 +#: 1d1b937ea9854e96a28ef28316e74f1e +msgid "The description text displayed on the welcome screen." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen:13 +#: a6c019bb099f4ef5a5dffc399c47e5d0 +msgid "A list of channels displayed on welcome screen." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen:15 +#: 29ebb991339244c98e862232952bed14 +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.WelcomeScreen.enabled:1 +#: ab609b9ab2954498ac49f8cbf81a92f1 +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.WelcomeScreen.guild:1 +#: 4bf7a0f55663483493297c10bc4d1fe7 +msgid "The guild this welcome screen belongs to." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:3 +#: cc0bf1a0c7e84527bf801eed13078bc4 +msgid "Edits the welcome screen." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:22 +#: 6f82ed1675044aa699bde2749a2ab5e7 +msgid "Example" +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreen.edit:38 +#: e31a24db1a4e4e9391ec0fd6872992ac +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:1 +#: d6341ad4205a4369988579907602c902 +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:7 +#: 5c9f94dfbcaf49beb2c47bb0f81fe100 +msgid "The channel that is being referenced." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:9 +#: 8d53c1fea1ed4bc4b42468d6682605b5 +msgid ":class:`abc.Snowflake`" +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:13 +#: d1574884bdf44266b4c3364b6f302c7a +msgid "The description of the channel that is shown on the welcome screen." +msgstr "" + +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:19 +#: db5cf07c9c1c4763bb1b294c64f3d247 +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "" + +#: ../../api/models.rst:244 +#: e2ae072aa4324f3fb90878fc5cfbd742 +msgid "Onboarding" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:1 +#: f51c0b9e44d241c2a01c5cb93e225f1e +msgid "Represents the onboarding flow for a guild." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:7 +#: 271b317948ee4af9ac01057fa6097d2e +msgid "A list of prompts displayed in the onboarding flow." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:9 +#: 53d298867f0c486d98071115179a949f +msgid "List[:class:`OnboardingPrompt`]" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:13 +#: 96c4cd419cd3476793dc4c22dc0b8175 +msgid "Whether onboarding is enabled in the guild." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:19 +#: b3abc10736334f98852bb312a0b4df26 +msgid "The current onboarding mode." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding:21 +#: dc0e91b6bea547bb823242eb1af6537d +msgid ":class:`OnboardingMode`" +msgstr "" + +#: ../../docstring of discord.Onboarding.default_channels:1 +#: ac0131664589453fb988bfb2f8a3e052 +msgid "The channels that members are opted into by default." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:3 +#: d20857ae9f4f49299f0af0e6a13c5f15 +msgid "Edits this onboarding flow." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.edit:23 +#: 2d2ecabe5aee4e3596e250d144f1b17f +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:3 +#: 7d4d8143818740ffbfe9e04ffa131da6 +msgid "Adds a new onboarding prompt." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:9 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:13 +#: 0dd701dcf1ed49b09e55f614e36c0301 +#: ecd8f9f2ec484ca495619ce7bbb17de5 +msgid "The type of onboarding prompt." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:12 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:19 +#: 6700d1737c4640a1a5e0c6c939a0fa53 +#: 715dd55ae9e14999bbe9c6b5e0f41e56 +msgid "The prompt's title." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:15 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:25 +#: 12fc1d61e1c04c398375cfcebedcf0be +#: 85efda61b7774a119b25f106839ef5b6 +msgid "The list of options available in the prompt." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:18 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:31 +#: 70201762314944bdbac8ef5b336e95a7 +#: e8663ed7cd35429bb081a514911aa71e +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:21 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:37 +#: c3b4464213de424f9c6a0efe01a7ad89 +#: 865581e34c1f48a5a9f49f850997b4e4 +msgid "Whether the user is required to answer this prompt." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:24 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:43 +#: 736b84d05e0a460ca50bbea976a37066 +#: b4340fc546cc4eb28fa85527edf4918f +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.add_prompt:27 +#: d14ad3d6830b490ca80590d0877dd87a +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:3 +#: 5a0236baae0848e6b052bb23a9d0afc0 +msgid "Append an onboarding prompt onto this flow." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:9 +#: b4c7b2ff81fc46aaaa37979ad8eb246a +msgid "The onboarding prompt to append." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.append_prompt:12 +#: 8564639152384b80938ce5ca87315fb2 +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.get_prompt:3 +#: 975dd453a349453f9b0b86b8a4300162 +msgid "Get an onboarding prompt with the given ID." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.get_prompt:6 +#: 16e168dd301b427b842e30432a032d54 +msgid "The ID of the prompt to get." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.get_prompt:9 +#: 2327423e92d74575b26527572486abe2 +msgid "The matching prompt, or None if it didn't exist." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.get_prompt:10 +#: 750e3a157b1e43b8a91675c7fbf92d5e +msgid ":class:`OnboardingPrompt`" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:3 +#: de814b3d090c4b76828a46c8f937f906 +msgid "Delete an onboarding prompt with the given ID." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:9 +#: f972e03f78734bd890086b0e3e25cd2a +msgid "The ID of the prompt to delete." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:12 +#: cdcf43e9ffdf4c77952652485c2867e2 +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.Onboarding.delete_prompt:18 +#: 09d52410084d43a39931d71b0da0e2c2 +msgid "No prompt with this ID exists." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:1 +#: e9bbcc00172d4571aeb8a1aaa2fcffcc +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:7 +#: 40574c40da6a4ed6beca51ba233bead3 +msgid "The id of the prompt." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:15 +#: 685b6eedf1484c94aeea4dff12247f40 +msgid ":class:`PromptType`" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.OnboardingPrompt:27 +#: 83dacb7ae96c43a4b4917f49fb6e496b +msgid "List[:class:`PromptOption`]" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:1 +#: 4512d47250fd4664bc1928c5050aabf3 +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:7 +#: 5d260ad66d5746919fedb99cc3ebaeb1 +msgid "The id of the prompt option." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:13 +#: 39216b8c9a634b2fa67406bbd8a8f7e3 +msgid "The channels assigned to the user when they select this option." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:15 +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:21 +#: 6efdd1d676b6498ea7a7b933c7a4fcc8 +#: 62da135147244c799bbc1e3fb9322728 +msgid "List[:class:`Snowflake`]" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:19 +#: bf357dbe14854415b2edcde082511a2d +msgid "The roles assigned to the user when they select this option." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:25 +#: bea61aebacbf44cd938740a0f103f3de +msgid "The emoji displayed with the option." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:27 +#: 201b7a7c20b7462080d7ef962f18c186 +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:31 +#: d5adad86add84b7980b126a6cd5977bf +msgid "The option's title." +msgstr "" + +#: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:37 +#: 1e50bdeb3b6748af981acd85600a1abb +msgid "The option's description." +msgstr "" + +#: ../../api/models.rst:262 +#: 336df85a4c564d0e9187eaaab07e05fc +msgid "Integration" +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:1 +#: 1785bfbb2cbe44d7b237f2f2c73a769b +msgid "Represents a guild integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:13 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:13 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:13 +#: 9796bc5b9de64095a1c6c4b1297d91e1 +#: e91540c9734b4b44bda903db586502d3 +#: c9585fb6d7ba487d8d7792f2e9f1e22c +msgid "The integration name." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:19 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:19 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:19 +#: ee79d1da943c4e048638ebf74603e904 +#: 22274f9d2e7149babad5765c79efc4ef +#: c6b8304bf895419ab49e73820cd7ab81 +msgid "The guild of the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:25 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:25 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:25 +#: a15dc03a69304c0ea67001bdcc74eeea +#: bd7b96d2629b48d7ac93d14b339bcb95 +#: 33f8c84ddbf2427d8a467ca6dcfac61f +msgid "The integration type (i.e. Twitch)." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:31 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:31 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:31 +#: 7bd5e756a20541969248ddb62fce3937 +#: 9a1405657fe1441c8bffe2023e0ca86a +#: 98fb142c06e1405fbe6bcb5b192effcb +msgid "Whether the integration is currently enabled." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:37 +#: d3600becb7c747b58990065d4e6a10e1 +msgid "The account linked to this integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:45 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:39 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:69 +#: 21d3b7a2c2794cbb899e0d71e058a150 +#: 360555b111264206a0a4613cff134664 +#: b5d31cf64e8b4f79b09ffa99b3126428 +msgid ":class:`IntegrationAccount`" +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:37 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:43 +#: 457c653cc8d74125bcd46da778f939b9 +#: 018c6cde15b84e0f9e13bd23a4b4f6bb +msgid "The user that added this integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:3 +#: 8b3ffbaa59b14c90a9fc7afa45026e2d +msgid "Deletes the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:9 +#: dd5935769aea469ba10a8a1d3a8bbc1b +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:9 +#: 734f9399d86e4b8e9a1def95909ec9c3 +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:14 +#: ea6d867ff2b64f0784fe1cd4a3643563 +msgid "You do not have permission to delete the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration.delete:15 +#: fc5b286ea45942b0aa4ccc4fa2650448 +msgid "Deleting the integration failed." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationAccount:1 +#: 051f5baa31ad4608a77a9235e725f749 +msgid "Represents an integration account." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationAccount:7 +#: b46ce6c022144379a08da3c7e379031d +msgid "The account ID." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationAccount:13 +#: 50cde552d4454560ae462e981472bd31 +msgid "The account name." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:1 +#: d4f2fb2b97b0466daffc259ba311fa14 +msgid "Represents a bot integration on discord." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:43 +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:67 +#: 0b0e4b93e0074ce3bde5c03b1389b3ef +#: db5438c808e041be8af8f678d97b533a +msgid "The integration account information." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:49 +#: 3d2f746f188b48fcaa0c20d7e321d9b1 +msgid "The application tied to this integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:51 +#: 6f321f9ee8bf422d9c0d4d54a6dc99b9 +msgid ":class:`IntegrationApplication`" +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:1 +#: a7dc168070fb49c3a3446ea00d0e15df +msgid "Represents an application for a bot integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:7 +#: acce68a625bc416282a380ec7f49a537 +msgid "The ID for this application." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:13 +#: de98dede40cc4d77a38831d433b5387d +msgid "The application's name." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:19 +#: bffed0c8dada4975a6e439912fba1f4e +msgid "The application's icon hash." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:25 +#: 3e80d9ebb4f64ac7b9acda712293a428 +msgid "The application's description. Can be an empty string." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:31 +#: 0c1c24e1fe04467eab04f0003f56c375 +msgid "The summary of the application. Can be an empty string." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.IntegrationApplication:37 +#: aea523fa81074e9dbd69e8c156914b31 +msgid "The bot user on this application." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:1 +#: c68676e831784f818ed983ef682555db +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:37 +#: 24d03d37cb52482d89c62b6b84ef4311 +msgid "Where the integration is currently syncing." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:43 +#: 3593d31955bc4632bb4985471e78e098 +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:49 +#: 6e0ac92b80784da497c721645009c8e6 +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:51 +#: 7a4de949a3f049bb9a4c83c33675d557 +msgid ":class:`ExpireBehaviour`" +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:55 +#: e03d6eec6012477790d4eae99a4f1a39 +msgid "The grace period (in days) for expiring subscribers." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:61 +#: c030974a1da14562a4a19d1b747cf27f +msgid "The user for the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:73 +#: 34ac350a5f24416c9dd75923281ec2c7 +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.StreamIntegration.expire_behavior:1 +#: 677c8eaf2fb84d439ecf639d5a7032b2 +msgid "An alias for :attr:`expire_behaviour`." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.StreamIntegration.role:1 +#: 0e4777b133bd43ef9717d00fa475dfe6 +msgid "The role which the integration uses for subscribers." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:3 +#: 762cedc36f1645f48f9f5a0d9d2fc27e +msgid "Edits the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:9 +#: 27c5d6ff298146d0841521848de21afb +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:12 +#: 7b5cde27ae5e419bb307f66f6fac1144 +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:15 +#: 583eabb6e09b477bae17d461579d8e60 +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:18 +#: 5c7199415d0646a0a3771e3e3f68769b +msgid "You do not have permission to edit the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:20 +#: 7ee08cacd7934777ba8ce2f3f00e8696 +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.sync:3 +#: 18a0bc5e019c479aa91eced9307c5419 +msgid "Syncs the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.sync:8 +#: 4888b65407a843ceaeb05eccbe0cc4e8 +msgid "You do not have permission to sync the integration." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.sync:9 +#: 03487c76dd8843a5ba8ae916bddd7e62 +msgid "Syncing the integration failed." +msgstr "" + +#: ../../api/models.rst:280 +#: 9cf29fbd2890454db490e0730bd67152 +msgid "Widget" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:1 +#: 1d87c6fd0c164a4585b06b69648cfad6 +msgid "Represents a :class:`Guild` widget." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:7 +#: eb2b35ab9969443bb0ec92c7427dcacf +msgid "Checks if two widgets are the same." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:11 +#: 595eef4d74ad40719f2926f63d720866 +msgid "Checks if two widgets are not the same." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:15 +#: 77237a33c4324d729d14829db8440658 +msgid "Returns the widget's JSON URL." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:25 +#: 9b2d03f0d394413c849737a5730a5637 +msgid "The guild's name." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:31 +#: bd6ffaf6e5aa4480b9a3ec32545bb678 +msgid "The accessible voice channels in the guild." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:33 +#: 433e644b5a464d99965275aa2bdf5113 +msgid "List[:class:`WidgetChannel`]" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:37 +#: 2cdd2806026540edb70d2f1f54362cf6 +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget:42 +#: 491aab7c0228443e98dd0634065be810 +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.Widget.created_at:1 +#: 994e3f551fdc4c33aff57bbf415915ea +msgid "Returns the member's creation time in UTC." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.Widget.json_url:1 +#: b990bc2341be4bda99857899e6781163 +msgid "The JSON URL of the widget." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.Widget.invite_url:1 +#: 1814a1e713b24e2d97c981eff1c125f9 +msgid "The invite URL for the guild, if available." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget.fetch_invite:3 +#: 840a71ef091143abb364c22f4d133ca6 +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget.fetch_invite:8 +#: d75451ea4129492c9596eba0da52ecf1 +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget.fetch_invite:13 +#: ff90e8c1588b42c5a22917055eec9364 +msgid "The invite from the widget's invite URL." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.Widget.fetch_invite:14 +#: 580b931e16cc43dda7c757392c9d60e9 +msgid ":class:`Invite`" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:1 +#: 3acbe0815eda46edb6098d348f866bfe +msgid "Represents a \"partial\" widget channel." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:23 +#: ded97df4dda74dd080c94aaa4e540000 +msgid "The channel's ID." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetChannel:35 +#: 72f9a68665cd4bf7aac6cf2bf68c1cd7 +msgid "The channel's position" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:1 +#: d5394f7afc754b288c64a3f1f72932d5 +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:7 +#: 9999d783bb9f4dc18b91d2cd85068ebe +msgid "Checks if two widget members are the same." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:11 +#: 35731aff615f4dff845ae775b414311a +msgid "Checks if two widget members are not the same." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:15 +#: 0f4e9d0cd50a4b1d91351ab5d94c3979 +msgid "Return the widget member's hash." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:19 +#: 7bb172beacfe4617aa83c641cc3f2576 +msgid "Returns the widget member's `name#discriminator`." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:23 +#: 7443575f9f214e1699b8e4cfa95ab02c +msgid "The member's ID." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:29 +#: ed8828093ef343208bf15ddf3093d61e +msgid "The member's username." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:35 +#: 476e5b58d05d4f0ba6d0c2efc1a612bc +msgid "The member's discriminator." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:41 +#: 52e4f22308a84c2e9d95fd17ea2b4e5f +msgid "Whether the member is a bot." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:47 +#: 7fb6bb5298914dfaada7d31d17e859c0 +msgid "The member's status." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:49 +#: c2adee63344e4654956898d0f1e443a6 +msgid ":class:`Status`" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:53 +#: 157122b9e8b24251880d68a737d4d522 +msgid "The member's nickname." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:59 +#: f619f9599f374b6c8f1df8b0f1765a39 +msgid "The member's avatar hash." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:65 +#: 45684373c5e74f8fb347af80b03ed751 +msgid "The member's activity." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:67 +#: a1689f0e7f6244d8a119ce54d04afd64 +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:71 +#: b3ff818af6974ac9af066044bf4ba6ca +msgid "Whether the member is currently deafened." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:77 +#: fc4b2322da844f30885f5d2bff97bace +msgid "Whether the member is currently muted." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:83 +#: e24cd9e568b849f7a5b64fe9242d31f6 +msgid "Whether the member is currently being suppressed." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:89 +#: 2eb48de5180449159d623794c7ef1d80 +msgid "Which channel the member is connected to." +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.widget.WidgetMember:91 +#: baf0d47ab52a4e7f9ad33ad1297b6245 +msgid "Optional[:class:`WidgetChannel`]" +msgstr "" + +#: ../../../discord/widget.py:docstring of discord.WidgetMember.display_name:1 +#: be1c1bedfca64980a23a4e6ce258f0d1 +msgid "Returns the member's display name." +msgstr "" + +#: ../../api/models.rst:299 +#: 37c503ce08c645ed80617cb4dae9b391 +msgid "Threads" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:1 +#: 862c0af81fa74b42ae0c1fc3e4927c60 +msgid "Represents a Discord thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:7 +#: a53a2504fd6b4fe3a4779e7a2316dde8 +msgid "Checks if two threads are equal." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:11 +#: d317c8430ff34f91a4b7d991b79bd5f7 +msgid "Checks if two threads are not equal." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:15 +#: 561a44e9bb8b491e8c7b78ee3fd6701d +msgid "Returns the thread's hash." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:19 +#: f1beb12f175941abb922b3500042939f +msgid "Returns the thread's name." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:25 +#: 4858970bd7154bc89032f2bc4f72baa7 +msgid "The thread name." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:31 +#: f197d86c764149bfb3fd7c1eacf9a3b3 +msgid "The guild the thread belongs to." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:37 +#: c3245fdb024f4dbd9d3ce6b9e53ca810 +msgid "The thread ID." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:40 +#: cb093b6a1fdd4cfcb644c15c0e577728 +msgid "This ID is the same as the thread starting message ID." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:46 +#: 60d6679beded46c194c1da5401f65110 +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:52 +#: 679daece3daa4e4cbb295a2b5337dd5f +msgid "The user's ID that created this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:58 +#: b1064ff6697546238155084f98843c81 +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:65 +#: 96b104d5ba9746c6bc54bee3d95bfdcf +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:74 +#: 518ddd8e2aea44fcbf0b4e1d7fb21da1 +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:80 +#: 5b10830c99d1452194e55ee1a0291464 +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:86 +#: c311e65b40b6488db53add6297be7cba +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:89 +#: 3488c9668abc47e8a839d445f9eed2a9 +msgid "Optional[:class:`ThreadMember`]" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:93 +#: 21c84d957185468f97d2e7b36ec22056 +msgid "Whether the thread is archived." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:99 +#: b4eafe5a4f7a4a088e54ccbe39314d36 +msgid "Whether the thread is locked." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:105 +#: 6f26e3e892c0426b8ffcae0f1d4b79a5 +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:112 +#: 0c3bc69cc45443009fda8cfda1204d10 +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:119 +#: ff2833e886b544118d6856cce8f59537 +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:125 +#: cbd4c982ba7741ba9045fcb0a9bd7f11 +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:132 +#: e212d34b2b1c416494deb7d202253ad9 +msgid "Extra features of the thread." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:64 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:102 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:93 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:98 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:114 +#: ../../../discord/threads.py:docstring of discord.threads.Thread:136 +#: f03b50bb386e47e88f5080d349b75439 +#: 29e2e7162a0042a7b9a4e1fd6e20b472 +#: 88426a240e4f4c9890a35a0f7d0dfd8a +#: ad15d95b3f964e019d0e0798ec261a6c +#: 698b6b62de364a23b1429c4b9f5d305c +#: 3000b2d59e1c44ee98e06eec357d7bb8 +msgid ":class:`ChannelFlags`" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread:140 +#: a9b329ac47594a1ca69498f273e2226e +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.type:1 +#: ../../../discord/channel.py:docstring of discord.DMChannel.type:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.type:1 +#: ../../../discord/channel.py:docstring of discord.GroupChannel.type:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.type:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.type:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.type:1 +#: ../../../discord/threads.py:docstring of discord.Thread.type:1 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: ec231a882cea404381a1985e1d8e4aa7 +#: 091e6bc2538a4c96835a93caf9c00300 +#: 0559674644be4190992059a82a65a755 +#: ce80f966b4e848628be0a2c3fd2222f7 +#: d14cf3ec81e1428a843bce1513163773 +#: 2c2180b021cf4d5fa0a6a79b5c44bf37 +#: 1a764ec3fb464d38ab8d089c8e0c0528 +msgid "The channel's Discord type." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.parent:1 +#: 6685fa4f98da4f4fbad14622dc43bd59 +msgid "The parent channel this thread belongs to." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.owner:1 +#: 3bb2c4499f774c7db3a93a7a4840b242 +msgid "The member this thread belongs to." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.mention:1 +#: de6170f8f1db4c83a177129fd8a80e69 +msgid "The string that allows you to mention the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.jump_url:1 +#: b55dcf3cd4e84201a89d95165638fb0d +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.members:1 +#: 65ee281822674cdf9142045aa15e51f5 +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.members:3 +#: 1b86fa2a3a8c426889ae42c19b19f672 +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.applied_tags:1 +#: 3f3c5952d3e44e838cda0dd3b470fed5 +msgid "A list of tags applied to this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.applied_tags:3 +#: 520a7a4a8aeb471a9616b98069fe4e20 +msgid "This is only available for threads in forum channels." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:110 +#: ../../../discord/threads.py:docstring of discord.Thread.applied_tags:5 +#: 22ee64cf3e304d3fa699868a43f6e342 +#: b7e77024d5ff487191498bb21910c04d +msgid "List[:class:`ForumTag`]" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.last_message:1 +#: 7d496f753ec4435baf11b02c3eecff1d +msgid "Returns the last message from this thread in cache." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:3 +#: ../../../discord/channel.py:docstring of discord.StageChannel.last_message:3 +#: ../../../discord/channel.py:docstring of discord.TextChannel.last_message:3 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.last_message:3 +#: ../../../discord/threads.py:docstring of discord.Thread.last_message:3 +#: ../../../discord/threads.py:docstring of discord.Thread.starting_message:3 +#: 79224463831a451c8339369ad55335d1 +#: 7fad72a31deb4f58850b9b0c14fda53f +#: 9a813fa4f4f24f82b187e72255748571 +#: f331e5f229fd44b7bfef1d4bad2e56f4 +#: 673668a13af54750afde89731fd7472c +#: f694f71c04cf439ab450300708fc462e +msgid "The message might not be valid or point to an existing message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:5 +#: ../../../discord/channel.py:docstring of discord.StageChannel.last_message:5 +#: ../../../discord/channel.py:docstring of discord.TextChannel.last_message:5 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.last_message:5 +#: ../../../discord/threads.py:docstring of discord.Thread.last_message:5 +#: 086f64f83b2e45448c6e193790788fb9 +#: 099835f79d824b1d96c88787c71fd415 +#: 95f480c98a98497ba32a77ba4def5a0f +#: 207a97f042f54b53bde66a340e4fb798 +#: 4966861c77f04fab94d5da99f2b6e6bf +msgid "Reliable Fetching" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:8 +#: ../../../discord/channel.py:docstring of discord.StageChannel.last_message:8 +#: ../../../discord/channel.py:docstring of discord.TextChannel.last_message:8 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.last_message:8 +#: ../../../discord/threads.py:docstring of discord.Thread.last_message:8 +#: 1fa6735ff47b46a5a2bd90070d218c40 +#: 26fae1f1ae4f47638dcebc57dc2f1e98 +#: e8b78800fb384ac4b467e6fb2847f11d +#: 46b943af6b9c4f89a62e5051fa5d3942 +#: 2690a3d837394c87a24c861ce90e19ce +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:13 +#: ../../../discord/channel.py:docstring of discord.StageChannel.last_message:13 +#: ../../../discord/channel.py:docstring of discord.TextChannel.last_message:13 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.last_message:13 +#: ../../../discord/threads.py:docstring of discord.Thread.last_message:13 +#: 53538facaa654a67be082b8dfbf4f8d3 +#: 5b1f5720c5004511bb37583bf6be4d5b +#: 44f8f3a1152d429193fcacf84a2b2086 +#: 37153865e42e47b7b4515dca45e2cd14 +#: 038fc8eeabdd4c36a8b3808f4c617db9 +msgid "The last message in this channel or ``None`` if not found." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:14 +#: ../../../discord/channel.py:docstring of discord.StageChannel.last_message:14 +#: ../../../discord/channel.py:docstring of discord.TextChannel.last_message:14 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.last_message:14 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:54 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:72 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:86 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:25 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:36 +#: ../../../discord/threads.py:docstring of discord.Thread.last_message:14 +#: ../../../discord/threads.py:docstring of discord.Thread.starting_message:9 +#: ../../docstring of discord.InteractionMetadata.interacted_message:4 +#: ../../docstring of discord.InteractionMetadata.original_response_message:4 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 19501cbfb8a14f75bb1f62551ba03bf2 +#: 9e29f0cbef8542a38e7b55cb2f825fa1 +#: d313258ca2644b01920a2cc586e526df +#: f2ea72b9388846faa6855637d62cf0af +#: b6f8d04456b045829d0a9c794465aa44 +#: fa43ad9a93f04fb0960db9817d7f0172 +#: 7c402d990db44c9eaf0a0dff8aa097b2 +#: d82eb0adf9564f12a9d232c74819399c +#: 5f22b0e98f304c7885bf0dec801119c5 +#: fcbf5c0414fd43758c02f7fefe29752c +#: cf7e553cdaf648bea335c2c679914d0d +#: e722aa18112a428cb22c358926dd0cb9 +msgid "Optional[:class:`Message`]" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.category:1 +#: fa406e35bd84467385fd2950bc239ea7 +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.category:3 +#: 3ecfd31222b1423d888799e280392ed4 +msgid "The parent channel's category." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.category:4 +#: 5c2fca147f364702ad1752ee26abc80a +msgid "Optional[:class:`CategoryChannel`]" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.category:6 +#: ../../../discord/threads.py:docstring of discord.Thread.category_id:6 +#: e66dee0dc32745b5b1c3998855c064eb +#: 5a1e6eeb98014386a6ae683bdfa9273d +msgid "The parent channel was not cached and returned ``None``." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.category_id:1 +#: 2722f4ac082d4e9b8f104458a252afbf +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.category_id:3 +#: 142b2cc7a5094cb8aa3990e91a2a036a +msgid "The parent channel's category ID." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.starting_message:1 +#: 65899ce1f85a4946b96f26fe16255a80 +msgid "Returns the message that started this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.starting_message:6 +#: 3a6d325fb82747a7bc19ddda517f3b17 +msgid "The ID for this message is the same as the thread ID." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.Thread.starting_message:8 +#: 9609686473534ab295e3ecdb511944f3 +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_pinned:1 +#: b9b0a2dd3d2e4ecc887943971386974f +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_private:1 +#: 1e601881276b4c0f8d04536a4d310638 +msgid "Whether the thread is a private thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_private:3 +#: a157bbbcad26493495551f13f22a9b57 +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_news:1 +#: 1a00e42e8d4b4436ae5a3eda59611a61 +msgid "Whether the thread is a news thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_news:3 +#: c770f278fc9741068b5f5caa810a47ec +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_nsfw:1 +#: be6f1dd770614a5d8bf4700202115bf4 +msgid "Whether the thread is NSFW or not." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.is_nsfw:3 +#: 80c412eccc484737bba543d510696dd2 +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:1 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:1 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.permissions_for:1 +#: 692f32fef56d4dc2a04da0f0d03690c3 +#: 4f68ac6f78b9446b882242257c7934bb +#: 692212b7798e4cb58e22c9367e72ce6e +#: 8e857604522e4d5880d0675a6fdb605a +#: a5038b8bbeab4f92a2973d3f6fb02a07 +#: bf83503458e941b984e526651da9f5bf +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.permissions_for:4 +#: 42fd14322cd84ff585c47df80340632a +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:23 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:23 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:23 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.permissions_for:10 +#: 5f9a51f4c1324ef39f021d40602fc2ca +#: 4042f9300a65424195c9835a8ffca7cf +#: d27d1f734589420aa7dd9b0954aa451f +#: f075e28680e846bd88eaa5c92d3d4787 +#: 11d74a134f0740078fab07847bb4704b +#: 21b7c29f37604ff2a0312369b3eecd1e +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:28 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:28 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:28 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.permissions_for:15 +#: 4affbef6d844449eb70b5f03da656576 +#: c14c0ff1d84346be9e204915f810f47d +#: b34653452a5f4752a0903849a9f816c3 +#: c53c58cef6884147acfc9e98fa2badc5 +#: 2b8393bdb7e344d0bf25a7d133b947d7 +#: e36053caaa194dc0bf8df1055060815c +msgid "The resolved permissions for the member or role." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:29 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:29 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:29 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.permissions_for:16 +#: 32bedaab337c4ea6a781177cc1e64553 +#: ebe51a2429f948418f2ba027284602e4 +#: 59a29442841e455c893114b0c4691e07 +#: 2bec76ea8b424bc8bf4847d2bca39b07 +#: bd0ee577d2844e708c1a52985f646f0c +#: f94ed990f18e4bdea4062f95be595ae1 +msgid ":class:`~discord.Permissions`" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.permissions_for:18 +#: 93eb5aa115234b06b0dc1fb131cbdda0 +msgid "The parent channel was not cached and returned ``None``" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:3 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:3 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:3 +#: efb41e6c99054ced96096e8407c04478 +#: 34f2a908ac1d40e790c08473b5a6abbd +#: 63dc6ba38934400ab1fae96550f52bb1 +#: 245719ecf47b4cb78a35d4c8affa0ee3 +#: 48f3e0fbbb37481dbcaefea2f49aa7ed +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:6 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:6 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:6 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:6 +#: 95d403544c7b470d8e62307238c84394 +#: 63e9f309117e40d69097e9eb6f30cd5b +#: e7367d8654da4cf89f93f59b62d7b4cf +#: 6ebbdde88c5443798c3d865a99155436 +#: f1bfe3c0337646ad9432d5e422526f5e +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:10 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:10 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:10 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:10 +#: 44d243e208e74dabaf00f2898f37a386 +#: aa26604158c44b2d9e9d57a367074de3 +#: ee43915c83184765a1bda50b1ee15902 +#: 396a44a8c4b5420fb4927324319a7b04 +#: e63949c4edb1447581fdaf020a2d46a4 +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:13 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:13 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:13 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:13 +#: 12ac8c2d1ee24602b36d469637750012 +#: 81aa5804d6544be6b747145b41cab2cb +#: a6968881b48b475c8d61cd202ec2f5f7 +#: e2c695bee25949ac940f29b2f75af0ec +#: 2a5f2334942c4d36b64470cfd8eb01be +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:16 +#: 81b2505f5c46461fbe068c205bb88ae6 +msgid "Usable only by bot accounts." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:17 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:17 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:17 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:19 +#: 258275aa7a7f40928cd773403e9d2750 +#: fb5b2694a0c8418aa24748945f4e2675 +#: a968dacc9427403299b1f133eafb0ea5 +#: 6771514befbd4cf6ab1f7e7c873012bf +#: bf384e1fade7406ab2666bd895256443 +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:20 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:38 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:20 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:38 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:20 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:38 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:22 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:38 +#: 8fc880d585134a17a0024216a1164444 +#: f7ff465129014b1ea05ff7cb66a61bf9 +#: 52efd24078f34dda916317d8c8ed730f +#: 62928cded09e4fad86dda128efe4df46 +#: 3ed6a488528e43aa98f8ccf168ef53c8 +#: 18076f82cce748378e28cce930d6f424 +#: f1c01da6c6a3413c8d08b2a6c3a91e6c +#: 7c1aa434628d480ebf7591b3a5952436 +#: 89f24a2106b540338ad4ee3efb355b63 +#: 24079855b238464bb2c93ffae9b7594c +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:23 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:23 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:23 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:25 +#: a1442b5bbdf74f6e8b31ae84a2726b54 +#: ac14f60dce444e75bab293602bdca889 +#: 527564e5153d4bb4a685d3804583157f +#: 36efebf2cea840a199f12a9a11d2eec1 +#: 76d1ab3f1a9e4057b020427c6cc2c628 +msgid "The number of messages to delete was more than 100." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:26 +#: dd1d020ebc714c82be6ea10ecba7ab9c +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:25 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:25 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:25 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:27 +#: 8411b93430f2431482fd0973f5fe5166 +#: 03270eabb87f4df284bcead99ef8d6e4 +#: 6d04e7862ac54c28982dc6ca30f74a6d +#: 471426e36d5b47a8b1b74de07d97d7e0 +#: 898be16a17e64bacb3d6d49715eb47a3 +msgid "If single delete, then the message was already deleted." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:26 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:26 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:26 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete_messages:28 +#: 313dc26247974242aaf1193cdd259b8f +#: 4956a12283754f54b77accb6fb4efa2b +#: ed14f1b0c983466c9a608bc8a8be3c80 +#: d08fafa15039455881a7c0316528ed57 +#: f90c06ab3d7d41cf85e2e42f3a15998c +msgid "Deleting the messages failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:3 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:3 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:3 +#: 20bf7bf6e69540dc87705f873d0610d7 +#: 5f43c6b22685440cac8284b70685cecf +#: 201e6b4ea91b4232bac85695ced54684 +#: f6052e7d81464b11a7824f1365b1c302 +#: 180cc81a9d0a4b6587f50943ec11f51c +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:7 +#: 3465d6c0938946a886a3bc9197eefef8 +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:13 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:13 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:13 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:13 +#: 48531b89c2704243bdba0081c736b094 +#: 773400bed7f8415c8b1a5ace41a28b8c +#: 6408871c5df641898fe779c8782ae5dc +#: efd2f84a46b54a648616a7edc61be8f5 +#: e4807521940e4cce8fd9738a67da5e37 +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:17 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:17 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:17 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:17 +#: 73a25e191e4d427eb290e5ad194aeb46 +#: b034c58335fc48f8967e731a8a7ac5ea +#: 789fdb73d62a4e938a1545f2517c1879 +#: a4853ad38c6b42c1a74986e397410366 +#: 228b203830c74e2098cfa596d470428a +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:21 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:21 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:21 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:21 +#: 6e83155f849f4352a4bfa760384b8b9e +#: d5c8ed5e7f5f49b6af25bd8bbef4ead5 +#: 7e4eaee2fd6349fdba0f21f2f9bb131a +#: 81c9763e846d4ad9a79bc6638279d312 +#: ba7ad05a8bb84f5e9e91367449c3a71a +msgid "Same as ``before`` in :meth:`history`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:24 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:24 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:24 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:24 +#: 7aa18cb895d644e19053e2eec14ee6c0 +#: ccb6347e27204264a4b6d1e716555762 +#: a0eb8f3d52104045b5a1f992a68357f1 +#: 87aaec2ef3194f1aba36df1467692627 +#: 1be5dfb0c2d9429aaa7545caca87fe49 +msgid "Same as ``after`` in :meth:`history`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:27 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:27 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:27 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:27 +#: 083fb0803d4f4b939e1a15944a2584cf +#: fbd2ec1bd78c4befb27ac1e1fa82672a +#: 3099aca589494821912f5d609b0b273b +#: d2925b7fbf744618bfea9c376f6db377 +#: 2bb12c0e6e0c4cb8bf9bb8aa078b7e7c +msgid "Same as ``around`` in :meth:`history`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:30 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:30 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:30 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:30 +#: 0a6dd8d4b88c4a3e9b3e4e250790250e +#: 143f8d1e95384213b30904561ea4b6d5 +#: 4c3f4f7678e94b39916cb9aee4cde386 +#: 83fd581ccff94ce5ae2f32af54e0b271 +#: 3d2212da07954d04a481cbde119ba52c +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:33 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:33 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:33 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:33 +#: 7981dc8e7bf44631bc14eaefc415734a +#: 090bd31679f24b1eb846df69518cba65 +#: fb53f7bb0d60479e87e7e3f22774971d +#: 78605eb4ccc84725bab5a3959d17704c +#: c5680833eccb45c3bcd7c9df4e1dcc03 +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:41 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:41 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:41 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:41 +#: e2aad5ac64c24915bdc0bbe81ec6228f +#: f63a708a3ae3442cbda478bafb2011a7 +#: 7b7b6016bdd941bcb1022f9bdd2c984b +#: dfd8b378f0b24597979075f711027a35 +#: 797e062487c74406b1a1768fe97c12aa +msgid "The list of messages that were deleted." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:42 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:42 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:42 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:42 +#: b0c8e3b1df6f47d9a418cb9029926cb7 +#: 22470919dbf94c468a066aa4b9476b7c +#: 16be20c715c84a1e9d9b83941eacb3f4 +#: 618dac3bda5745d393aba88acfbc8882 +#: 8209dd2400f34cbbaa321f8fadcca243 +msgid "List[:class:`.Message`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:44 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:44 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:44 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:44 +#: 75f5a744aaeb45b9800325ba52e32825 +#: d100e45e49924b9c8a8f34f82a535ae3 +#: 215ae24d5fd34fb591822b9d911a03d2 +#: 50f5065829fc4ed6820ee134a48b42b1 +#: b321c70cac5f4348b902b54f0b84d8e0 +msgid "You do not have proper permissions to do the actions required." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:45 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:45 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:45 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:45 +#: 55ac3c5f07e84d59b3459547d1ec5ebb +#: 3b0420432c5741eea078026a4205d004 +#: 70b6fe60297847d589cef1f7a18c82a6 +#: 357291db51824e4c91fe1048db325461 +#: 31f8fa5ebe154de4a2babab40b4cc936 +msgid "Purging the messages failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:49 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:49 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:49 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.purge:49 +#: 67669bca174940f0a790b768a423a88b +#: d6841eea1d90484299c48e8c12c88765 +#: 262a510fc5064e85b918dd6d693a97e5 +#: 4a9996de72194c659e1e115a91fc3cb8 +#: 8d2060c019f94371bcf1dc08b042e594 +msgid "Deleting bot's messages ::" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:3 +#: 4496559920f34393bb3246284304db51 +msgid "Edits the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:5 +#: ec5c1a6a155042b3b86f50bc6ff94b25 +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:10 +#: f0ab4c069b414542ae59c42963bee817 +msgid "The thread must be unarchived to be edited." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:13 +#: 498910bc39f641c0aa938c6f996f063a +msgid "The new name of the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:16 +#: 9664f07837e0479bb44fa5828ec3b4d4 +msgid "Whether to archive the thread or not." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:19 +#: 63f577001ef343a3ba34c99075155b12 +msgid "Whether to lock the thread or not." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:22 +#: 83b23a4a59684d8792b9edcf4730a552 +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:26 +#: cf29fb446325413491772632704014f3 +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:34 +#: 1156a52c234a4a16a525c4ee1e8d2aa3 +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:37 +#: 16778a16ff164603a54eef19b4f71952 +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:40 +#: 0da7c0a3c631463692bb26a46134936a +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:40 +#: 4b882218e71646c4bde6153d4e8fce26 +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:45 +#: f3242dd7014845a89c338d87a47dc9a2 +msgid "The newly edited thread." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:68 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:40 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:46 +#: 0be10d93f961436c9de4fab78f0fe327 +#: f2bfaff812254210a678478a3b64b118 +#: 4a9e7a174db14fdc835299078d3059ad +msgid ":class:`Thread`" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:48 +#: 0d0cd43a3658484b94e7206b30bcf60f +msgid "You do not have permissions to edit the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:49 +#: a5f03015ee4640d79c0fe07e078aaa88 +msgid "Editing the thread failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.archive:3 +#: 05c3fee091fc403fa1184f8c24a0b544 +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.archive:6 +#: c625b40bb4bc47c2b3ef3646b70b9001 +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.archive:9 +#: ../../../discord/threads.py:docstring of discord.threads.Thread.unarchive:5 +#: 5bbc21eca8354cd8a2ba719986db0064 +#: f1e033b7178545bc8c72eda32764fe51 +msgid "The updated thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.unarchive:3 +#: 8e12b8fb6f0544c286a3fb3bb00d7a52 +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.join:3 +#: 31eb981658ed4cc9a37411b903861206 +msgid "Joins this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.join:5 +#: be140a45a17d41898ac50df0617089ee +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.join:8 +#: e06f3725eaaf408db90393e6f3ada095 +msgid "You do not have permissions to join the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.join:9 +#: 7d12848dcb3f4861a351c970261c2b1b +msgid "Joining the thread failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.leave:3 +#: ff71a333b5ae4e6bbd890b237dad840e +msgid "Leaves this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.leave:5 +#: bdb4a9ea2f0a47a08d6dca16dff62451 +msgid "Leaving the thread failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.add_user:3 +#: 1b05a68ae3c84a648f1ad70729c77a36 +msgid "Adds a user to this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.add_user:5 +#: 4a0ae931e5564397891f5e173f57aea1 +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.add_user:11 +#: 1856ba808a5345d09d7679fedb68f710 +msgid "The user to add to the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.add_user:14 +#: 780131b5bb2b4a7386a00c1dd2604c8b +msgid "You do not have permissions to add the user to the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.add_user:15 +#: 739e34ad4e53466fa316fee1c363010e +msgid "Adding the user to the thread failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.remove_user:3 +#: 0bb51be8537b4cc6ae5e2913f7af4fab +msgid "Removes a user from this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.remove_user:5 +#: 8dbe55c513b84d41af8ad3e22098bab3 +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.remove_user:8 +#: e72e4aeb9b2e48bea51c447675b82634 +msgid "The user to remove from the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.remove_user:11 +#: c9902821760b43a5b3e58a1ff58ced44 +msgid "You do not have permissions to remove the user from the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.remove_user:12 +#: 424ee87877a14d00b91eef06804bf321 +msgid "Removing the user from the thread failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.fetch_members:3 +#: bfa27a74cae14a589e4212797383ae0f +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.fetch_members:5 +#: 17c8b9aeddc44d2c98cd4241c194830c +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.fetch_members:8 +#: ab88896940db4fa48943613f620be701 +msgid "All thread members in the thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.fetch_members:9 +#: 86a3f975569646a6a58e60647d1dfcde +msgid "List[:class:`ThreadMember`]" +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.fetch_members:11 +#: 71f3a9dbbb2a4b6e92dd4582e5e33c7d +msgid "Retrieving the members failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete:3 +#: 266518b94fca48c29a23d520a7a430f1 +msgid "Deletes this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete:5 +#: b3acb93535cc4ece8625c5d7d5b3ad76 +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete:7 +#: 4457d46863cb4e2790ebd1ba60137630 +msgid "You do not have permissions to delete this thread." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.Thread.delete:8 +#: 7744db38370a490aba33b006de6375d7 +msgid "Deleting the thread failed." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:1 +#: 860838b6020e49b0ae2028d20f4083f2 +msgid "Represents a Discord thread member." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:7 +#: ba525c7b07824c139f36bdecc842f020 +msgid "Checks if two thread members are equal." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:11 +#: 630e0a97a888475789d5f3ebacba3327 +msgid "Checks if two thread members are not equal." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:15 +#: 8302c36b3dbf42f2ae1d459d2c78c905 +msgid "Returns the thread member's hash." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:19 +#: ceb09394c4c4467b8f2d416c408764b3 +msgid "Returns the thread member's name." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:25 +#: b4aacab5225840ca94a608170900ccfa +msgid "The thread member's ID." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:31 +#: cc00b147152243bb8f89b459191c1daf +msgid "The thread's ID." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.threads.ThreadMember:37 +#: 985132367fb04e298906610d56501aec +msgid "The time the member joined the thread in UTC." +msgstr "" + +#: ../../../discord/threads.py:docstring of discord.ThreadMember.thread:1 +#: 97fc6a907f064db0a1c8e12ba6c89f42 +msgid "The thread this member belongs to." +msgstr "" + +#: ../../api/models.rst:320 +#: 74f4a8b9588440d094786e1993d7e7b4 +msgid "Stages" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:1 +#: 27cae1cff3b1483ba2927229b7e76ea6 +msgid "Represents a Discord guild stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:9 +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:7 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:7 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:7 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:9 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:7 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:7 +#: cbc78674793e480aaaf2d52a99574eb8 +#: c4661bf0b9c6457fafaf90673fb557ed +#: e780e5cc8be24b7ba18e1e70ae5aeb72 +#: b3e3d00dd47c4a5bb23394dd8febfd2f +#: a1474d4993ea4103a54e4809bdf87caa +#: ad4061beaba64625ba462f89f67678c6 +#: 5220dc7586af4dc58a61511e56017589 +msgid "Checks if two channels are equal." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:13 +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:11 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:11 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:11 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:13 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:11 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:11 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +#: 8e0c12f59e9641358a27714275320158 +#: dc15916f7d5949fabf3d4f9f7ce2ea0c +#: 6407c0909bc84339ad3098f62aaef730 +#: d5f7c5cab2fa411ebad6f616533dc68d +#: f89e9da0d8a341dfafdb5fefb5631eaa +#: 12ac5c21dccf4ce8bf4e4fff48edfcc8 +msgid "Checks if two channels are not equal." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:15 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:15 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:15 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:17 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:15 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:15 +#: 40b19f0e11a242c3878748f60e579d3c +#: 26e5640b72984af0b4217729b040b813 +#: fc547ae86a9c44289b8cca3c1970801c +#: 1aa7b81bdf6f4282a96709223c88afe5 +#: e8d25aff98e249488dcaabc4ab6e2963 +#: 42963967f5e64632ad90b98d35bfe013 +msgid "Returns the channel's hash." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:19 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:21 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:19 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:19 +#: c3008f4769c14c198b601e8cc3c70be8 +#: 199285c9d5304dab963ca689623e08b0 +#: 9e2a9fd11dc441eb8912ced127a0e55d +#: b350624652964b33aadeb6d252526117 +msgid "Returns the channel's name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:23 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:25 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:23 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:23 +#: b116e2cea92b420eac9aea8cc1ab81f0 +#: 2556183690e046eebf57fb436b358e73 +#: 028a051c1ddd439c943dbd1516362855 +#: b9691063978d444c993892300dfae613 +msgid "The channel name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:29 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:31 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:29 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:29 +#: e4d03f1e47a9494392429ae5f2172724 +#: b411ac86afaa4d308bfe588759b1fa15 +#: 6080775031db41478543abe1366160a6 +#: 89e20f5201094f1588f8b8ffc6e3ef81 +msgid "The guild the channel belongs to." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:35 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:37 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:35 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:35 +#: 10d9af8b3c114f4f9be973e412b03fb3 +#: 46e0602a202c494e8bc575275363b479 +#: 7d4ffa2222a7478d9e583a053cc86875 +#: b063800904a64006802c4d0a89a89aea +msgid "The channel ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:43 +#: 821d258afb4a4a4db55ea4e35e29266f +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:41 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:49 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:41 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:41 +#: 7bce4c601b7e4d13af2c0eeb1288ed61 +#: 1f69047b6d50454ababb7295beba02d6 +#: 501a0ca1527d47b482e0a0efdcfa7b74 +#: 9f45e2f48f2547eda03389dfa953e735 +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:57 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:55 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:53 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:47 +#: 17d5c49b53b94e559f645697fdc954fc +#: 9cd69274d5e94e26ab81f6d144d75e1b +#: 790012b2293947338802b3940bc55cbb +#: aba1bd2ad2e54e76bf10596c5b38ac30 +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:68 +#: df3465d34dd146e4aa85ec747685d5e0 +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:74 +#: 75bbd3cfaa304f20b19991a13e1b8aac +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:77 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:71 +#: 88d6ddb0b6ae4b87b31b7db5c79da00b +#: 75cf8c8c57454469a9a9d1325684894e +msgid "Optional[:class:`VoiceRegion`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:81 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:32 +#: 2a5f6761e17f48c2b0d616d81972d964 +#: e086f5156d0041a0b7b35b2d4f3ce2bf +msgid "The camera video quality for the stage channel's participants." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:85 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:79 +#: 1ea0cbbbbdeb41d28a69cf68b30e94ce +#: 69402c37893141ddb15622edd9574d8c +msgid ":class:`VideoQualityMode`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:60 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:98 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:89 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:94 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:110 +#: 0e3d32b5c2244ca6a0d83a892a081f8d +#: a7d3ccceca12422abb29b58a0b0023e6 +#: bc3eee06156842e287224f4709899de9 +#: 0a8094fc641b4679b6ba19965c6c57c3 +#: faae1d2609eb494489b9ed428bcd7c06 +msgid "Extra features of the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel:97 +#: dfd71d1f5420428fbfb980d8e3bf715c +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.requesting_to_speak:1 +#: 675ecc5cb3b84438b270c726510b3052 +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.speakers:1 +#: e1fb97ff67e449668ed24643520eeaf6 +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.listeners:1 +#: df3a44abedf640f6b0b890c8ba159e58 +msgid "A list of members who are listening in the stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.is_nsfw:1 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.is_nsfw:1 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.is_nsfw:1 +#: 47f3fed9c90f4f96a742e7c04818b2d5 +#: 4234005a069742b4b8809d5e0f202031 +#: 6028e490220047469a7998091c3d6044 +#: f1a9214c964f483a937cde4e338eae7a +msgid "Checks if the channel is NSFW." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.last_message:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.last_message:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.last_message:1 +#: 0605656b32984ab9a75c79ef67a728b8 +#: d87d1fe7fd5246cebfdebd6f10f40039 +#: a1fb60a2dffd483490de21b5b7a394ee +#: 8d25c181186b4680820e645eaec02c89 +msgid "Fetches the last message from this channel in cache." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.delete_messages:24 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.delete_messages:24 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.delete_messages:24 +#: c129d88ab0874303b120799a19d7c0ec +#: a4f0035aa8934db787d0e132455bbaa0 +#: 187d56c34f06446a988ced0e1159bb40 +#: f6afa08023d54ec89dac8579c4de9c76 +msgid "You do not have proper permissions to delete the messages." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.purge:7 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.purge:7 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.purge:7 +#: d32cf9eeeb9847b2830a4a6c876ef451 +#: 38e79d507c1c48cabcfc75c598152e9e +#: bdf79e5330a446639f663c38a3a5f62f +#: 63124c50c13f4211aa553d92834eab18 +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.webhooks:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.webhooks:3 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.webhooks:3 +#: 4a1a304024aa4bbb960259df3ba1226e +#: c47c7db98ede4f08b31ffba89d672dae +#: 6a861c712828420dbdc718fd0bbc4c58 +#: 1c51c1779c4149b8b212849d316f4492 +msgid "Gets the list of webhooks from this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.webhooks:7 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.webhooks:7 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.webhooks:7 +#: 85ddcd8c95604e5fb9d65095ba79d614 +#: a91f5da73dba4714be8f7eea88d1a127 +#: 5b2f5d3b82794a4aac14cb32d420d6b1 +#: ec11b1435f184514bba04ccad1184c75 +msgid "The webhooks for this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:3 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:3 +#: 77801db3060a4d5a90b6e7d0b67b7bc3 +#: 0d5a8515d1e041a7a385e6513eba225a +#: e4dc555c3b0e4ab789f9a577fc49b56c +#: 9d9c9049e3dd485ba6f45e4e1572770b +msgid "Creates a webhook for this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:7 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:7 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:7 +#: 1ea0953ddb0b4b89b78d9d96a62ccf8f +#: 3199dc5f0c93414f8fcc558a2d304de3 +#: bc83a541248749ddb662c03f597ad32a +#: 601bb8920967475cbeaf29c9fee75100 +msgid "Added the ``reason`` keyword-only parameter." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:11 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:11 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:11 +#: c3a5508c1b064afc9513a06272a1fd9c +#: 6da49939716947fa98beda6b9d80a84c +#: 2b4b311a82d94594a08b68cee30dc1ee +#: 3b7e75156eb94a1a813c870ce9ccf9ab +msgid "The webhook's name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:14 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:14 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:14 +#: 969c1c3c82834ac695633f8b76d5447b +#: be4c0abc592c4ef48f686f158826be75 +#: c9998c1572bc466693bf497156eee801 +#: 9fd409169576456aa3e1b49f13c0308e +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:18 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:18 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:18 +#: 879233ad70174408b4dfc419d65951e2 +#: 20362048037e439bb90c1f3f112dd386 +#: cfc6709111ab4f4ba8245946b944b016 +#: d28be1405d794039836742f248708c44 +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:21 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:21 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:21 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:21 +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: e96ac3ab7ef2459b9d26d9d9a28cc049 +#: 642145b9dddf4111bb84345a5bc80e90 +#: a5bd679ae31a4defac821728c3f7c463 +#: 755c2f6055f5423e91523fad7434c4a4 +#: 4aad7b7233224afdab2bbc85c477adac +msgid "The created webhook." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:22 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:22 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:22 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:22 +#: a1ab293dca0a4d679744b60f873832a7 +#: d6a1a7e268c84839b507872f01d5be32 +#: 7286441962e2414584a01eb59a111970 +#: 8bb9c369db4b4b5284f7f9cd8b038d37 +#: 472e6695355b4241b7a8e57907983e4c +#: abd8e832a7cc4bc88568c0f4dfc36f47 +msgid ":class:`Webhook`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:24 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:24 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:24 +#: fcad9386059d42feb4e79e5a14931208 +#: 25a7a32405864912bedd59bd0ff506cd +#: 026f32d28a234d22bbd9c914b0ced121 +#: 63969b386a4443a8815de5202c8cf66e +msgid "Creating the webhook failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_webhook:25 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_webhook:25 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.create_webhook:25 +#: 81fb2b5fd70b4af792ed7a8d92cbfb55 +#: faf4c88c990449738184de03b5df20ea +#: 2812585ad14548c5baa261645edf67df +#: e65211ccb6f845a48158a9d1b88ee6e1 +msgid "You do not have permissions to create a webhook." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.moderators:1 +#: d3cd17c5683f4d2caae0468890e3c3c7 +msgid "A list of members who are moderating the stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:3 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:3 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:3 +#: 713c44f071794ebf9a814632d2c5da11 +#: ec35ef1bcbe942aa9e6795ecb0ff1494 +#: 605948eccdfc46119f6c11c5eb3cf948 +#: 4d8c138159db410e9ad5b41d4ffbb713 +#: f91ed4f778574bc190f99df1d042c7d3 +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:7 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:6 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:7 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:6 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:6 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:6 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: 8c3665cdac804ad69d2bdc8952c40f4a +#: df9c0719371c4566b34bba18c26f0dfd +#: 586ebc172f614651ab6f4a7c25183045 +#: 9364daf475cb48e9a0213d0be5daeacc +#: f2746d7645df401b80fe8c8e0cfe6358 +#: dc15a0c486a840c7b5f1568cda7b7af9 +#: 00436accfe924a50b4ee261f2394c4b1 +#: ebfffe13662b41aab3e7345610c7f9a3 +#: b493bed42e6d408c8266d440df295e8f +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:12 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:12 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:12 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:12 +#: f1500ea7686647ea9b0c9b51d0928759 +#: 892e39eeddc34e98aeff4825b62663df +#: a5302e3f9906440f924b74ce2743a3b4 +#: 3d59ecbd27f84787964b0ab0adb65fea +#: a1de8f5cc1204b449ed8470080056fee +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:16 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:16 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:16 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:16 +#: dc75b4e91a0f4f2a8abef5896e012117 +#: b1cc2f53f60048c18ad2c024e871f347 +#: 7d26b7f75129467b98665c8329a7f428 +#: d3f95ea4eda84c768749dd375c620e4d +#: 057fee75fcca405581e9ae6643445876 +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.clone:20 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.clone:20 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.clone:20 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.clone:20 +#: a01edf3b9cdb4626b6737bfec16c617d +#: 36fb07eb94ef49dc9dfc345a5f65c691 +#: caf1d19254a84130a4328e5f77a0a70b +#: 9580bd83d6114762b57e1b687765a81e +#: 92326de67ca84c17b29f93ca9ebefffc +msgid ":class:`.abc.GuildChannel`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.instance:1 +#: c874643e34984fb09f53a0612a9a1078 +msgid "The running stage instance of the stage channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:3 +#: afc6e38cd59a4c7abae58394c72b2365 +msgid "Create a stage instance." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:5 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:5 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:5 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:5 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:5 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:5 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:5 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:5 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: a860d1193e814ffd85bf0a64f5c96460 +#: c00b5b758bbc4e8e962dbfcc693755f3 +#: 14117592b05f4d06a30b4c20879e8987 +#: d972510afad3476584ba4948ce66576d +#: 9db9e2aa1c164e5186403e4bd788e967 +#: 7d6d15046d66479abf2d0fe9caa5169a +#: 311babffa4bf4e0eabadaa8e8172ea98 +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:11 +#: 2adbed76c2d44058b5a23660c0a6936c +msgid "The stage instance's topic." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:14 +#: 994336115c4548ed991343f91b95e7fa +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:17 +#: 3d38fa02f61b4c99b5009ad293c0c00b +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:20 +#: 6f7613a62cef4e20be3e6ff16a3812b7 +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:24 +#: daf699fa9af443fa9da0a51deed5c85c +msgid "The newly created stage instance." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:25 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.fetch_instance:8 +#: 9c9686e2d0a14683a181e9e88b509a14 +#: 155260cb1d8e4613b0448e82854766f1 +msgid ":class:`StageInstance`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:27 +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:18 +#: 2a69f4fcb45f4ade8fa8261598454b6d +#: 7f9f3bf3f4984cf7be4d397b003d5a5a +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:28 +#: 0f850c713bbc4f9fa722dd28c79d5b11 +msgid "You do not have permissions to create a stage instance." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.create_instance:29 +#: aae387d47ca645c7af000d7f0627891d +msgid "Creating a stage instance failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.fetch_instance:3 +#: 34c2a00adb6f4848aa1cd3b0959f47dd +msgid "Gets the running :class:`StageInstance`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.fetch_instance:7 +#: 2a8212724eb0417fb86677800297dd9a +msgid "The stage instance." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.fetch_instance:10 +#: 08abc5c686b84d1bbce3950ce0a84e85 +msgid "The stage instance or channel could not be found." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.fetch_instance:11 +#: 6be6f1a53cc74484b55ebb05b7623f48 +msgid "Getting the stage instance failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:3 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:3 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:3 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:3 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:3 +#: b2e2f851c87a4d75806ec5d84d91f6a8 +#: d6821c94520b44179e92b7a36b666883 +#: cee983ae8dcf40c7bd9500680095282a +#: 306a26f45d594725bfb1ff64e5124257 +#: 34b2eaa6b01d4a71aa781ab3af44b8c9 +msgid "Edits the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:8 +#: ac71816f1a7040fdabbd0b7c4113ab4a +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:11 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:11 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:14 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:11 +#: 70e1ecd5420a44c482cdc6d7970e356e +#: 8c6be7299dc54a21bcd8b2e845839146 +#: c2deae88f204499f8cfe4e8e9cd3799b +#: 1740282e8ba64a4297d7856a7602c729 +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:14 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:14 +#: b3042033fc1f41e0a7ca362c7fc6b2b4 +#: 78d6c97ec337435893e07f2090b136cf +msgid "The new channel's name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:12 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:16 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:21 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:20 +#: 9a4fe72c71564b6dac1e273987ca267d +#: 2445a04d4fa24279b86e16e302afcd52 +#: 058d6cfb2c8343b5a81c58ee5280af92 +#: 22c293354c9e4cbb93d5c760214941a9 +msgid "The new channel's position." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:16 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:18 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:25 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:22 +#: 28b85d3d9a3e42c690aebcdc756b8659 +#: a971fabb36cb4be3b2aa99b2754cefbc +#: 868dd47b908948aaa72928c41685ea03 +#: 54d85a9e4eb54cab8d6e4170bdae3b4b +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:19 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:21 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:28 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:25 +#: 7a7108c1fdb34bed8937a7877d4f1c06 +#: f210e422fc8b43958b8ad430f859b567 +#: 35456bec32c7487cb1295b64ea7e16ea +#: e3ba32d15fcc4b41aad555057727a0c1 +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:26 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:25 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:39 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:29 +#: c0b3b7fe32594f7c93abe776da7dd8f6 +#: d8fbfe20b484433ab4324ce03c704b48 +#: 0e0378ab37854b7e906cde4527e66382 +#: e142c12fb3b7438488f67ec6fd2972ea +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:23 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:28 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:27 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:41 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:31 +#: e9fbe45828cb4bd19e93296ab98065b3 +#: 618a575fc5c2447ebf3cf0ee2e0c81d7 +#: fe72727d04ef42f4a555f652d5fbc258 +#: 2036218aaf3244e8b498fb38f03e4ab8 +#: 2f1ecc8da86d4f44ad19bc9e1bb128ad +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:29 +#: 639187546700401c86775c5aba5f968d +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:32 +#: 5384b04c47d543fba5d0b8687447bac9 +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:37 +#: ec14d9ad4d8e40c0b6eda5434bf8fba5 +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:39 +#: b3f5e65f48c64c678a5cb3a165db1a5a +msgid "Optional[:class:`.StageChannel`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:41 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:47 +#: cd77eae84e4c47198b881cc8c19d7012 +#: 9fe19a630a91498a9e99d29f8f0e9509 +msgid "If the permission overwrite information is not in proper form." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:61 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:42 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:56 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:48 +#: eee74368fc62419e83a5fa7e4547b372 +#: d8bd6f65f0c64c408fef9944538ae367 +#: 4919859a0638451db800dcc46349c378 +#: b42cf697dbd34d89844de1c6ad7ec2f4 +msgid "You do not have permissions to edit the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:62 +#: ../../../discord/channel.py:docstring of discord.channel.StageChannel.edit:43 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:57 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:49 +#: f4eee836c1ef4595a1249c72fc4aa856 +#: ab2868056db14bd49d4a45ec3ce55485 +#: 2105d0b908054f0c8b5a1391bfa22c5e +#: 01c1433e5c3347a9a6199145dfb051fb +msgid "Editing the channel failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.category:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.category:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.category:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.category:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.category:1 +#: 09cedcdcfe6748fd9851abb128364216 +#: 3218dd10312b4f02b940ef0dd42a0066 +#: c4b717de6304453c8129ef8922fe7d66 +#: f7afa7a590ee439b81ff2775fd2c2997 +#: d500a5cfeb984bbeb411768d948dfb60 +msgid "The category this channel belongs to." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.category:3 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.category:3 +#: ../../../discord/channel.py:docstring of discord.StageChannel.category:3 +#: ../../../discord/channel.py:docstring of discord.TextChannel.category:3 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.category:3 +#: 79a25807046443a6bc1b79a1b106bd6e +#: 54c8d07abc2f4e4b84f3528b704bbcce +#: 0270ae407bd643fb9015ab0399519e14 +#: ba3a90d70f3a4e6f916c5a6b84f2d8b3 +#: 4fd3d3c81b5f47f7948004d102796c66 +msgid "If there is no category then this is ``None``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.changed_roles:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.changed_roles:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.changed_roles:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.changed_roles:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.changed_roles:1 +#: 48031388459c4cebb09fdaaa927a12bd +#: 21db79d4f5c9476ab1c744ae3807b381 +#: 87632551d8334943a0608e1802fffb52 +#: c1f017fe9e4747c39963c8a86e0e4ac6 +#: c0063c2930704e32bf671a00033e9be8 +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:3 +#: f7deaa2bbc044f24af765d5b1e3a0b1c +#: b0470e4596d94077b9910e6c0db03b46 +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:6 +#: d70b0c0665824f279f6f2d8f4c33368a +#: b2cf6ef4a0f644ac965843308425e22e +msgid "This requires :attr:`Intents.voice_states`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:9 +#: 43aeaecd4b2643a6bc63951f0bafe328 +#: 6e17ae492ada4471b66d92cc5f7d2471 +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:12 +#: 3c5bc8937793432ca7daa817aed76aa8 +#: bfe3d1da92e548a697242b8d7cc50a46 +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:17 +#: 614c4fd2722841e08c133eba1eea755c +#: d0b45b0c12374658b9b8332978142517 +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:21 +#: a7e95f41fa914cf38d3b0c61c7b2ff7a +#: c64d6cda6b2d4c34ad8c0d2bbef17fcc +msgid "A voice client that is fully connected to the voice server." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:22 +#: 978309374c9a4fcaa9ec5d4b81c4ea4f +#: 6830e4b5c72d4c1fb3a547c557b3663c +msgid ":class:`~discord.VoiceProtocol`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:24 +#: ef6bea38102e444ea718dad6b316d70b +#: 1e709d51c3324a748cfd2f445b0f4fcd +msgid "Could not connect to the voice channel in time." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:25 +#: 3803ca73e6ff4e6e8a3660e0fb82b23c +#: 7777e10e7ecb4ba3889a3eb7878c777b +msgid "You are already connected to a voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:26 +#: 2d6a9796e95542f184dc8040a1e90187 +#: aca50cd45d49455ea0d00df451dcd968 +msgid "The opus library has not been loaded." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:3 +#: 8284b6f7a985425eb7b9096b97fee46f +#: 5f280e8fb5784cad83a0790f43911780 +#: 1597433e9aea4e2bb4614c20e29d885e +#: 778c912c9feb488a8e672e3d698c0674 +#: 0e557be2976e4f9fb25c0e2172a713ec +msgid "Creates an instant invite from a text or voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:5 +#: 70c428800cb74bfdb244a446a5c7f7ed +#: 39669f62938a4707a49114899deb05f3 +#: e5dc506ceeb94e7298fefee4fc6f80f8 +#: d98a1f773e5f493db000eeef68a99613 +#: 654d51a490de4ad88be72c86a6e57e22 +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:9 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:11 +#: bbb89bbf5cd24082927b096b88b65cfe +#: af8e39787acd43659637cce9b45bf937 +#: 1b64cee2facc49fa923f9d4b63439194 +#: ac3caba892a44f01a980631b6610a36a +#: 159f14c0ac4249139661c3b0806f3f84 +#: c006c4c06726491ca99b740bfc2f9882 +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:13 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:14 +#: bedcf4e2057b460d975ee26ec8e6b9f3 +#: 0706ce989695430d9de57da567f3c736 +#: 3386072680e942249e6a417581541f9b +#: 03bd2d5f5ca3481393f8060e26a62b52 +#: d1b55bf26e96434ab0316e38ac5f491d +#: e2618ca269a2449db8acdc16f099ffff +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:17 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:17 +#: a639ea144cef4a2d8e7b0b5d1a2db86a +#: 16c75d1b68e6465db365e41ecf3dfe87 +#: c932bd2c4b3c453dbd32030a1d056a92 +#: b6393694fdbf4f6ab9076905263520e5 +#: 4130855693dc469394abd92b3ca20562 +#: 981274ded2784266aafa622ac0f72bc0 +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:21 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:20 +#: 6eeeb747c2df4cf4b68c675601f7d3bf +#: 06bc1963584c48d28feecf07bfe1ae0f +#: 0ea72c09b5c744cd8673d0cc1fc85782 +#: d86b4d8a2d5a4076abb0d4c9c7180e5c +#: 9b290bb0213d40bfa46849299b4ba52c +#: 766b45b003e24c939276b58d308cef10 +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:26 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:24 +#: 3e5d68bfef38424ea4dd2e8dec8ea22e +#: 60187cba5ba94c4086fa92d6a71ceaea +#: ef99a602677e4de1a6f8206899f7ce67 +#: 57a0dfdfd51d4e2eaf63f62064534d5c +#: a0b1aeeeb0f646efb218a0965caf6aad +#: 7858b2ae42db4f0aa92504be03d30393 +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:29 +#: f7c3557ed02049ffa29494923a1632a1 +#: 03c340728a884931874405a543ef70d5 +#: f042bc5ebff940189ef09351e86df893 +#: 4c1504b4989e43aca84ed63118db27da +#: 2f9892407e9d46b69863041ad9baae33 +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:29 +#: 7856f6d98f9b4686a4aae6e6dc45240f +#: 835ced47370f4cf087be18f43a3280ca +#: 09260d78274e4d9ab38e1a769fd04c63 +#: d6abc929eda540d4a964addac8b1a25c +#: 27f7c7205f6947249edb9e3c9ec25430 +msgid "The type of target for the voice channel invite, if any." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:34 +#: ba2d82cc52254953bd13d32eceaf43ef +#: 13df5164db0846b1b842ebe3990b4953 +#: fbe545c0dd70404d9ffc1c63772d28c5 +#: e16f8c2c70484f1c9d189cfb16d777a4 +#: 5ae9d4863b0c4ee49c1371227e9b020e +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:34 +#: 5aaa5f7dc0ff4ce587ae704ccf6526fa +#: 84e2c23ff6d74cc28edb7b4bbe1e6edb +#: 45300c5d95dc4a79a3d43150db01a39b +#: a3ffd96e19094be88a16710473d5d0fc +#: cadf53924ed44ff2aaeaaa7709b30b86 +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:40 +#: f1e931cf80764eb79c66781cbe3eb218 +#: 718f80a65177431f8a68c396a27ed8f6 +#: 9ce70e0b5d3f4c6ebbd3ae045666ce38 +#: cb6fc7cd9b9e4169abcaa62b3d301843 +#: 5eba5f4352d946f3b27669b15b7ad50c +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:40 +#: 46f587a58bad446fbfa6950cdc349794 +#: a561c22577534b408b0e55306c10b5aa +#: 9ce345977ffe4eebad307390dd8ab8ea +#: 9cee989084174e24971fb96e6ce1422c +#: cfd0dd7b2e38466199d7195fd071042c +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:46 +#: 5abd69aa39664224ab1cde302dbba8ee +#: 9bcb9b70478b437a99c2cd8009ace811 +#: 7b7ba9bc5a2e44beb1e2fe99d213ad1b +#: 036c0e3b8a684b92aa790e305e383e19 +#: 40de04756fc14cb0aa3f959d5363050e +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:46 +#: fa1870165cd547d0ac1334f32bb75083 +#: f2f47ceb122f4176b19dda416f369811 +#: d4c5f5409dbb4b8085492b7ceebf5669 +#: 8499bc106b3f44d8aca0aba6d77cbc28 +#: 169a9373ffc24d8084b11b9a00077802 +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:49 +#: d5fe56ca5d4e4b62bb563b9daab914c9 +#: 6ab0863a2bf24e90ba7f368cfb78b4a1 +#: 14eb716b492e4bafa6a20f71988063e2 +#: 504d4be7e2264197a8954e9b0faaac3a +#: 367aefe544564ce7a86e0211c77bf7d4 +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:55 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:27 +#: ad6d07cc0ecc4daf8e70e62b42c54694 +#: af53e5845a0a4065a15e0721ae5e9b11 +#: 228f694b508e40bcae67c73d90d943bd +#: c8d00027cc1e48929960fb5bc5cb943e +#: 565223d8dafd434abf8aa518bdd32e63 +#: 920ed87890b24b7aa8c93f351420a79c +msgid "The invite that was created." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:56 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:28 +#: a44a756d8ef54c06b9c598b3c5057293 +#: 190104ec598d443ea20f1e947bafef1f +#: 8f21ca33775d4c12ad44797feeb559f5 +#: 3eb08c16aa4d463192a12cb43aa48a82 +#: 453e5c47a40c40cdb748ad89082aa791 +#: 5339586e773642b985e2020bc28fb4a3 +msgid ":class:`~discord.Invite`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:58 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:31 +#: c31e3444e11d47d5a0c7c01273e242e2 +#: 41e2faab6ba84f2aa5178cdad655a68d +#: 9a3d7654ab5043719df72638e57a0528 +#: ef2bed242432493bbbce15e51c0cfc22 +#: ac6a06a94ec344668bbac4a4e4cde28c +#: 538fdb102a1b4b5faca849ffe2039b38 +msgid "Invite creation failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:59 +#: e7cf9d4d551c4341a736ddfb07f036b8 +#: a8ca5ecd896f4fa7ac76405ee965b3d9 +#: 1a205df9f30f431a9c2f05e74d0d01cd +#: 1363ac949c5f48c78333901b12de10e9 +#: b4614776886a4f848f9d8294395de611 +msgid "The channel that was passed is a category or an invalid channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:3 +#: 76d4b05d53d24bb89f07ef3ea80937ae +#: d461a68f298447178c8333b3a4277e52 +#: 825353a943924be58f24bf6c6ee0a689 +#: ba1c56b51a97439d952bee2fe7b61d21 +#: c2a0da5f68d74b91a1aee64706fb1ed3 +msgid "Deletes the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:5 +#: 790b7e62afe845a6b6bb0860e617ff2e +#: 18f34e502f2642a5852a536a001ecf97 +#: 9160fd433d5c428aa4e5a21a7ece00a6 +#: 3eeb12155f104d959391d2497fefd6a2 +#: 4ac84716827744e78a5dc49bba95774a +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:8 +#: 8db538d28f594660bf8aa72c650e4d61 +#: f75d6993eb944370a6d05e2631a270b9 +#: 02eac2d05abb40b7b88b39ca49f4d8f4 +#: 1e30c3ada00f4361a586479f834af0d7 +#: 60a24c0e6b894d649e320e4026585fc1 +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:12 +#: 0bde2d677c4c442d81074ef53bffa892 +#: 1b5230c5e04943bfa7a415ea55c75e64 +#: bde6809e6fbb4e6a826114cae5ff4241 +#: d1fe27fadec7411e8e01f7dab6d9d619 +#: 7fe3b4a5c31644c9842686b0cac9d20b +msgid "You do not have proper permissions to delete the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:13 +#: 76703abb28a94196bc3fe2539ff0fd17 +#: 1af35831069b4c0c87331788f3435376 +#: 7496f256598044638b63a5d2738a4468 +#: 581d7d58085041399510f181d5512bc5 +#: 06fa811c3d6a47e99a27b80ff09e52cc +msgid "The channel was not found or was already deleted." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:14 +#: 2242d4491ce5454f938e820c8e6e0f88 +#: 4ba430a4a16e4c27932f3bad9ee323ed +#: a1993103621040bd935257e045930384 +#: c6b7de86e41d4895b0ce7e71043652a6 +#: 384cd14b3e4b449b9b758c277817a2f9 +msgid "Deleting the channel failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:3 +#: dbc4b30c00eb410ebe53ad9b4896990c +#: 1aaf3839e6174b2a9cacc89e37a4141c +#: 3a0f1fd6c9c1405f88a26f99037f7679 +#: d4c44c27d4594568957efc82e8242895 +#: 57dd27ecf69c4df1b48c19ade692547c +msgid "Returns a list of all active instant invites from this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:5 +#: 5fcbbff57b014ff6a73619b4e701ef56 +#: 72c12a24385d42ee98cb393fd562a144 +#: 3ee8fe7af6294d5b8ec90133c7321dee +#: ff272cc6da11474a90920c9f928bab51 +#: 8f058160b8f74c25b4c6366cc8f7892b +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:8 +#: 05cac3b74a5f4adaad5d3d265f4819de +#: 0d67d2a5f3154abcbc2697f28a24587f +#: 933d04208e4d4f20997680440969b546 +#: 161611d1c75e454c9ef47b3ac9bf7838 +#: 7ea10eb1c62749af914cd3655b3104bb +msgid "List[:class:`~discord.Invite`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.jump_url:1 +#: ../../../discord/channel.py:docstring of discord.DMChannel.jump_url:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.jump_url:1 +#: ../../../discord/channel.py:docstring of discord.GroupChannel.jump_url:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.jump_url:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.jump_url:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.jump_url:1 +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 7bd7fb3f78054fd49d3531258f3b79b7 +#: a58bb9f9f9c14294a36d4302c2da8114 +#: 0d35374c4f6b4e99b9ac3773cff117ad +#: 17505174f0aa4b2e9e3e6730cadb9e0c +#: 515e0d9eefc94f68be7b3cb55526accd +#: b0ea7c1b1ba341b08b5fce63610e04dd +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.members:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.members:1 +#: 6811b1001649454db7b2e3ee65c02d6a +#: 2e2150c72df149fda4790e1f128c7943 +msgid "Returns all members that are currently inside this voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:3 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:3 +#: 928cb0355b304182beda16e7827b0e90 +#: 77abea15e0c54c3bb78b1fd041afd626 +#: 68870e6cb85844b894445dc6d6b9456f +#: 9a94adf5c8484d1db55334651e90983d +#: 02ccce16f857476fa5903327bacbd002 +msgid "A rich interface to help move a channel relative to other channels." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:5 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:5 +#: 62bbf4b228aa4f73963ec11bde6809b4 +#: 783845a5bc9942289cd9051e1596ded5 +#: df6a982d14294da1b5f48b9152ac694d +#: f0c71f5f919143b1800b315aa48cc290 +#: f6284f47392946128509263885b21e86 +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:12 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:12 +#: 64354ecf425049c18b97220a3cc8b93f +#: c992e8ea798744ecbbe162a12f11e2b8 +#: 14b11d7c75b3427ca862d99615a822f8 +#: c6ff4cbf991943a69fa27ee682a92438 +#: 2234f614fd7b4c45a97b310c96c7f716 +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:17 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:17 +#: 19e6d5cf82be4209980612975d29dff8 +#: 951dc7faf0f74b2f803f192a55f65335 +#: f07bd1b3a44c4f61a575045a71e8f604 +#: 762be53cc1dd4192b95929603a9f6fd1 +#: 612967684a2643b8add7ac88177f9257 +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:21 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:21 +#: 28d86464680f49afa0f33bf4938eac79 +#: 1cf23cf89f8f493ab819b73dda9e94c1 +#: 1305c2e11d734ae99fc2a43e8cfed0bf +#: 32e7f7601b324bb1ad7cb63e24e725b7 +#: 5e967f664ed54161b04affa50e1687f3 +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:25 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:25 +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 +#: 635c43e8895d440bb7537fb178d8854e +#: 690b331815974945bf6ce307c0feb6bb +#: b1636be771584670b6323a3f8ac2b815 +#: 877d5ffcb8c94895b389a46b42c519d8 +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:28 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:28 +#: 6f149660295343d2bef512e3122f3cf9 +#: dfec649c94974a45887e447732c7f4af +#: cdad1c3adc4947f2a7045f4061685ab2 +#: 13057246cd954d7eae282f1710bbcf35 +#: 8e693baaf0de4dbaa00c1dfa370a7272 +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:31 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:31 +#: 243b0f6c1dd942f09e1f66f4333f2937 +#: acd00407fc9448479a4ca050edec2e09 +#: 4494637b00324ed59a48142e181f84fe +#: 2fed4b7d332743338e525b8b5e0be571 +#: 2b9197c5f198450e9da765de66b9c36f +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:38 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:38 +#: b8bbf52e3eb842fab9307ed3207602b0 +#: 539a338969a84435888091844d2d555b +#: 963f07d4e29a4c8ebe82401b4ec6e6f0 +#: 1c973beee7d84682bc40745f35fdd27f +#: b2398064177b48779c15c594c96f9f7c +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:42 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:42 +#: b43c9a7f761945eaa7ff4de5fc52e741 +#: f4e8a2f903ff4371a782adeb95559fdb +#: dc76deb1cc754e89b8a7dc80100ee28e +#: 91c7873f2a2748e1b6a8e98ba0134b3e +#: 49253aba4b7045fd8390a7c9de8ae02c +msgid "Whether to sync the permissions with the category (if given)." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:44 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:44 +#: e78b0fba71c449c6b22bc68d7a42b8b7 +#: f3b1a11ffb1f468faa8f7bc5befceef1 +#: 0ed6d8434bde4078b6e0a74314372191 +#: e34011bc395c456b8d950a682eb7ae13 +#: a28e246ff88c4964bfcb4a7171f81e40 +msgid "The reason for the move." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:47 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:47 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 +#: 1bc55b59ce734c649742b65c009be4dc +#: 2a4db7a76c4349d397ff188afbbb71b7 +#: fde80780dd454af2856322fbf39c2c08 +#: d47f4c32436749d1a88005b09958c0ce +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:48 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:48 +#: ec5967cc04484df9aaaa322214ff2ebf +#: 8452d6c8290f4f7b8da36794751611e0 +#: 5f604dee3c544b419c2bd8b00ac438e6 +#: 15d746c8f0ae49bab06ef5f391a22e72 +#: 5544ea802ff64ed1beaf3fe32b8f58a4 +msgid "You do not have permissions to move the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.move:49 +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.move:49 +#: 13385efe88d34243bb30e64a26401394 +#: 0b56ddc9b97e4c96bdbb20771a463971 +#: 9120dd8b0f184da78f5b6906819ffe93 +#: 9c95bc4e17034f59b7bab8839b20b224 +#: dec5694062304b0e9d3ed0f5c54038b7 +msgid "Moving the channel failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.overwrites:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.overwrites:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.overwrites:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.overwrites:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.overwrites:1 +#: b7dc82bf54634320a5031a32b5afd0e0 +#: d823c1d93de2402ebc180c38ee0b55a7 +#: 9c60b27f5a5c4b8aac4b6bc5c97287ff +#: e93dc6fc79814661babec7fabad7157c +#: 5b57aed83f1044428dfba046c674b051 +msgid "Returns all of the channel's overwrites." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.overwrites:3 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.overwrites:3 +#: ../../../discord/channel.py:docstring of discord.StageChannel.overwrites:3 +#: ../../../discord/channel.py:docstring of discord.TextChannel.overwrites:3 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.overwrites:3 +#: d2fe158d967147c8b4ef1867798ca82b +#: 5e3653c027494a98abdba00f9b7471d6 +#: e0462e43c2884cf9a4f0701e628c688c +#: 6bb78bd8b09a4fc29bb8c72459c6fedc +#: 974c8f3ea70f4110a8be776bf96d29ed +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.overwrites:7 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.overwrites:7 +#: ../../../discord/channel.py:docstring of discord.StageChannel.overwrites:7 +#: ../../../discord/channel.py:docstring of discord.TextChannel.overwrites:7 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.overwrites:7 +#: cf5f4a1ff74146fb903c23deb37c3299 +#: 94c04ce492374c519ef6129234a6e712 +#: 2d0208a0cc8b4e8793ed6414f4dc1592 +#: 50158688a96a4979993b0bc5ea5b08b0 +#: 91ed96a3676742bbb13c22ecbabe6983 +msgid "The channel's permission overwrites." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.overwrites:8 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.overwrites:8 +#: ../../../discord/channel.py:docstring of discord.StageChannel.overwrites:8 +#: ../../../discord/channel.py:docstring of discord.TextChannel.overwrites:8 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.overwrites:8 +#: 83956f5a5333400b902ec3cbf55ef987 +#: f320589dc4e94857a39ff495f7a1566a +#: 58d0152da9f14db4a3255bf9b74b0458 +#: ff52d283e9174a0d9fb4557de76dffe1 +#: 71f34cb584b348edadeccf82f2aff4b9 +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.overwrites_for:1 +#: f9b2ad6e19814664ac9b8151811dd122 +#: 43a6512b7f2d4d3492a52751da96cd76 +#: 0c9940251d964a79bb1f9f466421bdf9 +#: 8ade00f75a4843e4944ee51d1b96bc93 +#: b7f210ff65ea473cab559865f0a9c193 +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.overwrites_for:4 +#: 424f1b06e4ca49da8f3ae55bd2b5a833 +#: 9c8942c8fe284da68e217b7d0371d743 +#: 5813e0405c7f45ae915510f4656fe5b8 +#: 548c52b1d45241919b4d1be247dd5fa2 +#: 22284b61469d4f258307d38c14edef43 +msgid "The role or user denoting whose overwrite to get." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.overwrites_for:8 +#: 941badf662e24af6bdb04e39a1020079 +#: b2c7aeb254004161bd814c8a23600781 +#: 69cd36d57ad241efa71e6e6889888e35 +#: 05d81f4feb1b4f1cb54bbaf726f91a59 +#: 7f7920b317a34945bcd5446e4ed5fa80 +msgid "The permission overwrites for this object." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.overwrites_for:9 +#: fc3fff034d7048b592fe35dcd866a631 +#: 3b7d2a357b544c309115a8a169c8aba6 +#: b8eb883cb7b043419b901c3213b34386 +#: d2b19264a5854c449838b503611c1876 +#: 33e15ebf7c504aaf88a989227bf6660c +msgid ":class:`~discord.PermissionOverwrite`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:4 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:4 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:4 +#: ad61cc31ac914379a2e312de3d43ffe8 +#: f5caf8809bae4e999b59e611e32e465d +#: 3cdf00c1c1054f35ab55db899be9580e +#: 6d07eab260c64ee58073504ca2a59d18 +#: f15a9ace9747445da5c02e62a6c4f039 +msgid "This function takes into consideration the following cases:" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:6 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:6 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:6 +#: a116f87071af41338aeba09a8eb992af +#: 07ad3d01ad594db2a7c051d03c051cb5 +#: 61525bc84da84e0a93f7d7a2157736b1 +#: 222a9e8858314928b1dd50fdae0599e0 +#: feea12dba0464fbaa33bf5c6aa677dec +msgid "Guild owner" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:7 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:7 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:7 +#: 412081ad6b56428da03c40fe91e46896 +#: 542ed13380884c3c95e720009fbac96d +#: ffaab80691c341aca96202fd2fa3f0ce +#: dd548b27519648b593396d3f47ffa99b +#: eebd3b10b82d40c9a7f704689675ea6f +msgid "Guild roles" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:8 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:8 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:8 +#: 3d8a5b7caf8449499a5df8e5f52da039 +#: 095dfe2417914da198f596abebe88cb6 +#: bfb0407ee4b74bc2949b4ca45fb1a1ef +#: 3f17f193a505472abb6e3f0dc3939068 +#: 4686f4c379a84847bd57fca226cf59d7 +msgid "Channel overrides" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:9 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:9 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:9 +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e +#: 3541371e3309434e970f31031d59762c +#: d5b00f3421164ce5aef51dad9e8c44f5 +#: 3b96fc010d9d44f98d8f6b20260eddae +#: bd062af0c3ad42088a441b2a31cb593e +msgid "Member overrides" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:11 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:11 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:11 +#: bb22b5f45b9744aba2495cbe1c5c3927 +#: fe5e7fdc5fc84feca63a2ff1a6b2d7b3 +#: a08cae6b74c749bbbbdb0b3bf508de34 +#: 192979879cfe42fbb64ab0dd2c1f80b1 +#: 834a42919e6646c1a9c0ddbbd3534c57 +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:14 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:14 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:14 +#: 7792fc4132114a33a1d0dd6a31c0d67f +#: 3508e00fda744f6aa69055c19458de87 +#: 900bc7dd17414098ae25409dd9dbed25 +#: f844bf021c3047e096240877b82924d8 +#: 474aea0c84fa4199b8063cde79e678e7 +msgid "The default role permissions" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:15 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:15 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:15 +#: a9f75d8e2445493f8f13f904067552f4 +#: 99ae0fcaba5745a588c70f08ceba6816 +#: 8a25f4efe7654e13b2c51c48acf8a8c8 +#: 5139eb896b9b49fe9d785fad61ae21cd +#: ed39e6a0ef9c4f4d99939c91fdc032bc +msgid "The permissions of the role used as a parameter" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:16 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:16 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:16 +#: f7edbbec0ac84cbc88a8a26badcac519 +#: 0670d6ac53ff44b1a316785627da702c +#: 29e79668633145fa829ed11bf6a80d1d +#: 1160fab5c9a6404db987ad3b7b275700 +#: a1104c8ec1b443808ebdd38677a42d43 +msgid "The default role permission overwrites" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:17 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:17 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:17 +#: 6174d926cc1b4b0d99f7af83decc22fe +#: 163eb643e37b4d8babb537afda6c03b8 +#: d08de93a304243d9a7073d473566f70c +#: fef06dbbe6014c028cfa1a5845c92448 +#: b8de203272e940408d4cc4ca0e8e826f +msgid "The permission overwrites of the role used as a parameter" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.permissions_for:19 +#: ../../../discord/channel.py:docstring of discord.channel.VocalGuildChannel.permissions_for:19 +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.permissions_for:19 +#: 0de4faae977c4d34ba5ebf875178efb2 +#: d98cf790aa9547cbbf3d407e51a0996f +#: 781c57ff083741c2b48905c6a8124329 +#: 24262e83d2204bb4833f3568849b4ea1 +#: ce4b3c9729404207b541a027cd837460 +msgid "The object passed in can now be a role object." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.permissions_synced:1 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.permissions_synced:1 +#: ../../../discord/channel.py:docstring of discord.StageChannel.permissions_synced:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.permissions_synced:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.permissions_synced:1 +#: 5afc09453dd94d4aa2b35273e549c663 +#: d3f74923167f469a84551e4942d97622 +#: 5ca14a0630ad4990ba2a1bfb4147fdb2 +#: 3f9be53469de4190bcdac1a85d4ed4a8 +#: c8e1748edd5f439ea7d7b8d43e5687c5 +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.permissions_synced:4 +#: ../../../discord/channel.py:docstring of discord.ForumChannel.permissions_synced:4 +#: ../../../discord/channel.py:docstring of discord.StageChannel.permissions_synced:4 +#: ../../../discord/channel.py:docstring of discord.TextChannel.permissions_synced:4 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.permissions_synced:4 +#: 981749f5cb0242b8855f2826a6dc6bf4 +#: 2c28d82926764708ba53181eecdb6cff +#: 61b80ca334024e7195fcf290599c6f05 +#: e02172df0fb94324a015f865d3036dd6 +#: 4c2a0105a4d04347b3f680e579a56a79 +msgid "If there is no category then this is ``False``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:3 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 +#: 3940b0e4b4c34f54966aa91841e7ade7 +#: 8874d328b125489186339992e5f22593 +#: e0ddfba672184034b4bce775748e2a82 +#: eb6e8c801d964d89ba5373d088d387a2 +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:6 +#: 3ef3986ccc4a47cf960c7dd5d60a5557 +#: ca610a5320894be9873ed4dd3d4014eb +#: 2e109bfca2e148e094a5f798f622d355 +#: b32c08c876664ceb86e5a267a8a9fd16 +#: d15b60ba2fc64338903cf246c1551200 +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:9 +#: b07e547adb1545f8a3616be524559dd4 +#: 23c5df6ce0d04b5fb57db3dce6dda84a +#: 88b673d5512e4536a22343969d466dea +#: a4768c1356344539a4cc94965d115eda +#: a88d860c873b418f9298c7e10bb52e0a +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:15 +#: 764ab65cb31c493594eaa77947707624 +#: 8f8c91ff49aa403d84c989c984f50f69 +#: f91f2a1140b24a30bfa717afd75fbfbd +#: a106c2fef26346848760427b646d7417 +#: c844e681c9954f48b987e9f693b458a2 +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:18 +#: 146970e2d3814a7188e3cbb525453e55 +#: d9819a906cbd408da3a09d94166f38f4 +#: 9552b9a1ba3c4548b0c5556672c08b15 +#: 440ecba0ce4e41c882487022b2b9882f +#: faaa431e88ba4781a15014a81c319bb7 +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:22 +#: 346d7572d6cd45afa3d668860d51d232 +#: 40b6ec6303b64c0e9d9303faa91b40cd +#: 310656de5beb4971ab1436f83d98e275 +#: c2c3f1037e4d479aa94acf2a71db40d0 +#: 0c3c9a23f7ea4ba5aaa70ed2b4c0c994 +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:26 +#: 637f3a1a21694797a9ac311c64c0c911 +#: 3941706d611b46faa20cdc21f13c83a8 +#: 3a1b85ecaccb4a0fa60066d51ac0c6a3 +#: acdab1ed900643539a3f3a7b17020091 +#: ca0d21c2613e44269d379ba8a7a37447 +msgid "Setting allow and deny: ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:31 +#: 810d95b1d4994c63862f68887c77e831 +#: b1e736666d794b04b538adcc7adaaca1 +#: 7386ce1862724c33afee98c45d33bde4 +#: 1b26e25da7b040eca4df295f92b1cc39 +#: 791fda77417b40dc85c6d1944ac14581 +msgid "Deleting overwrites ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:35 +#: dae2ea6fc6544c64bf6008937d45f7d0 +#: cf485cf44fc44459af969613dfc65b8b +#: 461d328ea43e4e9d93c3e27f7af9cebf +#: 562d408f4fae476f80b4a4aa706948b6 +#: aa519b6580594493814233f5b5467469 +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:43 +#: 03cfeadeceb24469845f590f9734b5ac +#: 32399a299e804ab58077db927fc1282f +#: 1e5865e994c34bba8a9700b2a0fdd85b +#: 7b74b28989534481a63f6b31dd0528cf +#: 8c723984806343fbbd494611c514b4fb +msgid "The member or role to overwrite permissions for." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:46 +#: dcf66235aaf14217aaf08ce4c7556408 +#: 8a0ef48a948c485594027bb5bd564ede +#: b35924a0c49c44a9919c603812f73963 +#: baf622d499994914b40f0f3736535a47 +#: 7f6c95fb17c944bbbe9fcf87d71e22cf +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:50 +#: 6f036719a4ef44aeb1c05e3412443113 +#: a0dd177c09ce4e66b1e58f7427b81e44 +#: e0113f26ddce4415bd5d5781e119aacf +#: 45f2de87f4f14263b502d341609471ac +#: 95e1e2ecdbae49b1a8b119b5b384095b +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:56 +#: 9efb0463f8ca4001ab156472387d2537 +#: 82eeb7e20c124debbd6d0d711253552f +#: 20dfffbca9aa4e439f9c6095da4de736 +#: f3cb449bbe554f718cece21c628b1370 +#: 5f28caaaccf84062ba290b0e6628c279 +msgid "You do not have permissions to edit channel specific permissions." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:57 +#: 61bb29fcb29e4916a4342d95e7354727 +#: 9e505be6aef0446e89b64c22e2ffbb1f +#: 38e01f41f2c64eef8cc057ac77c587cb +#: 19f2b78070bd41ebab660796c26f6ea3 +#: 15052ae4c78147b5885c3998efa6b265 +msgid "Editing channel specific permissions failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:58 +#: 4e7647606bd44e0b98e6cf273cb2d1ec +#: 696a1260c5fc4dfbbf5151c1bee3d864 +#: d25839f1b68b4943857ea57ae3a9ae60 +#: cc277c5f3b2847c8acf031a8b775e030 +#: 941f3c924445499c98df5c749d311051 +msgid "The role or member being edited is not part of the guild." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:59 +#: eed46e2237c8429cb10297b23b78e9a2 +#: 8fad2ecbe6864c1bb5774bd9dcf0cce5 +#: 5af8e8e1bab442159ce201af425a8315 +#: 8f5bb71369ed4e61a97395027a2bf42a +#: e9f5dac715304c988e1f06947975b747 +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.voice_states:1 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.voice_states:1 +#: aac395884ca44a2f930fe268dfbcf173 +#: 4baa3f10bc704a6ca5d0e3230e497615 +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.voice_states:7 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.voice_states:7 +#: ff1a46da477a45748d4878f27e338736 +#: 177f44c8eb374002b9384dfa28a7205e +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.voice_states:10 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.voice_states:10 +#: b0a39ba35b224de5b9bc4829d6564c07 +#: 70bc96b37f2b434e9449844ab6f370b5 +msgid "The mapping of member ID to a voice state." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.StageChannel.voice_states:11 +#: ../../../discord/channel.py:docstring of discord.VoiceChannel.voice_states:11 +#: e44ca07452324be283fc857fbc182383 +#: 0f2b7ba5f7d54ec096c3bb7adac0548e +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:1 +#: d1f3c8bd47f140719e5c0b888ad99b67 +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:9 +#: cfd9e47e9aba457a8d7e7dcded874e46 +msgid "Checks if two stage instances are equal." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:13 +#: 5389094ace54424ab29560b4eba7477d +msgid "Checks if two stage instances are not equal." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:17 +#: 10b764b2654e41ff8f3a68cfa60abf67 +msgid "Returns the stage instance's hash." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:21 +#: dc0cb661be4645ffb0ee5fb775fac7fc +msgid "The stage instance's ID." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:27 +#: 4b99c1a221404ba48edaaa5f27026cd5 +msgid "The guild that the stage instance is running in." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:33 +#: 25ae9212c60a42ae92f03be0294d125c +msgid "The ID of the channel that the stage instance is running in." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:39 +#: 4496cdcdbe394897845762e5db5b8d62 +msgid "The topic of the stage instance." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:45 +#: 753d7151d11749ed9ce37a2371108611 +msgid "The privacy level of the stage instance." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:47 +#: 0adc3279736942f287a3d9e1774aa984 +msgid ":class:`StagePrivacyLevel`" +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:51 +#: 203e2e85a6de4714bcf5108fc81cba3f +msgid "Whether discoverability for the stage instance is disabled." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance:57 +#: a0333acf6c3442b5b56ad839722b7f60 +msgid "The scheduled event linked with the stage instance, if any." +msgstr "" + +#: ../../docstring of discord.StageInstance.channel:1 +#: 1829c4b5e5394d688644ccb61fc9b59a +msgid "The channel that stage instance is running in." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:3 +#: 961d71895bdf42e1a265dcb3b977d9bc +msgid "Edits the stage instance." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:9 +#: bf4cb416b05f4dc5b4de3fed388dc439 +msgid "The stage instance's new topic." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:12 +#: 6bf6a4420bdd44b198d0f9df963a8335 +msgid "The stage instance's new privacy level." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:15 +#: be797d5ca83f47919ca615b971ce92e0 +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:19 +#: 98a2aed69860406c92d9d7430af6e0c4 +msgid "You do not have permissions to edit the stage instance." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.edit:20 +#: 1d9e265f57774641925c72942fecadf6 +msgid "Editing a stage instance failed." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:3 +#: 97baaaa1bd20483e9f048aa3d113c954 +msgid "Deletes the stage instance." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:9 +#: bce1bcc41ea341de90f034daecd0731c +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:12 +#: f52b3342df8f489d8b6254c7c5c7ab13 +msgid "You do not have permissions to delete the stage instance." +msgstr "" + +#: ../../../discord/stage_instance.py:docstring of discord.stage_instance.StageInstance.delete:13 +#: 9ee431d14a7f4af6b46c49f8b807926f +msgid "Deleting the stage instance failed." +msgstr "" + +#: ../../api/models.rst:334 +#: dd317db3c9cb4a29aeb80d2b10ad338c +msgid "Interactions" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:1 +#: 775ea52457284cd4a51e8046ea22bf5e +msgid "Represents a Discord interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:3 +#: 40047a7f0dad4c7889963527d0ff04a6 +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:10 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:9 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:17 +#: 6008728ed3b44140a9d0d21ecc5f3928 +#: f4f84a0d39a5415096e33117afc17b06 +#: 843ca076cf9f4ab893610380bb3d09fe +msgid "The interaction's ID." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:16 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:15 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:23 +#: c6a9f7b9c9cf4b248b01fab6c0256cce +#: a273ffe86c2a421ea09e577b102fc5f2 +#: 8fda6eb6e9744fb9919e33e8574d103e +msgid "The interaction type." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:18 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:17 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:25 +#: 1fc0cdfa3ed24c29b2f792d652f54f7b +#: f42c63e605a14830a4b22611fa4a7eb4 +#: 6674d64fe3bf41ecb3afb084d6ab79cf +msgid ":class:`InteractionType`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:22 +#: d271e7c0211841a98f87ff7809f85656 +msgid "The guild ID the interaction was sent from." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:28 +#: ../../docstring of discord.Interaction.cached_channel:1 +#: 6592055219f343cb9bdd6913260e9096 +#: da78be11664f477fa8875f0a7b3cf40d +msgid "The channel the interaction was sent from." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:30 +#: fe765f9ca0464f1b81b27493ad00183c +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:34 +#: d4988af767804657b320108c5d7b3467 +msgid "The ID of the channel the interaction was sent from." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:40 +#: 1cc256002cdd4d539edb65e587c2f9a7 +msgid "The application ID that the interaction was for." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:46 +#: 6eeedd965eac44a5b905a06d37c570d7 +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:48 +#: e4df7cd48a2e428086b0c54763d2c4da +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:52 +#: 752abdff761c400093ceddf3d5ba43cf +msgid "The message that sent this interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:58 +#: 6248830208cd4b49ae1952d3cb094507 +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:65 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:41 +#: 28ba605672334ec98d75cfc20d4534bc +#: 2375849cda56454e86bfe519ff681540 +msgid "The raw interaction data." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:67 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:43 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:112 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:60 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:33 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:29 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:23 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:33 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:29 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:83 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:59 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:27 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:37 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:41 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:29 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:33 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:41 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:27 +#: 62d4b92033714c14a7e588f356deec68 +#: 390c8624dbee4ac4b46a9018fe59c1d9 +#: a08a39c5ac1743c282d42fd08aa0146c +#: fdd66871e42f413f91630ab755642cc0 +#: 0d8cf637a87c4449bb3cc060f0a161ca +#: 0d012bbf318b48aea922da8dfbde52bd +#: 5e2adb415e01458ebe8bf12c580ee5dd +#: 43811f23ef0f43e89c52c4a35e426bb7 +#: cbd2ffd53c724c7bafa63ccd848f070a +#: d1e54a01f0774f4896b8612a22c28025 +#: 94b0a7cd651a4021b31cc47e9800ab0c +#: f8f4be92b11b45ee93138d4686048e0b +#: 8f25cc29567b472397894513b0182daf +#: 2b5149dbab43419392c909c03570cb24 +#: a8c335ba91c84b3ca1c0f77d33c858a9 +#: b438cd0bed4f473ea77908611255a13f +#: d1149ea4cc764ebe85fc026274a883fd +#: cd573655727a427ca3abbbaaa75bf083 +msgid ":class:`dict`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:71 +#: 431e63b876fc4e95ab4746e9607e8cef +msgid "The user's locale." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:77 +#: d1b67b9a517e4afa987f5d8808f281ec +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:83 +#: bc95434233944967b59146866853dc61 +msgid "The custom ID for the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:89 +#: 87681089c6c34a3a8b90710e070e432f +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:93 +#: 7a446b1615f949e2a8791a93cf39f86a +msgid "list[:class:`Entitlement`]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:97 +#: 02eac2317d8042c1973ec01e54f167da +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:101 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:29 +#: 575fb80fa5ad41f294d33252d69885fc +#: 154e1bba29304add98373d547e91d398 +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:105 +#: 5792e58158d04e58899ee162f1c542e7 +msgid "The context in which this command was executed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:109 +#: 149351b7df664788a413093688677723 +msgid "Optional[:class:`InteractionContextType`]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.Interaction.client:1 +#: 4464cbbf3555444890e48eaf0e78176d +msgid "Returns the client that sent the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.Interaction.guild:1 +#: 55c70be45b73482ca42cefdb013a99f3 +msgid "The guild the interaction was sent from." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_command:1 +#: bd66fcea2cc64e7793c0f6867ab2d4f3 +msgid "Indicates whether the interaction is an application command." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_component:1 +#: 26ede07ec91341e19637c9b51fbf2327 +msgid "Indicates whether the interaction is a message component." +msgstr "" + +#: ../../docstring of discord.Interaction.cached_channel:4 +#: 2059802134ba4fd1847a6c6046b12b09 +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.Interaction.permissions:1 +#: 38c0562356cc42cd894edfbccb261023 +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.Interaction.permissions:3 +#: ac78027c2cfd40abbeb784e00ead560e +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "" + +#: ../../docstring of discord.Interaction.app_permissions:1 +#: 7909ba6d6a2f41f6b6462a9351d9e4f4 +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "" + +#: ../../docstring of discord.Interaction.response:1 +#: cad185e4c9f94be694c4f320b7c90829 +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "" + +#: ../../docstring of discord.Interaction.response:3 +#: 4699990c15104a26b6d4c952657ddce3 +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "" + +#: ../../docstring of discord.Interaction.followup:1 +#: 8fdd84284e2a497bade0d8001a36e09a +msgid "Returns the followup webhook for followup interactions." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:3 +#: 2de1a112cdb84a6f9936002cc8f558aa +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:5 +#: f98e672573a846dfa70a7a495bb85fd5 +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:9 +#: 2f3891340d1d4328a53b411abf6e1d34 +msgid "Repeated calls to this will return a cached value." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_message:3 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:11 +#: 4bc04d411af54a45b89a5c855ec2ab0f +#: 2717db400a114687ba38f91ed42f1573 +msgid "The original interaction response message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_message:6 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:14 +#: c142aeb5a3c949ccb4255648b0bd5d10 +#: 084726fa63214b2e94321179eba6577b +msgid "Fetching the original response message failed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_message:7 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:15 +#: 49b41174c824449cbd07131376945e32 +#: 617daf4264034731824802cc29f2905f +msgid "The channel for the message could not be resolved." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_message:1 +#: 816552f68597445d88271545aff5d020 +msgid "An alias for :meth:`original_response`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:3 +#: 1850b83f26c04738a5ca8083908d7be2 +msgid "Edits the original interaction response message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:5 +#: 514bff746a3d4cd8b9ee478107a9cb8b +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:8 +#: 943be66eb84e4bbe8c3da8f3df723e6c +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:12 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:6 +#: 5d0e4e83b4f24731b34a35e79c46a8c1 +#: 98b7da1875db417aabbcd0dbd1362830 +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:15 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:9 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:10 +#: 78ab2785551d40aebdd0c9db2b357a8e +#: 603344ecfc034d319b6044aacb38eef2 +#: 41e73c3374504aa8baf4ea4006cb4596 +msgid "A list of embeds to edit the message with." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:18 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:12 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:13 +#: 1bfea59e058349e6983197c48ebab23c +#: c1777e1d36cf4cdca5089060b3d22f64 +#: 8133bfad144c4fc285af6c6a2ffa568a +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:22 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:16 +#: 60ad98432301495e81b9d767d8bc2752 +#: 23c0a5c83c1b4082bceacf39fc5817bf +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:25 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:19 +#: 6f346031716245248cab708988aa9e2b +#: 9bdebcdfe4d145279f6ec3b63cdb41d9 +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:33 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:27 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:28 +#: ded433826a6d40e98463ddc4efddb20e +#: 0ea732cdbeac41e6b33b10284cf7034e +#: 771e990f7b2f4f68aa287d5eeeb25f87 +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:3 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:49 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:43 +#: 6e9e9dc0d2334596a368697a50b9bcdf +#: 57b7e0b2c9594f87a4f6a794d8f8311d +#: 6d775076b74a453bb824b122adf60d34 +msgid "The newly edited message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:4 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:50 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:44 +#: bac68fd9b9b94a4db357840571c0db30 +#: c9d4555a10334b05844245ef0bb77543 +#: 5a9cafc9ebb44a988e53d72fa3acc1b9 +msgid ":class:`InteractionMessage`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:7 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:53 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:47 +#: 78d68e26f3c249a587002c93966ab85f +#: b305b4b190304f928eacfe9998ad4a2b +#: 83d2d0360abd4fa090c53ba56609fd58 +msgid "Edited a message that is not yours." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:8 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:54 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:48 +#: 4fd1e2553b774feead560beb83cb9a10 +#: 0e2e17416ca94d62957d593de02de4f8 +#: e013f627b3d148318c1026bda1fcb72d +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:9 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_response:55 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.edit:49 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:52 +#: 02602cf743b24b9c840aa0cd9efd0edd +#: a5114f88c58f463b828b0bbcdf8ea0cf +#: 11e6153895eb494c8673545a3aed000f +#: 1dac4288b11043f6a10a5237b6626b04 +msgid "The length of ``embeds`` was invalid." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit_original_message:1 +#: bd6d58e2d23149ba9ce01594ee1923f7 +msgid "An alias for :meth:`edit_original_response`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:3 +#: 14276a4f9e5c4b63a629f832a0753117 +msgid "Deletes the original interaction response message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:5 +#: 50fb04a60e7a46c78e90ee08c279dec5 +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:9 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:6 +#: febbc9cba8d34c6586876cd40429ec3b +#: 0be46a4f7281497d81fcfc6ca2269222 +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_message:4 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_response:14 +#: a1d88591f3784ab0a14ee62252f107fb +#: 7dd0c5d8414b42298fbe212d13c29826 +msgid "Deleted a message that is not yours." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.delete_original_message:1 +#: a6e99b1e2f7f4e65b5d8d9ba6c333fd3 +msgid "An alias for :meth:`delete_original_response`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.respond:3 +#: cbc7c9a8ce5944ef82d469e98f491d7e +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit:6 +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.respond:6 +#: c94a1b5cbea24b01a9797e6870ae5ea4 +#: 748314702bbc4850b92e37a2ef72cd23 +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.respond:7 +#: b30852d11460457eabb6784aba94a706 +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit:3 +#: 8d35bb67672a42fcac023f5995852b4d +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.edit:7 +#: 0e02b73f63d349c093e61f6adb60397f +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.to_dict:1 +#: f62b32c6deba4ae285103dd2f354292c +msgid "Converts this interaction object into a dict." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.to_dict:3 +#: 0ad066b6f53a48738838e07593cedea5 +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.to_dict:4 +#: 5c107ee8b22644db9b4cfed7056afc3e +msgid "Dict[:class:`str`, Any]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse:1 +#: 6a080d45f7f94f7b9996e3e689aeea4f +msgid "Represents a Discord interaction response." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse:3 +#: 749dee81631c46d0bfd9f420bc223e79 +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.is_done:1 +#: 1a1c87556c5b46338759b67959814cae +msgid "Indicates whether an interaction response has been done before." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.is_done:3 +#: 9fc4846fbb464219b452b4608fae6d7a +msgid "An interaction can only be responded to once." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:3 +#: 2cd8394c7ee440b7914ed17796762aff +msgid "Defers the interaction response." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:5 +#: cd531d8e26754adbb67ccfcc5557bc1c +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:8 +#: fac744047d0f466996a2066c3f50d6ed +msgid "This can only be used with the following interaction types:" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:10 +#: 9a9bf857983c496b92e769a2c61e3277 +msgid ":attr:`InteractionType.application_command`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:11 +#: 4e88a14c0f274842afb4125ddc39972c +msgid ":attr:`InteractionType.component`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:12 +#: cafbe6d28edb4eaaa0289f186f485ee7 +msgid ":attr:`InteractionType.modal_submit`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:15 +#: 2ba82ddad23d446db6d9655546f3b84d +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:19 +#: c027019699d74cfdbd10025be90b90c1 +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:24 +#: 781f8954cb5d49dd958f065940a34ed9 +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:32 +#: cf570c86c50649c0bbd0dd376d345eb7 +msgid "Deferring the interaction failed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.defer:33 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:50 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.pong:8 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.premium_required:12 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_autocomplete_result:9 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:53 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_modal:10 +#: 190377437a99469fbe3f65af715e569b +#: 5fd8b575c5ea4556be228e6ffd03fc31 +#: c2f8b5e3b60f49c2ae55cb0c96d9c761 +#: 41ed6b4b63f046e594fc7a1bd461f96d +#: 2d1196450c1a4ddda2a12fcaee95429f +#: d3e8dcb803094846b55c67ab4476b46f +#: 840e351b430d48a287d5581d900fcb4b +msgid "This interaction has already been responded to before." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.pong:3 +#: 726629a0abdc4eefbda7fd1c98f15b7f +msgid "Pongs the ping interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.pong:5 +#: bbf97771852d403bb3d12542b445d11e +msgid "This should rarely be used." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.pong:7 +#: 63865b257fb148eca22c5902537a160a +msgid "Ponging the interaction failed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:3 +#: 04fc7140a0054bbfab98eb1ef5eb9db2 +msgid "Responds to this interaction by sending a message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:9 +#: cf022833321e4d4e952d42c919a9e58a +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:13 +#: fa988857e557477dbba1ebe2e0cdea53 +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:20 +#: 7a2fc6f963a74c2bb23e22c1eefbb2ac +msgid "The view to send with the message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:23 +#: 78aa02922d154229b23d02e952d96cad +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:32 +#: 64e02398ff574112aa7da5406a0677d0 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:47 +#: 80d3084bbff64deb9a18d1bb91999e24 +msgid "The interaction object associated with the sent message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:48 +#: 818f06aff6094b08a83db537c72141a4 +msgid ":class:`.Interaction`" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:49 +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_message:51 +#: e2024a8f3ffb496d9c436a8a62f58ff2 +#: ec39f439f3e44c8ba5605d0e486ca274 +msgid "You specified both ``embed`` and ``embeds``." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:3 +#: bf8a8d7d68404c6c8dc528e78ef7571b +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:7 +#: 4b5180a1cf0647009a0d600d9383e0a5 +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:17 +#: 9a19c321a52f419daee55b3f6b21c3ef +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:20 +#: b1b174a3fec84e6db5e7e9611be7966d +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_autocomplete_result:1 +#: 32c68b7cc33841258ae96c0c02aa2da0 +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_autocomplete_result:5 +#: bc6555a8e3324ec7a29849428b192cb1 +msgid "A list of choices." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_autocomplete_result:8 +#: d864284c89884ed3ad8949b4cf99011e +msgid "Sending the result failed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_modal:1 +#: 8e54ac9007de4a4d829ed4df0e5915e2 +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_modal:6 +#: f4c62420e64349f492d00f247c09a447 +msgid "The modal dialog to display to the user." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_modal:9 +#: f2b153a0e68f499980aa1d0581b95ffd +msgid "Sending the modal failed." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.send_modal:12 +#: fa2c7415a5394f01aea0cdbeac5bf9ae +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.premium_required:3 +#: 78617e1aed38430384dba4d8cca25d12 +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.premium_required:9 +#: f77a39a6089f4253a884d8819df78f12 +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage:1 +#: c0b870f0e79d48c0b613e7df8c1d8588 +msgid "Represents the original interaction response message." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage:3 +#: d7736f47631844a6b757d1233dc575ad +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage:6 +#: f9dbfcff943e4cc0907be97e5dc96b40 +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:11 +#: 1c9fdeee1518456d982525c4a87964e9 +msgid "The message was deleted already." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:1 +#: 27715675c1044bd4b769e8ae37b2f93b +msgid "Represents a Discord message interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:3 +#: eb49b29ecd8048b3b781d3a2cce3478d +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:10 +#: 69521c9fc5714a6a8859ddff3efb8403 +msgid "See :class:`InteractionMetadata`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:13 +#: a79b8da007c44f1e96437ee14ccfea66 +msgid "Responses to message components do not include this property." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:29 +#: 58f0b598df8f4b0a9e46d1dc7f600c24 +msgid "The name of the invoked application command." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:21 +#: ../../../discord/interactions.py:docstring of discord.interactions.MessageInteraction:35 +#: 7f960d2316a846959186aa98cc5bdc80 +#: 409145fd4df94b01a12f89cb624a5cdc +msgid "The user that sent the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:1 +#: aefc043c2e7a4936b14e77ad181e747f +msgid "Represents metadata about an interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:3 +#: 4b72b7fa0dd34800b112fd5124349780 +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:27 +#: ec5f1e75991d4361b15dd4324d59c3e2 +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:33 +#: 9e25574cf7a64ecaa23396bb90495acb +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:39 +#: bdf5d71153fc41698afcb762ceb8b3b3 +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:46 +#: 29e6e31887114b448358d1e098c402bb +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "" + +#: ../../docstring of discord.InteractionMetadata.original_response_message:1 +#: b58e0939843b4f7f8bd3c352c93fd161 +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "" + +#: ../../docstring of discord.InteractionMetadata.interacted_message:1 +#: 24c26cbf637d43e586c71ac57e489433 +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.AuthorizingIntegrationOwners:1 +#: 65790c58c3bd4a77a1c2045e8c1d395f +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.AuthorizingIntegrationOwners:7 +#: 2722a330072a40ff9d26d694ccf3e59b +msgid "The ID of the user that authorized the integration." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.AuthorizingIntegrationOwners:9 +#: ../../../discord/interactions.py:docstring of discord.interactions.AuthorizingIntegrationOwners:17 +#: e9458a1d2e184ba08cb95ee060a70b67 +#: 735bd9af2c8d41c29d9233655c527e0e +msgid ":class:`int` | None" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.AuthorizingIntegrationOwners:13 +#: dfb1816376444865bf9fa592dd94e3bf +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "" + +#: ../../docstring of discord.AuthorizingIntegrationOwners.user:1 +#: c561ef72045447c8bcaefae99bea4069 +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "" + +#: ../../docstring of discord.AuthorizingIntegrationOwners.guild:1 +#: b6d1a54d63184868baf3162b671055f8 +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:1 +#: 325eccff689b463a930829aa10f85c86 +msgid "Represents a Discord Bot UI Kit Component." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:3 +#: 2d12acff11104cfdae9f7130c251450e +msgid "Currently, the only components supported by Discord are:" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:5 +#: 709fc995d26b4c83ac251992b4d0284c +msgid ":class:`ActionRow`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:6 +#: 006ee8a5eae04575b71c25f80734fddc +msgid ":class:`Button`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:7 +#: 0c5375d482ec498eaa71bfd03f2a8133 +msgid ":class:`SelectMenu`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:9 +#: c058b048558c41e796780dc8fd7e13b3 +msgid "This class is abstract and cannot be instantiated." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:11 +#: ../../../discord/components.py:docstring of discord.components.Component:15 +#: f81c11da386445dbbb02292e3bc450c1 +#: 89ecf88b78234d639fe5aef5ab95e604 +msgid "The type of component." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:13 +#: ../../../discord/components.py:docstring of discord.components.Component:17 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:22 +#: c7fa145264a345959a3d9ee21d0d3f9b +#: da0833d3f5df47819f035416fd8df72e +#: b1224d56b89548df91727a628f4fb5e1 +msgid ":class:`ComponentType`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:1 +#: 9f7d8de88aed40a08872c3374e05f049 +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:3 +#: 52afa1f78ae7497c8060bdb4a963d379 +msgid "This is a component that holds up to 5 children components in a row." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:5 +#: ../../../discord/components.py:docstring of discord.components.Button:3 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: ae951379b11b4f6fa7a73a7766a00bc7 +msgid "This inherits from :class:`Component`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.ActionRow:17 +#: 3248a4ea4e8c4849a1e3cfd557671f33 +msgid "The children components that this holds, if any." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:1 +#: e0b3fcd3375d4bfb8695df0a7104c162 +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:7 +#: e84696cb443c46b1a00676610ca02b0d +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:14 +#: 17316ef8cf2e41eea87856713d44d589 +msgid "The style of the button." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:16 +#: 9b26c0ad72604068a56d44df8deaf10e +msgid ":class:`.ButtonStyle`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:20 +#: 3e0bad6d875e4b708e06d95b7bc848df +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:27 +#: dbc3fc6e82d449c498ff55cedadec8f1 +msgid "The URL this button sends you to." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:33 +#: 92ad8e5b06b44eaeb61e9ec6fe198505 +msgid "Whether the button is disabled or not." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:39 +#: cf2143a753e04aaba2c533fd326bcdbd +msgid "The label of the button, if any." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:45 +#: a1bedc695439492f85e0988db64713a1 +msgid "The emoji of the button, if available." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:47 +#: 2f8502a4187e40f597d6496424c5ac3a +msgid "Optional[:class:`PartialEmoji`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:51 +#: 76a7eb849b774f21a8d3351ab54c814a +msgid "The ID of the SKU this button refers to." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:1 +#: 6efb83e0de88482cb68cfc583e02da9a +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:3 +#: 7bdf0a195f7349158b0f1f4e36fb930b +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:8 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:15 +#: 1f0a74344d894d50bbcf2e95bba368ca +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:20 +#: 2102950811c74486ab9b1026c9caddb1 +msgid "The select menu's type." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:26 +#: b88d7aba2c9f46f88b681a6b575cb84e +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:32 +#: c13453267e014bf98fe6f803e5a076c7 +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:38 +#: 3fdc6cc88eee4898b8468f5a5a44e7d2 +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:45 +#: 33a222b1a7e9441f86f5ce875be10c72 +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:52 +#: d4e8136b7e634c6daa20e200a532bc0d +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:56 +#: d343089d09514315960da0c7bf2b3de2 +msgid "List[:class:`SelectOption`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:60 +#: 5352d7de29a64f59834df1c06284439b +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:64 +#: 1c0857ba83824e07ae47f6b53750d2fa +msgid "List[:class:`ChannelType`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:68 +#: 4d0bc3e8202f4bea84931cee7392c89d +msgid "Whether the select is disabled or not." +msgstr "" + +#: ../../api/models.rst:389 +#: c885c2e7084646b998c51b1c9bafc0aa +msgid "Emoji" +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:1 +#: a4f545bdd7dc437c9d245d238586c702 +msgid "Represents a custom emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:3 +#: a3349dfb97b44db9b3ecbbee8e3a01ff +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:10 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:12 +#: 44bf70fa78894c1daddd55e9d90838e2 +#: becd01f8fd1f47adaa0754ac37546acc +msgid "Checks if two emoji are the same." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:14 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:16 +#: d2a07b8aa3ab40839e60c1d979b40ceb +#: 20d3c8bef0ed446d9a3ec7735bf48338 +msgid "Checks if two emoji are not the same." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:18 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:20 +#: 4c8a36b9a18a42cc928f6013bb72307c +#: af91b63de0d6472993c083bae4acff31 +msgid "Return the emoji's hash." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:22 +#: 7cf57bf9d537462a8b495549c81e2242 +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:27 +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:24 +#: 2a7b951e1a5b452d93036b3794628d0d +#: f75ad24eebd24327a2efea939afcc297 +msgid "Returns the emoji rendered for discord." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:31 +#: 14ea0733e1d541da9fea4210dc039209 +msgid "The name of the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:43 +#: b6e01311a7694deeba97d6ea2b8240e8 +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:49 +#: 880bd48f7776420995813479f53ac12a +msgid "Whether an emoji is animated or not." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:55 +#: 69dcc8a19c474fdb8fad0b3391750694 +msgid "If this emoji is managed by a Twitch integration." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:61 +#: a1e8a33a32c64b71bef5731eeaa07cd3 +msgid "The guild ID the emoji belongs to." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:67 +#: 33a23d7c29004eaaa37ca543e08ac512 +msgid "Whether the emoji is available for use." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:73 +#: db162171483149d08942625fc5b9ac36 +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.Emoji.created_at:1 +#: 62dffac0a0724a6383eb42c22cd717c4 +msgid "Returns the emoji's creation time in UTC." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.Emoji.url:1 +#: 94a262936d7443e284a5b0bca6175dc3 +msgid "Returns the URL of the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.Emoji.roles:1 +#: 5dfaa3531d0646b0bf85c2b34e72fb67 +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.Emoji.roles:3 +#: d76d5cc472e547e2893bf6d83d18cb1b +msgid "If roles is empty, the emoji is unrestricted." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.Emoji.guild:1 +#: 04b446a6ff504bf8a407983e47aaeb77 +msgid "The guild this emoji belongs to." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.is_usable:1 +#: a9a8d25d86ae4c3496bc37cd89b9ea7d +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:3 +#: 496fefc520c1400a95b50c17283f2426 +msgid "Deletes the custom emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:3 +#: aca7f87a81bc40f8855d7c68ddee4b7c +msgid "Edits the custom emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:8 +#: 9eeff73ac06d4e61bc1a6e1a62c484b2 +msgid "The newly updated emoji is returned." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:12 +#: b1be944c7f23429e8685fd13dcaf8082 +msgid "The new emoji name." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:15 +#: 7a765fb4a9714da9b98d6d67185e6ad0 +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:18 +#: 9a6b2a99c62d43668117ae80889fa7d7 +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:21 +#: b2b4c21efd88459db5e27419833f6c0b +msgid "You are not allowed to edit emojis." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:22 +#: 29b4b67b766647a38d168494e1cfa898 +msgid "An error occurred editing the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:24 +#: 89165b83444e45609f6f4d2352594759 +msgid "The newly updated emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:1 +#: f39d6b6e8b3044fba02ad0bd00f8d7f6 +msgid "Represents a \"partial\" emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:3 +#: 5d68be3976954c49971d9c1525d67938 +msgid "This model will be given in two scenarios:" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:5 +#: 0bd5bd19fa184dfd8018db6e2035c59c +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:6 +#: 391bf6eb223945c8bb01c03d034bfa67 +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:28 +#: 9a2e957e6c0f49419644ab64c951ea5d +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:36 +#: a7a51594069a438f8acd9bbca571858b +msgid "Whether the emoji is animated or not." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:42 +#: 23ce1e8f521549d09f31a673daa9a7bf +msgid "The ID of the custom emoji, if applicable." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:1 +#: 4e68e8b298ae489096c3076a1bad8b8c +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:3 +#: b51ef4ea5b024d89a5e6790bee09dbb7 +msgid "The formats accepted are:" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:5 +#: d92c174300aa4cb682ca65c243bd2886 +msgid "``a:name:id``" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:6 +#: 7e7e15b82eda46b69f622b8d207a7938 +msgid "````" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:7 +#: 068b659b889a46e6af015102dbae96ba +msgid "``name:id``" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:8 +#: 26451483b7b345a89034cdb9f5bee4a7 +msgid "``<:name:id>``" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:10 +#: 0004bb49447249e5a5fb57df035e4181 +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:15 +#: 682f94e2acc1488989fc736ca8c488b4 +msgid "The string representation of an emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:18 +#: 18e7d4d4e1e44093ab57f3037fb1e861 +msgid "The partial emoji from this string." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.from_str:19 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:32 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:27 +#: 1eda185924ee4e90b494cdb8b767c886 +#: f296facdc7fb4f9d8580bf1979a8f63f +#: 78374005cdba428799c3d9ccf89ff1ab +msgid ":class:`PartialEmoji`" +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.is_custom_emoji:1 +#: 591c4b9c436d4c1e9ea45212c5423557 +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji.is_unicode_emoji:1 +#: e3856358c4bb4995809b5f40633b3838 +msgid "Checks if this is a Unicode emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.PartialEmoji.created_at:1 +#: 53d2c4b30a8b4edab0af741a907d0fe5 +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.PartialEmoji.url:1 +#: 07396e8cbb974e699724356e6ef8a4f3 +msgid "Returns the URL of the emoji, if it is custom." +msgstr "" + +#: ../../../discord/partial_emoji.py:docstring of discord.PartialEmoji.url:3 +#: 1ef7bcbcbc1248db84780ad13df86a2f +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "" + +#: ../../api/models.rst:404 +#: a26c3fb538cc4eae85bc9b01ec610081 +msgid "Channels" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:1 +#: 1cf47d24b7704b8dad853e268978d801 +msgid "Represents a Discord text channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:47 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:47 +#: 28cadf33bcaa4284b510b25b352040ba +#: eb66fa28f10a4cf18784b6993f21d0a1 +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:64 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:60 +#: de489b1b036047c99f633e4585c04d92 +#: 6799d333c7374f3baa14e17bbe979d1d +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:71 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:67 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:91 +#: 77a34e9892e94686b1a5737a8469fde8 +#: 8bea4cc436054aad952de32842bfec3a +#: c3d9c099317e4a31a62382e206430e66 +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:50 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:80 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:76 +#: fab80e171db445d78867efd958f0536b +#: 68a6f0c643334b039178e19624162190 +#: feb8508c458a4f11a253deaa27c18367 +msgid "If the channel is marked as \"not safe for work\"." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:54 +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:84 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:80 +#: 50ed6ace112b45399a2e24de081c9951 +#: 2099873bba824ae3bd9621c1614257cb +#: 587776d3ff9443da9e1339a2c5aa945d +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:90 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:86 +#: 39c3e1849aea42b1a5e44b6b35945813 +#: 8845bb2bc0b2498f9a0200cf3bdd6e77 +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:122 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel:102 +#: c03fe611956149aba94e3914962f92df +#: ee68f9a18fa2489ea04d9db6835ba4d0 +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.is_news:1 +#: 59a76c086f30476faaab4e29e854acd4 +msgid "Checks if the channel is a news/announcements channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.TextChannel.news:1 +#: 550e2832cc16427dbd968ae91bf8abb0 +msgid "Equivalent to :meth:`is_news`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:8 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:8 +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:8 +#: 1d1be76fe7b04528b2c3ee29212c3c84 +#: e12cab0ae5c349fca58c5fb8a820c2b4 +#: 7b8346a1f7024ea49386f01b49c40c8c +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:11 +#: 63058ac2db904abc8c2ac2b98b8a38b0 +msgid "The ``type`` keyword-only parameter was added." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:8 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:17 +#: b736174baf734a728df41ae7c8846701 +#: 2ee819e8d8c347a491d83c220eff9b2f +msgid "The new channel name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:22 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:31 +#: 795407065f204ab394d5d71e46f4f9e4 +#: 769324b47b1948c887bfadba3aa87096 +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:34 +#: eb56e78bf81c46edb931dd15152cf3e9 +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:30 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:43 +#: aec9e5551cb74af8b49d87aceac3742b +#: 55caee58ba774428b66b038aa7cad626 +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:33 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:46 +#: 2b1b27b29de74dada9a54eb48be4b94e +#: ce1d5aabfefd4ed18ec53ca906efe9bf +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:33 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:46 +#: a07120a4d00149718bbcb809103cc6a7 +#: 3a653e1d55f1444d8c9e29ce2fa84f55 +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:51 +#: b15a139dcf17430b9bda24a4052d3504 +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:53 +#: 9e006a134f6d4a5c98852ac3f6ee4da7 +msgid "Optional[:class:`.TextChannel`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:60 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:55 +#: 0fc3c3b030404e49b32d2e3452611428 +#: e91d03325d36413f8d8c98f5102d39f2 +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:3 +#: be26239c94d04849849334d27feda04c +msgid "Creates a thread in this text channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:5 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:5 +#: fbf735600cc44f92ab131b1a3b735685 +#: 07c17b4812c648488fe1c6cae1000d7b +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:14 +#: 515f99b3674c4b6296c673589b16743a +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:23 +#: 79387b6c65034148b278684aec8e838f +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:28 +#: 3a1d717daba84e828fbd005b5afebc7d +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:32 +#: 799bd650e7ad4728a8c423f25d53bc64 +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:64 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:36 +#: 0102ac1b4d7c4838bb44d69f8d60d28c +#: 0836f9d3b9bc4275b7aa29e057dd67e2 +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:67 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:39 +#: fd6df08adf534a90b14c140cbd59529b +#: 2eaf33683cc841d4aa582307033e02e7 +msgid "The created thread" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:71 +#: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:43 +#: f3041c1cfd4f4cd0b84d05aec3166d18 +#: 47f994eba7234adc9d8e01a778295686 +msgid "Starting the thread failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:1 +#: 53020510c3264070868a136e9d819a55 +#: 16bc9dfc41a2474598eff64dea1a5ace +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:3 +#: eade018b8df94654aade6c41b12a606a +#: 3479583f74ee416b92e17f1827e7642d +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:9 +#: d96d787d544246e8955385af1e212084 +#: a5261fe85c284ca9bff377299076f047 +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:14 +#: 18c4a1c74591444e8ab0eadccd6068a4 +#: 29393dafda4343f7a17c2efec0027a97 +msgid "Retrieve archived channels before the given date or ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:17 +#: 47e0f3baf0144f1ba8b3c4d5ef0bfe34 +#: cf965a09ccb04c7b868a1a0360923a1a +msgid "Whether to retrieve private archived threads." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:20 +#: 53a32620bfa14fbb874c660624fe5617 +#: be25b29fa921450b9ade0075901a002d +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:24 +#: 7893ab8ad95343709b667196bff9d808 +#: 968d21f3904145fe9333ab241fa0b787 +msgid ":class:`Thread` -- The archived threads." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:26 +#: 2d87b8ad74d74790955f8a8f7521ae0c +#: 3bc06f0dfd894609bde493b7d2440bc3 +msgid "You do not have permissions to get archived threads." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:27 +#: 00056e8969fc401c9d8d3a593d399d7b +#: 997e96f159a948d4add95b13ee092675 +msgid "The request to get the archived threads failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:29 +#: 2e2ff553e8684e86a18df67eca7e1566 +#: efc7c604516b41d5ac63cd9baf01b466 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:1 +#: dd7fe9e0e5104c1bb97c25dc8254e260 +#: f7a5d5bc238e4cfda7eb0d9f462763b8 +msgid "Follows a channel using a webhook." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:3 +#: 20936b5e624649fe9dc85c8cc9da0a31 +#: 6215fd20954c4b9193d26be0a03750b4 +msgid "Only news channels can be followed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:7 +#: 4e6a755a76a24f0dac7823c73d8eeed5 +#: 28092e4b9ac148a792e58b9717441e70 +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:13 +#: 3a6238bf9ce5438aa21950c2d2f44a49 +#: 5e26ab774ad841b6a1aa9a858b4ed136 +msgid "The channel you would like to follow from." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:16 +#: 0e891d00bbcf4a789ddad17a6d35832c +#: 4c8ff04756af48d18261f4e7b354e7cb +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:16 +#: 7c0e19b5677c49e9ace5407d47115d0c +#: ff27e9c4693a4832b50ba9474b62f6b5 +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:24 +#: 6e59b434e5ea44f28ea64487973c3373 +#: 2a64045438db41188e79d029591c37ba +msgid "Following the channel failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:25 +#: aafe6d980d8c46cd89c2a0d6c857ced5 +#: 57e4a623135c4a9382a8ac77daa99ac0 +msgid "You do not have the permissions to create a webhook." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.members:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.members:1 +#: d3a81ce636a44a9e88b3eea449b50f70 +#: e7ba63433ac249d1b2bdcdf52e53b647 +msgid "Returns all members that can see this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.threads:1 +#: ../../../discord/channel.py:docstring of discord.TextChannel.threads:1 +#: f4fe0d12fcea454aa752afbccfa50240 +#: 198ce86902f246fc8227b0d5e2be7f27 +msgid "Returns all the threads that you can see." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:1 +#: 3d9ee502ea0640118b0f4cf0cbb8e626 +msgid "Represents a Discord forum channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:51 +#: 4b34ca608be34c5597336cc69ea91cf2 +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:106 +#: b083e6a86b634b1894c54f243b988735 +msgid "The set of tags that can be used in a forum channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:114 +#: cae1b545239a43b6aa72e818246d1b4a +msgid "The default sort order type used to order posts in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:118 +#: 163ca8890cd8438d88981ac907297672 +msgid "Optional[:class:`SortOrder`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:130 +#: 79295ddcd99444a28326d80b16bcb8e8 +msgid "The default forum reaction emoji." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:134 +#: 301a6e58f833446e89b741b0196dbd33 +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.guidelines:1 +#: 718249dfc3d4489791382f41a839e150 +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.requires_tag:1 +#: 8dae47fc78014be6bdc6ca09757b5007 +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.ForumChannel.requires_tag:3 +#: ef72d447ccb444db82cfbcc3779bc392 +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.get_tag:1 +#: 790f262d27f049caa2b496ed4373523e +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.get_tag:8 +#: 193050a1c4bb4382bbbf16fdfabd0435 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:37 +#: c16a388e069d4526b2674948441ecfbf +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:37 +#: a743fff2abf44d978975cbef0b68d112 +msgid "The default sort order type to use to order posts in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:41 +#: 60f31611259c42a69519afb9d55367d7 +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:47 +#: f1f62f3c054949af950dbe405e52b553 +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:47 +#: 0b5e325a38434b46b84bf970a8b2c356 +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:51 +#: 7efd5463c5cf4f67b497827921ab640b +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:51 +#: 46f1ffe182e64c9ba4a690d9f6460f58 +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:56 +#: 794542333a414e1999fcca0dd25f516b +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:58 +#: e6117095200744589214d6b9a9606502 +msgid "Optional[:class:`.ForumChannel`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:3 +#: 20d73b30bc03404db6cebb419fc013d2 +msgid "Creates a thread in this forum channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:32 +#: 2b7967c4efa54bc092954aa4b4790943 +msgid "The time to wait before deleting the thread." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:50 +#: fd82b9157d3e4afbbbc2d483895a3773 +msgid "A list of tags to apply to the new thread." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:57 +#: 5812e2412483464bb0330be789353b43 +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:1 +#: 176b5d8e42a149aca568b2ab47d6d85d +msgid "Represents a Discord guild voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:83 +#: 74371b3956454f0dbed25b2bb2c7a21d +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:102 +#: 43512047185a49aabc1a03e1af965a58 +msgid "The channel's status, if set." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:16 +#: 0a27deab81dd461da942e57ef12425b8 +msgid "The new channel's bitrate." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:18 +#: 9b247bddd4ac418d8e12d122b4570e72 +msgid "The new channel's user limit." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:33 +#: 1f0f56119b9e41deb242811f7c8ca21f +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:33 +#: beddf16d24b343009db491a281c45474 +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:43 +#: 8429bc1f3b3d4ad6a65ac7f3de8ef5f1 +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.edit:45 +#: 477c17bee0a64b0e8d0b82aa34a7a062 +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:3 +#: d817b78eacdf48e6812d05f13985393f +msgid "A shortcut method that creates an instant activity invite." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:5 +#: 71034e6b918e41a88b295c40378de972 +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:9 +#: b79c6282c8e440628022aaa3a2d90857 +msgid "The activity to create an invite for which can be an application id as well." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.create_activity_invite:30 +#: 403a4833625a48e8b746bd791d33f1b5 +msgid "If the activity is not a valid activity or application id." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:3 +#: 1cd7a8f6f43b4fa4ad315833918a527f +msgid "Sets the status of the voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:5 +#: f8d1b48374784102ba343b5bf2ed84bf +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:8 +#: 29ad9a928c66456baf52fec8cf63ba65 +msgid "The new status." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:11 +#: 66a3cccc28684da3a091335c07727ef8 +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:14 +#: 4667178d35264140a0c30c1a62d3e94f +msgid "You do not have proper permissions to set the status." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel.set_status:15 +#: e577ec72d87b44f997070b042dfd5927 +msgid "Setting the status failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:1 +#: a9d340ffed6841aea33ff4985cddcbcc +msgid "Represents a Discord channel category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:3 +#: 7c1573d6fd0245109df230dd8ecbf388 +msgid "These are useful to group channels to logical compartments." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:17 +#: 63e3c6221a184d2b9688c0e5bc1bd14e +msgid "Returns the category's hash." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:21 +#: 936f63cab2574f28a0c5410be52d8880 +msgid "Returns the category's name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:25 +#: c1df12ed1a724f27be3f2c4803917b8a +msgid "The category name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:31 +#: 911563f1a0a1497593ab58c660c51247 +msgid "The guild the category belongs to." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:37 +#: 9eaf9fd54ae14ef49c4283bd42bdc435 +msgid "The category channel ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel:43 +#: c80d0d015c2a49e2bf6092504cb5d3d2 +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.is_nsfw:1 +#: e9979dc9e1ca4edf9bbab4d0d9d940ff +msgid "Checks if the category is NSFW." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:14 +#: ef4264b15f4a43e9bd1f8cbd08812001 +msgid "The new category's name." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:16 +#: 33ce503ce56e47ccb5a39480e2a788ff +msgid "The new category's position." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:18 +#: a435247eccb243ac905d04ca7c85813e +msgid "To mark the category as NSFW or not." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:21 +#: 997e5dc2ce0c405a80238b62e7946484 +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:26 +#: 73ae0571d02d466cac576ee0903571f3 +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:28 +#: ee95be99ea4940da9448b273185c78c0 +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:30 +#: 480b9252595a4ed4b1b95eb359604cbd +msgid "If position is less than 0 or greater than the number of categories." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:31 +#: c2f46b9891fe40ada146763803d531ed +msgid "You do not have permissions to edit the category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.edit:32 +#: c5809c792a1740ffb03db9155e4d695c +msgid "Editing the category failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.channels:1 +#: 4f08c36f4ffc40d4badff0801f721889 +msgid "Returns the channels that are under this category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.channels:3 +#: c90b3a756a4048228b28ad9566918ebb +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.text_channels:1 +#: 48caa2a52a4144049a492c2f01a7eff0 +msgid "Returns the text channels that are under this category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.voice_channels:1 +#: 8f45774d9356475e874aee31fda3247d +msgid "Returns the voice channels that are under this category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.stage_channels:1 +#: 7569c68aba4545afb640a92e84fb4953 +msgid "Returns the stage channels that are under this category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.CategoryChannel.forum_channels:1 +#: aa08e4cb2f0940eb8d70ec09350d030d +msgid "Returns the forum channels that are under this category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_text_channel:3 +#: 0bcafb6404fc4a5b9e418a9dcff0bc95 +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_voice_channel:3 +#: c15aa9c3711542d79aab55cbf96ac79d +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_stage_channel:3 +#: e44eb392ee574f87bf54665424c1f131 +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_forum_channel:3 +#: c39adbc2bbd645db8ff6528b2cacb1f0 +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:1 +#: 9bcfa7dd51134c0c971d4c30899cbb1e +msgid "Represents a Discord direct message channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:19 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:19 +#: 7241a3894f7647c99e02bf6dc83f92d7 +#: 18a08567961d4b80a92a2d23ac1b2c2a +msgid "Returns a string representation of the channel" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:23 +#: c5d76213f75c4f70b94ea6aa3082417c +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:31 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:29 +#: 07d26c6d19384c6f86ae530ce8a92741 +#: e346ebac2edc4baf9fa691a7386411db +msgid "The user presenting yourself." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel:37 +#: aea97e16a41843c3a2d833abae3ca0a2 +msgid "The direct message channel ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.DMChannel.created_at:1 +#: cec5a91670184d8594a8168b49e63c77 +msgid "Returns the direct message channel's creation time in UTC." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:1 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:1 +#: 2e3a7be955924d12b02a8a67a62243ce +#: 10d496b094ed4ddea7f37806f9ed68f2 +msgid "Handles permission resolution for a :class:`User`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:3 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:3 +#: 8a6bd8833e2e4eb1b5b91fec38efc1a7 +#: b3d0a6b9ff4a46c88471f65d47a5a41e +msgid "This function is there for compatibility with other channel types." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:5 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:5 +#: 5bd63434d23d47ef9405d7cd8f3c0792 +#: ae185ef407f24e62bde8b2265d23a439 +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:7 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:7 +#: b7f135a3e450454281ecbc95203edfe9 +#: 017a611ffc034164b6df0a752e579a89 +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:9 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:9 +#: 37714f0cf619431f859f64895e535122 +#: ca161eae75a041c5931c3cd4b8f6351d +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:10 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:10 +#: 0fd9fff73f23420c954048e6c55bbdae +#: 53a457bbf4e54f1f844f649be19b4cc0 +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:13 +#: 920a461af4a3409b80dd9b62fe593c74 +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:17 +#: 026abc8c403d492f8f529f5167663614 +msgid "The resolved permissions." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.DMChannel.permissions_for:18 +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:19 +#: 298831af02f147868ac4921ae73b06f5 +#: dabd0bce463b4a0bb5eea7456b73cb36 +msgid ":class:`Permissions`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:1 +#: 587dfd4e44d94e0b83037e4ac8322626 +msgid "Represents a Discord group channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:23 +#: d0cd14f31ea34431802b867a7472c004 +msgid "The users you are participating with in the group channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:25 +#: 74146d0fcd3c407c9fc17f2a05fa99de +msgid "List[:class:`User`]" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:35 +#: 7121cf484eba4970baaae8e6ee478918 +msgid "The group channel ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:41 +#: d5f6eb22ab8d44a981bfc691f53389f8 +msgid "The user that owns the group channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:47 +#: c7b8c4b9b857405a99a74a647c686d89 +msgid "The owner ID that owns the group channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel:55 +#: c8b1d45e983b4d1da2b160d717b4ff0d +msgid "The group channel's name if provided." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.GroupChannel.icon:1 +#: 30d7f57d10b64076a00032ca63ac35d0 +msgid "Returns the channel's icon asset if available." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:12 +#: 7c9677f5993443998c6a715088f59cc9 +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:15 +#: 2293199313574b40a04178d0acff383f +msgid "The user to check permissions for." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.permissions_for:18 +#: 0185dc41947d440b9deb847368a4ad47 +msgid "The resolved permissions for the user." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.leave:3 +#: 3d3e36f11c1c49d094ec86d55a8aa936 +msgid "Leave the group." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.leave:5 +#: 69e56047815d4e7f8cc89dc9d6a54e5a +msgid "If you are the only one in the group, this deletes it as well." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.GroupChannel.leave:7 +#: dfeb38c2641d49a7b989615d03053502 +msgid "Leaving the group failed." +msgstr "" + +#: ../../api/models.rst:464 +#: 209e72461fff4eaeb235cc21aa5f1997 +msgid "Stickers" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:1 +#: 3f954ebeebec484e93c4d6d0bc7d901f +msgid "Represents a sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:9 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:9 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:9 +#: d7e569b01dcb4dcb8c79e2a0ca7cd9b0 +#: c0c6e601e09e4c96a948056f55245e5a +#: 4fa3827298cd41ec95ad627a608abedc +msgid "Returns the name of the sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:13 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:13 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:13 +#: 9f3b6e968acc47f09ad051f70e94b1d1 +#: 5046070292af411ea2315166265d7b79 +#: 5a278ef20fec45d18e65f58bd39de680 +msgid "Checks if the sticker is equal to another sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:17 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:17 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:17 +#: 8d7c7c56f12947279193129bd979cf00 +#: 4b27ca28080541dc9a1c648bce7df651 +#: bc5d3b6707e74ebfb2f0ae969b0389fb +msgid "Checks if the sticker is not equal to another sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:21 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:21 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:21 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:21 +#: e70e6c2d80344d49b442735fce54a425 +#: fc9ec223438d473a89177b0884878a45 +#: 0368f8b47fcb4b6b8cec3f7eba88b697 +#: 8c61db754c424080b9ebf865477969ea +msgid "The sticker's name." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:27 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:27 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:27 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:27 +#: 39127218ef194b2580d66ec98a1b28ef +#: e41de18a1e864868abf4c4b1f2223640 +#: 4a363f454efa45208e72cf80a530ca12 +#: 888b44451b7a426b916082a56ef6e02a +msgid "The id of the sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:33 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:33 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:33 +#: dffad35450864bf1ae2ea28d86a0cbe2 +#: 6d203dfafb3f4f45952d21c8be4d3c4f +#: 8e12c3f694a94210ad7069b2440e7650 +msgid "The description of the sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:39 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:39 +#: 6bad54d4ee5a461daf1e24145a5bf9b4 +#: 4e193335eabe46df88f7196ac16c2bf3 +msgid "The id of the sticker's pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:39 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:45 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:45 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:33 +#: 5e0919e094cc42b68aecea6053e15de7 +#: 519b3fe8c678438ca6989ad93bfb8468 +#: bee7bd81dd6d4429943db894acd3a8cc +#: 58469e21d18a4d74915708efdc1a5e72 +msgid "The format for the sticker's image." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:41 +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:47 +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:47 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:35 +#: 0947335f49564c9a9845a931f348d155 +#: f936da13ae47485aa04d99be72b092ad +#: 4be5618b2bb04cb1b0db0cab46cb2799 +#: b90ec6acf1d54894931b234a91898e7c +msgid ":class:`StickerFormatType`" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:51 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:39 +#: eb58efe02ae4445b8b7404efa57f07f4 +#: 65f89ee637634801ab8d4bbc9db6672a +msgid "The URL for the sticker's image." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.Sticker.created_at:1 +#: b017f2694c78454e89e712049f8fc4c0 +msgid "Returns the sticker's creation time in UTC." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:1 +#: d4bf0a56f70a4156b6ffafbaf1a1afd1 +msgid "Represents a sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:9 +#: 7c3867828aa74c04afe3890251c409ad +msgid "Returns the name of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:13 +#: 2e25f7b511344bf0ac7e847f84491b10 +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:17 +#: a01a06b8cb664d62af6c4e831878f7a3 +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:21 +#: ae74f28032104407a1c56df0f1ad5552 +msgid "The name of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:27 +#: ca4212b8b0034d669bd2d68773ad42bb +msgid "The description of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:33 +#: 2fa56ee1b62f4cab80779d0358130504 +msgid "The id of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:39 +#: 3464c8109245401db50402e242ad469c +msgid "The stickers of this sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:41 +#: 12af66b1cde54e739d49c8abdd86adc7 +msgid "List[:class:`StandardSticker`]" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:45 +#: 7e61663b01f54ce58a991cb28b24a3fb +msgid "The SKU ID of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:51 +#: e5656f2a93a04683b9380630ab8ea347 +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:57 +#: 5429b72888314c36b9c4115c199cb57e +msgid "The sticker used for the cover of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerPack:59 +#: d23dcc1a3c8f460291e14581057aa60f +msgid ":class:`StandardSticker`" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.StickerPack.banner:1 +#: d4b50052f21143d0b34a3b0349704a5e +msgid "The banner asset of the sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:1 +#: 7d3ec7ac0f5d4d02a92463f865795cac +msgid "Represents a sticker item." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:9 +#: aeebdd818d504901bd5f56b41ddea95e +msgid "Returns the name of the sticker item." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:13 +#: 92d1d9b5f6f549d7a52b697301991631 +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:17 +#: db2f4c0ca4824bed9036a3918862e12a +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem.fetch:3 +#: bc424429bee740d58c7f5c49268a1a41 +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem.fetch:6 +#: aab251a927704361a8eb0a7bac7c1fec +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem.fetch:8 +#: 53245ab104a4472a9bbd9315097855bd +msgid "Retrieving the sticker failed." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:1 +#: d438c58c4df44c4cb5fbd8aebc4006ac +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:51 +#: 20f99ef51faa468db4bb70032e2cdcff +msgid "A list of tags for the sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker:57 +#: 00a3cf8e2d85423291148ef40b05a77c +msgid "The sticker's sort order within its pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker.pack:3 +#: a4c42c93c98c4f6ea491f30ed70e3170 +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker.pack:5 +#: 73939f1df54b4f518d868e7aa7a100da +msgid "The retrieved sticker pack." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker.pack:6 +#: 301b3051d4f44a809194f97c0341c309 +msgid ":class:`StickerPack`" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker.pack:8 +#: 74bf6b15cbab4cccbe0810c233d03692 +msgid "The corresponding sticker pack was not found." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.StandardSticker.pack:9 +#: ae617817e9644df1884c000f7b6bb2a1 +msgid "Retrieving the sticker pack failed." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:1 +#: 2211977338284dabb4ddd3a5298bc2ee +msgid "Represents a sticker that belongs to a guild." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:45 +#: 008d75de22e74fcbb1201a5d468699bf +msgid "Whether this sticker is available for use." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:51 +#: bf5e70691eb048d29e5620a2952c0e85 +msgid "The ID of the guild that this sticker is from." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:57 +#: 963a7a7f1b5a409987d9b1e2032a1e60 +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker:64 +#: 33b4d3cc6f954c71a16ce001c71ed4bc +msgid "The name of a unicode emoji that represents this sticker." +msgstr "" + +#: ../../docstring of discord.GuildSticker.guild:1 +#: 32601811227a49d499e3c7a5322cf44b +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:3 +#: 630cb9a5fcdb4f388ddfc0cde1b04c9d +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:6 +#: 2c3c71774c97407c95bf4470d6d5e978 +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:9 +#: 67bff4eece154a76ae3986ffd8f99287 +msgid "The sticker's new description. Can be ``None``." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:15 +#: 74ac0f952f264e6b857c92b03be46775 +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:18 +#: a88be413ad224db0a16c5d0076d53205 +msgid "The newly modified sticker." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:21 +#: e271c8e5775b42dabbd868b1f3142981 +msgid "You are not allowed to edit stickers." +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.GuildSticker.edit:22 +#: 417424ce11a344fba8235344e4fd0d5e +msgid "An error occurred editing the sticker." +msgstr "" + +#: ../../api/models.rst:492 +#: fa3209921266443fb19f43b396c4c0a6 +msgid "Events" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:1 +#: b79f190d2d0948f089814f349c0d9261 +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:7 +#: f59bbb3db9c544e1ad828a596a22de9e +msgid "The action that was executed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:9 +#: 21fa4c5e146c472590b1421c4f265e69 +msgid ":class:`AutoModAction`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:13 +#: 9d152ca0b57c4831a63ac4f3ba694587 +msgid "The ID of the rule that the action belongs to." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:19 +#: 0938f0fdbfc14cbfb9a98c6e970f09f0 +msgid "The category of trigger the rule belongs to." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:27 +#: 5903ec8f839b4c2d9dc2d902b5329cf4 +msgid "The ID of the guild that the action was executed in." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:33 +#: c1359aa34c5d40eaac3b6c9def40e077 +msgid "The guild that the action was executed in, if cached." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:39 +#: 31088a4e5f2646258619cfbe0fe78c89 +msgid "The ID of the user that triggered the action." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:45 +#: 22f1087adfc24aa8a6944aef5c2cd09d +msgid "The member that triggered the action, if cached." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:51 +#: 58e17c63ce814fd58836e40f1411127e +msgid "The ID of the channel in which the member's content was posted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:57 +#: dc0207d3dd944e11bcd1577a7aa4e96d +msgid "The channel in which the member's content was posted, if cached." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:59 +#: 376755f7365b4605974de6a4391d2d09 +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:63 +#: 906da4869ca74857aa12c64689988056 +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:70 +#: dc4532a7e5b34a9ab4851febbf01cbf2 +msgid "The message that triggered the action, if cached." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:76 +#: 3e754965c0ba4ad9b0aed65749f28b2f +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:83 +#: 4c3d95bc6e42436cbc78c2640f190d2f +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:90 +#: c58f51b1d6334159a2a60f2d322e8d45 +msgid "The content of the message that triggered the action." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:96 +#: 6ffde4d983ac42b0969d9ce742636544 +msgid "The word or phrase configured that was matched in the content." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:102 +#: bde7642f0ba14c51bfb2f81f07a2932e +msgid "The substring in the content that was matched." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.AutoModActionExecutionEvent:108 +#: b6afb38f8d2e49ebb42b29492db03440 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:1 +#: 499fc1b5ce724e788a72c35bf2ce080c +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:7 +#: 6aefe6592d3e481bb194f15c9aff3208 +msgid "The channel ID where the typing originated from." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:13 +#: 14b6274d91774c6eaae92facfb26f9d8 +msgid "The ID of the user that started typing." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:19 +#: 7162af01584f4ceca217802b5fd67f12 +msgid "When the typing started as an aware datetime in UTC." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:25 +#: 074d97d9348f4fb69e34d69ea0c05149 +msgid "The guild ID where the typing originated from, if applicable." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:31 +#: 9d2a1fd74db74e858c41d60042891f83 +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawTypingEvent:37 +#: 68202a289cc64633add155d110e551b5 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:1 +#: 083fd25a4caf4f438e18f06ecfc329a3 +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:5 +#: 591b40b272cb4d6fa4456a1483cd349d +msgid "The channel ID where the deletion took place." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:11 +#: cba8549241ae4f2b8ec7e2b036915985 +msgid "The guild ID where the deletion took place, if applicable." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:17 +#: b885728f638f4102888b355dd2fde5bd +msgid "The message ID that got deleted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:23 +#: 51825d7c41ac41bc9bd7aaf54e8731c5 +msgid "The cached message, if found in the internal message cache." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageDeleteEvent:29 +#: 80e8bcebb6c846b9a94201322d201f11 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:1 +#: 9758fa2c23934519aa0a31b619561841 +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:5 +#: 95fdfdb30b0b44c0ad31616a5630431b +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:7 +#: 2c4db09f55444e179276a27886c53ab1 +msgid "Set[:class:`int`]" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:11 +#: 9e257c61cf59469dafe62914243b17ab +msgid "The channel ID where the message got deleted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:17 +#: f5e94fb1e9b74e7cb97320acf2b8fd2d +msgid "The guild ID where the message got deleted, if applicable." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:23 +#: 8eab388727794972a7906a9c73529e53 +msgid "The cached messages, if found in the internal message cache." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:25 +#: 859990ca3d474b82ab8a25c709399af3 +msgid "List[:class:`Message`]" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawBulkMessageDeleteEvent:29 +#: df91c3ca90284cba833f8d2303683970 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:1 +#: 872290794a8b426ea016c6cb478edf1c +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:5 +#: fa312fddcc7640858f6f5dc198669a1a +msgid "The message ID that got updated." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:11 +#: 07c75520606b4ce8b11422018fe961f4 +msgid "The channel ID where the update took place." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:19 +#: 6c11263af97b4adf9f96d3420215db95 +msgid "The guild ID where the message got updated, if applicable." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:27 +#: b265740494834d0a910c37f8097fff5a +msgid "The raw data sent by the `gateway `_" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMessageUpdateEvent:33 +#: 262dc5905556459587d9ae798ee82024 +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:1 +#: ffe7a35941da4ee0ba78d8c78549e0c7 +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:6 +#: 7d5dc4e9d47e4f288265ecc59e7a8ee7 +msgid "The message ID that got or lost a reaction." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:12 +#: 79c663166bf54130b292c2b3b0c02da7 +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:18 +#: 349706d55fec46638e81b043bb480718 +msgid "The channel ID where the reaction got added or removed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:24 +#: 1a761539da4e42edb15d580870eea3e2 +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:30 +#: 109ca37f75c440149342c11e3d196458 +msgid "The custom or unicode emoji being used." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:36 +#: 79d0117cef804316937d5fd65887a66a +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:44 +#: d59b3f7188164f7690a5236089a3edd9 +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:60 +#: 3d57daf4600347369012e4666cfa9e32 +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:45 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:63 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:69 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:45 +#: 6de13fa5309f426d97885e856de66c2d +#: 098195d1e0ca49b19eedcccbeeb1d0d1 +#: 8becc7cfc9d844e2ad84e2843127078c +#: 276a385c712c4991aebec56670ffe47f +msgid "Optional[:class:`list`]" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:67 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:43 +#: a0ae038460cc4afeb1f55fc31edad93b +#: 35c0dde637664352ab4ddc993fdc8368 +msgid "Alias for :attr:`burst_colours`." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:73 +#: 8be7e177048b48c58c5069f7bace65bb +msgid "The type of reaction added." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:75 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:51 +#: be68507029b84b93bc3189b87e423c23 +#: de73b95ca04d4dc09985ec6175d71cc3 +msgid ":class:`ReactionType`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionActionEvent:79 +#: 57fcb3b89ea343e49b6121016bbf056a +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:1 +#: 9c55b78745534bf3908765bfe80b3a96 +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:7 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:5 +#: 5b0c86bf3fe74bc59f7526bb295a5f6b +#: 5e1205c0bd8b4c48b8c1c04f742caa13 +msgid "The message ID that got its reactions cleared." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:13 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:11 +#: 3fc3b9a31e0843e99300bef5908239ae +#: c03e170bd1534c57b30369d8c06517df +msgid "The channel ID where the reactions got cleared." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:19 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:17 +#: ed2e7768cefa4a21841b18d806ae7e22 +#: fab6fe1e01ef4211a053c6db2331c646 +msgid "The guild ID where the reactions got cleared." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEvent:23 +#: 00c10feb478642c796ce040922822aa6 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:1 +#: 4f6f4cd8c25a4c269e81552330a5af16 +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:25 +#: e93ddf7f5f2f4108a62c97c24c102d5f +msgid "The custom or unicode emoji being removed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:31 +#: e0a6e4a865e6478f984e5c7a61eca7bf +msgid "Whether this reaction was a burst (super) reaction." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:37 +#: 8da8ed8c042d43a09d679902449a5d5c +msgid "The available HEX codes of the removed super reaction." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:39 +#: 6c4c75d113254029b77ba850debfcfd3 +msgid ":class:`list`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:49 +#: 248f1f73e30940a49c621a94e90983d6 +msgid "The type of reaction removed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawReactionClearEmojiEvent:55 +#: 1b350547602f48838cf645fbc4a9540b +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:1 +#: ae35ffa2bd784c71850e872f6dc0176f +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:7 +#: e3281dac58fa4334a67caf80cb45df51 +msgid "The ID of the integration that got deleted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:13 +#: 9326171cc2334890a65c282bf5939c5c +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:19 +#: f5b124b805c5449a8cc33744ded015d9 +msgid "The guild ID where the integration got deleted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawIntegrationDeleteEvent:25 +#: 74b0025e77e44f66aa7e45c9924f9b43 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:1 +#: f71bc55131744337a32f55761bd384ae +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:7 +#: ed66c4fafdab48dfb26fdc88526903cb +msgid "The ID of the thread that was deleted." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:13 +#: 80173e2d13a74455851c296207108a67 +msgid "The channel type of the deleted thread." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:15 +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:15 +#: c56a434ae2034ed1a139116a20d9e828 +#: 7655fc5db916476c9f3d397125622e37 +msgid ":class:`discord.ChannelType`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:19 +#: c942d9a66ae943129c00dacecda6bda0 +msgid "The ID of the guild the deleted thread belonged to." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:25 +#: 5e55c49746e44da78344b275882d7dab +msgid "The ID of the channel the thread belonged to." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:31 +#: 52970a93b1f7408b8648ba6d7da2481c +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:33 +#: 6e59f1f4561a4ff4a56f3257e62223a3 +msgid "Optional[:class:`discord.Thread`]" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadDeleteEvent:37 +#: b14b3e97de234e28b4104e5a613cbb95 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:1 +#: 8abc932b7db9477aa37671ad8555a946 +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:8 +#: 7b3ca844c2e4433ca2f6f4532db57804 +msgid "The event ID where the typing originated from." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:14 +#: 2589e072a10945fd91844cf562e522f8 +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:20 +#: fc2d5f7de1334ecfa878e4a54efbe2d7 +msgid "The guild where the subscription/unsubscription happened." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:26 +#: 6f7667c231954a3b85809427b6c178ce +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:33 +#: db759799a9584ace958e5d19d8bda3a8 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:1 +#: 57f6174c02b04d4f89daad19a99de172 +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:7 +#: c043b937892d446e8be670d14755b111 +msgid "The user that left the guild." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:9 +#: e9afa44e8d8f48eba0a9330f7bb79265 +msgid ":class:`discord.User`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:13 +#: f5d1f7b186934cb59089bb69614223e3 +msgid "The ID of the guild the user left." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawMemberRemoveEvent:19 +#: 82c67a590a6f41b5912e8b043427212a +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:1 +#: 50e584b568b144d8ab8195b6f228fdb1 +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:7 +#: 6825333ca162418ab57606ff1740b8dc +msgid "The ID of the updated thread." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:13 +#: 18e0d2ab7dc1463891dec1fa3cf9a37f +msgid "The channel type of the updated thread." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:19 +#: 59e5a8efef2346bbb2ee80ea21c011a7 +msgid "The ID of the guild the thread belongs to." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:25 +#: 619f2bcdd29345aa865973f05c3a9648 +msgid "The ID of the channel the thread belongs to." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:31 +#: 56d86a0d67224029bf5c3db6a2af6a27 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:37 +#: 4852d50180674582ac786b3068cb2017 +msgid "The thread, if it could be found in the internal cache." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadUpdateEvent:39 +#: 150d503109894b5b87c17829594f7b55 +msgid ":class:`discord.Thread` | None" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:1 +#: a64458b6da9e449597a58d378bf385d3 +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:7 +#: b031a4ae017f4ad49cba8881b024de8e +msgid "The ID of the thread that was updated." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:13 +#: b0e8229bc54c408f913f222cb0c8db77 +msgid "The ID of the guild the thread is in." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:19 +#: cd08b36b1ca744f0bfe69607abde1f45 +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawThreadMembersUpdateEvent:25 +#: a30e73121303499994de20efcdb448ea +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:1 +#: 1655071d2beb439380bead37316806c7 +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:7 +#: 83c9b3e36e7d46d79ffc9f4d380a4e5d +msgid "The action that was done." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:9 +#: 3ed7e6ec47a54369b7d127872cd53b81 +msgid ":class:`AuditLogAction`" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:13 +#: 3ed3876549944886804d62c1af6c5744 +msgid "The entry ID." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:19 +#: c71f08f112ca4b1a8bbccbaf514cdac1 +msgid "The ID of the guild this action came from." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:25 +#: 7738f7e468004076bc8ec1e83b91154f +msgid "The ID of the user who initiated this action." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:31 +#: 0f17e043ff2f4e349a147254f66412cc +msgid "The ID of the target that got changed." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:37 +#: 8b94f30533de478d925794511806a750 +msgid "The reason this action was done." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:43 +#: 18a298908f194ee0ab2a9223ede03164 +msgid "The changes that were made to the target." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:49 +#: 1a572cf26ed44102b41930008de5b09b +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:54 +#: 56c299547cc748adba656f35026ca822 +msgid "Any" +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawAuditLogEntryEvent:58 +#: eac6487fc7d14ee89b983b7dd83f84f8 +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:1 +#: 1cde686644bc47ec941a3e368aa2874a +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:7 +#: 5fffb927d5c44084b4bff9b07be28069 +msgid "The channel ID where the voice channel status update originated from." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:13 +#: 17207373f8ab4b6084c706e3f9052280 +msgid "The guild ID where the voice channel status update originated from." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:19 +#: 285d830f117547f699bbf453aa4268b7 +msgid "The new new voice channel status." +msgstr "" + +#: ../../../discord/raw_models.py:docstring of discord.raw_models.RawVoiceChannelStatusUpdateEvent:25 +#: c6e09cd5881145a5b95550e3f54faf4f +msgid "The raw data sent by the `gateway `_." +msgstr "" + +#: ../../api/models.rst:577 +#: eae4e206e45a463f80727bc3e3eee504 +msgid "Webhooks" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:1 +#: 657eceaa87cd4bc9b144d286afe67c5e +msgid "Represents a partial guild for webhooks." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:3 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookGuild:3 +#: 0e1a2663052f464386761f009fafc287 +#: 25efde0876d24c2ebf841fd09cf934c1 +msgid "These are typically given for channel follower webhooks." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.PartialWebhookChannel:1 +#: 63fdae50745f4e43bf58c07d12c4ed00 +msgid "Represents a partial channel for webhooks." +msgstr "" diff --git a/docs/build/locales/api/sinks.pot b/docs/build/locales/api/sinks.pot new file mode 100644 index 0000000000..37a5b11ed5 --- /dev/null +++ b/docs/build/locales/api/sinks.pot @@ -0,0 +1,223 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/sinks.rst:4 +#: da5ec43759ab47fdb55072ef2d386b77 +msgid "Sinks" +msgstr "" + +#: ../../api/sinks.rst:7 +#: 69ccca52dd344eba81f86600350345de +msgid "Core" +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Filters:1 +#: 0142ecf442b940a78a28dc08a1ce93cb +msgid "Filters for :class:`~.Sink`" +msgstr "" + +#: ../../api/sinks.rst:0 +#: 378afe544b724d8f90393291fdc85369 +#: fab663f2aebe45c48cdc3b54b4e31005 +msgid "Parameters" +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Filters:5 +#: 0703f5343d364e319360f8c62ab449e0 +msgid "Container of all Filters." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink:1 +#: eb6c1cd03ec9420db458b64f82b0e54d +msgid "A sink \"stores\" recorded audio data." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink:3 +#: f84d8b866bf9422c8920ca48f7442fd7 +msgid "Can be subclassed for extra customizablilty." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink:6 +#: 46f6384351cd4250abdc80e42a256c2f +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink:10 +#: 7e2733f87658404cba7b6fe06dd64f29 +msgid "just replace the following like so: ::" +msgstr "" + +#: ../../api/sinks.rst:0 +#: 3a24bec2087b4fd2828ce8bcf7bfcce6 +#: e7eb3ded3c57413c9ee86ee3409252f9 +#: 817268b268934544944a1cdba3c85456 +#: 98ec647e22e34424b43cef44e33d1f5d +#: 0132a5cc6ea140e993f0c67c578b8564 +#: e41d37b52642478ba8b5960322091c62 +#: 49d6e90fbe7345e296ddb91c800584da +#: db671b98041f42c69d09637b747da230 +#: a75ba41f4c624334b98deb28f10ff722 +#: 77e45956053343f4a15cfc2f1834d79a +#: 7640928653394b188296110e0ec788fb +msgid "Raises" +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink:20 +#: 2750e2c115da40ecaf706f78f45897a8 +msgid "An invalid encoding type was specified." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink:21 +#: ../../../discord/sinks/m4a.py:docstring of discord.sinks.m4a.M4ASink.format_audio:3 +#: ../../../discord/sinks/mka.py:docstring of discord.sinks.mka.MKASink.format_audio:3 +#: ../../../discord/sinks/mkv.py:docstring of discord.sinks.mkv.MKVSink.format_audio:3 +#: ../../../discord/sinks/mp3.py:docstring of discord.sinks.mp3.MP3Sink.format_audio:3 +#: ../../../discord/sinks/mp4.py:docstring of discord.sinks.mp4.MP4Sink.format_audio:3 +#: ../../../discord/sinks/ogg.py:docstring of discord.sinks.ogg.OGGSink.format_audio:3 +#: ../../../discord/sinks/wave.py:docstring of discord.sinks.wave.WaveSink.format_audio:3 +#: 01169f852b5a4038ae7d519f251930b4 +#: 45b9ef0215544a9d860e550bc4ccb921 +#: 4e7509b88ea04946bc020fc4de77c0b6 +#: 1588985c20834c0ba74aaef6231a58bd +#: b356e78d934c4cd9993fc61cbe1af4e9 +#: fc1928b8934a4555af9965d0c2317ea2 +#: 7d38b47a020b40cdb95c6af18cc1d6d1 +#: bea313c3e6fa42beba3ab64e756ce223 +msgid "Audio may only be formatted after recording is finished." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink.get_all_audio:1 +#: ce7e04b04b104eaf98b124fe959e2088 +msgid "Gets all audio files." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.Sink.get_user_audio:1 +#: 377a9171544b4e1a90582106b504271e +msgid "Gets the audio file(s) of one specific user." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData:1 +#: 8c98ad6ace2a490eb332d994e20ee698 +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData.write:1 +#: 691bcb7057ff4b668a6924f1567447bb +msgid "Writes audio data." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData.cleanup:3 +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData.write:3 +#: c514847e5b65402d9c119e0fba871115 +#: 156dcea554294f688d2303b360e8eeb5 +msgid "The AudioData is already finished writing." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData.cleanup:1 +#: 8878b11f4bb44242b182551f312611e0 +msgid "Finishes and cleans up the audio data." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData.on_format:1 +#: bcc4d0731438457bb3b42134f2de664d +msgid "Called when audio data is formatted." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.AudioData.on_format:3 +#: 4328bd3adc894e768723c4be7aa942e0 +msgid "The AudioData is still writing." +msgstr "" + +#: ../../../discord/sinks/core.py:docstring of discord.sinks.core.RawData:1 +#: 570b9f01ec964f44a6f4e780cd307291 +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "" + +#: ../../api/sinks.rst:23 +#: 169639fab74b449ba82498b86bb44876 +msgid "Sink Classes" +msgstr "" + +#: ../../../discord/sinks/wave.py:docstring of discord.sinks.wave.WaveSink:1 +#: 433ebcc0d30f4d9fbd220456a7abbbeb +msgid "A special sink for .wav(wave) files." +msgstr "" + +#: ../../../discord/sinks/m4a.py:docstring of discord.sinks.m4a.M4ASink.format_audio:1 +#: ../../../discord/sinks/mka.py:docstring of discord.sinks.mka.MKASink.format_audio:1 +#: ../../../discord/sinks/mkv.py:docstring of discord.sinks.mkv.MKVSink.format_audio:1 +#: ../../../discord/sinks/mp3.py:docstring of discord.sinks.mp3.MP3Sink.format_audio:1 +#: ../../../discord/sinks/mp4.py:docstring of discord.sinks.mp4.MP4Sink.format_audio:1 +#: ../../../discord/sinks/ogg.py:docstring of discord.sinks.ogg.OGGSink.format_audio:1 +#: ../../../discord/sinks/wave.py:docstring of discord.sinks.wave.WaveSink.format_audio:1 +#: 285ad63cdb584ebd94d7e557e5314619 +#: 08a57363e08c4ea6a322cda7ca882dd2 +#: 665fa3dc297f4f22b0369bd5cbd3b255 +#: f5b24a38289c496a9f4d55948337d7b2 +#: 6e115579af2240c3ada2216ac756d626 +#: c5088f6657d347dab6bb07ea09dccd7d +#: 8edc17c4981b4fc6881cb2c4ccca081d +msgid "Formats the recorded audio." +msgstr "" + +#: ../../../discord/sinks/m4a.py:docstring of discord.sinks.m4a.M4ASink.format_audio:4 +#: ../../../discord/sinks/mka.py:docstring of discord.sinks.mka.MKASink.format_audio:4 +#: ../../../discord/sinks/mkv.py:docstring of discord.sinks.mkv.MKVSink.format_audio:4 +#: ../../../discord/sinks/mp3.py:docstring of discord.sinks.mp3.MP3Sink.format_audio:4 +#: ../../../discord/sinks/mp4.py:docstring of discord.sinks.mp4.MP4Sink.format_audio:4 +#: ../../../discord/sinks/ogg.py:docstring of discord.sinks.ogg.OGGSink.format_audio:4 +#: ../../../discord/sinks/wave.py:docstring of discord.sinks.wave.WaveSink.format_audio:4 +#: bee146d8a4ce454ca6ab676a1f751bdd +#: 0d6886be966b465182e4ac7708898391 +#: b4bafc34899b43ada086ab5e6ca5064b +#: 6bad2ce294a342759f75493790b102b5 +#: 47a74f69bb6540ef9f21dfaa43684d36 +#: f1da7192debb4976a99f255ff8f3d860 +#: 9fa092f5912b4cc794dc15ec1615bb3c +msgid "Formatting the audio failed." +msgstr "" + +#: ../../../discord/sinks/mp3.py:docstring of discord.sinks.mp3.MP3Sink:1 +#: d0b8264ce4284da5b4f00d3bd6fc0b27 +msgid "A special sink for .mp3 files." +msgstr "" + +#: ../../../discord/sinks/mp4.py:docstring of discord.sinks.mp4.MP4Sink:1 +#: 12c1601a144f47c2b658cdb1638c2a1a +msgid "A special sink for .mp4 files." +msgstr "" + +#: ../../../discord/sinks/m4a.py:docstring of discord.sinks.m4a.M4ASink:1 +#: ec93398e6fab40c3963078ee6efec8fd +msgid "A special sink for .m4a files." +msgstr "" + +#: ../../../discord/sinks/mkv.py:docstring of discord.sinks.mkv.MKVSink:1 +#: caa9e491104c47bf87dbe04c48e5107d +msgid "A special sink for .mkv files." +msgstr "" + +#: ../../../discord/sinks/mka.py:docstring of discord.sinks.mka.MKASink:1 +#: 90d4defae7c241bbb26aeec83cfe661e +msgid "A special sink for .mka files." +msgstr "" + +#: ../../../discord/sinks/ogg.py:docstring of discord.sinks.ogg.OGGSink:1 +#: 3bf2e13e0ec743b19e3d9c47ef3fc435 +msgid "A special sink for .ogg files." +msgstr "" diff --git a/docs/build/locales/api/ui_kit.pot b/docs/build/locales/api/ui_kit.pot new file mode 100644 index 0000000000..d17eafd478 --- /dev/null +++ b/docs/build/locales/api/ui_kit.pot @@ -0,0 +1,1072 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/ui_kit.rst:4 +#: cef9c4161ab944be895b73e34a1e959e +msgid "Bot UI Kit" +msgstr "" + +#: ../../api/ui_kit.rst:6 +#: 114eb7a552d7423185c807d0039a9d70 +msgid "The library has helpers to help create component-based UIs." +msgstr "" + +#: ../../api/ui_kit.rst:10 +#: 795a5badeccd4169beae11dbdaee8acf +msgid "Shortcut decorators" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:1 +#: 7169fb06bff6465a96fab24a71cd6cdc +msgid "A decorator that attaches a button to a component." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:3 +#: 0a98301d144642f3af77faae9044333b +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:9 +#: a581c27589c34afeb3bc17c4b0000164 +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "" + +#: ../../api/ui_kit.rst:0 +#: beefc8c24f164c63a80136a8c5e5e925 +#: 53499c7c38dd43799b5780dfd21b3b02 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: ca073ce612814d8abbb2857a4f7c31cc +#: 68f0e04b65fd43ccad6348c57bad93ba +#: f4f99caceafc4e0b857149cb71c15de8 +#: ffbafb20b66d44b193637453dd85a141 +#: 7075cd32ada643e1afe2b1b1e2540a78 +#: 0fde91581db244e9a38eaa1298517198 +#: e6eacbc6685647afaa993a9e034c2c9e +#: 8ca8779b464a40069954fb8439451723 +#: 196110ed1f174bbc90e8e7f376d23b2d +#: 31274878cbf8429eb4cbbaab562f687a +#: 87b1f760ee304fdcb8d3158dad1f9687 +#: 26b856f134bd43d89d7bd04e9508cec1 +#: 99b19d97768746f6aad0d4c9f04602fc +#: 89289390586d4a4cab63303506125e33 +#: 7c40b29c39174637a4378923ab36d01b +#: 0eb33b6aec414778a7e06b676fd526f3 +#: ee24240ba8fe4d32b79a3dbd84647890 +#: 16f62a630b6c42649b13ec913a13f066 +#: 402dffb461e445cba56e4e1afcc98a38 +#: a32d29d036704b3aadf3893a40c1fd58 +#: dce921ab81d64865ba38df542fa4386f +#: dde97b21e9124139901056550166fb09 +#: d1dc3c0514e641c29d06f205b7feefc9 +#: db02240fc27a4c479381b1273800b086 +#: bb7676b81f53410c845e5d60a69a03a4 +#: 3310aa20be5a488690708eb9e3dd0fcc +#: 7f8342f4fa72464f92c9c3cffcfcbda4 +#: a5c25727efd240d7b3b1f5647ed24ce6 +msgid "Parameters" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:15 +#: e96eba4f6dc741feb44abc732fe9b174 +msgid "The label of the button, if any." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:18 +#: 180c7d621c86482cb6b43ceaf4fde368 +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:22 +#: ac7a0de67602471fb341ca7230448a62 +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:25 +#: 48333a30942940d4bf4fad7e72e2aa33 +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:28 +#: c138b390419e4f4194bf27c7e5da9e82 +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:28 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:32 +#: 7226675e37a14baba12bf447b1d4a11e +#: c7feafdb9ed34fceaaf137f89a8fad12 +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "" + +#: ../../api/ui_kit.rst:0 +#: e5ecb31082e14aa3861296ff5854437a +#: e6251a3992ae4babb7e79b06a31ea11d +#: f041071e4093433a9cac0a03ce5ab140 +#: f8f0d423ecf24626a1247f45667e5bfd +#: 9764068d3bfa4df68a9821f82609e559 +#: d36c9dfb2e944d03935e93d529a40227 +#: b1890cceac0449368e45eca0e3cc227a +#: 69ca8cba0b9a411d8e19abd29f7f1ed4 +#: a0b7807032194a53a18ea1511e4f67d3 +#: e6517eae45a3404e899c0bdfabdf3aea +#: 79d2f21642c04d77b8bce27656a52f8f +#: e1405bf6c4334211ba770e0674f150f9 +#: 74e20e420edc4715b4995ab7938b2023 +#: ae8f754f5d1a446e866e9443cd10081d +#: 4847b534d3c14deba4061b428620b95b +#: 76d49544901349599337569d52510ee9 +#: 48dd419af0df473f93e5e713b7748656 +#: 9b9d0befc3c64fb9bae98aba514956f0 +#: f360a94646744e36b9934341c7885ed7 +#: b96d252eb71246cba2ed7ce0fa575e98 +#: 4d44fb14e809440e8f7f915460300e06 +#: 67269ff08c06462b82bff968f744feea +#: f66852d0a07246dbb596fa01e203d767 +#: 787aeffb30b548a38cbe20f0a065de37 +#: 5354adfbc0cb4f498d3e07dc0ed3d63c +#: c8632725e7ca4cb18d9ec87f8986c8b6 +#: 49a56da0430b431f8c729950b9c55006 +msgid "Return type" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:39 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.channel_select:19 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.mentionable_select:17 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.role_select:17 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:55 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.string_select:19 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.user_select:17 +#: 8b2126220f0a40489f72fbb6541865ab +#: 9d801d79daf4416b8d3f256723d14e9e +#: bedc28aed63d4c35821a3df7a988ceba +#: da524bc45bed4882b24144a6de72d3b3 +#: fd120175bb8541ecb5ca7146883b6156 +#: 15a54ae1a66549eab609150b6dc69f6b +#: 2e9d4fbae0e54c02b65dcc5c67eccab2 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:1 +#: 23ebf0c41e1a46c9b96eaaed21d7b029 +msgid "A decorator that attaches a select menu to a component." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:3 +#: 00b2b61db8b84ae2b5053febef93fed2 +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:7 +#: 1a447e447e4947d4ab6031c89b6fa2c8 +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:12 +#: 5178e617c8584c74ae12204643b4cc51 +msgid "Creating select menus of different types is now supported." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:16 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:15 +#: d47cd55a76154d2c8296ed8d52f4fe49 +#: acf48d755e5d47f7b645a78fdecb9b9d +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.placeholder:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:26 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:21 +#: cf7265a79f204a609bac4e3eeac79c31 +#: 3e3120d48b4f41869c6ac4d4a11ae788 +#: 46f50cc5d1d241dea802bc7c51e5b497 +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:24 +#: c98d6ddb36f4423f855f14a8bcaa452a +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:48 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:28 +#: c01d219ac90b445594257aa88fe409ff +#: 4bbd3f8002fd49ddb09b40d45fb48efe +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:35 +#: 3ce98d78639e4b00b541949c1579c3e3 +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:33 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:39 +#: 79d61d2476ba400ca5d40331e2c47372 +#: 796b9050ceed4aeba3ead0a0b4cd7d4d +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:43 +#: eb85122a049d4e5ba8a1ac9fdbd6ee30 +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:47 +#: 21bc9c9ab88c428699fe8f30713d0445 +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:52 +#: b1d29705ace44ca3872c15046d01f845 +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.string_select:1 +#: 17e132379dad4798922af2a9271f7996 +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.user_select:1 +#: 98d5b30855cc484ca89f0acdd2e1c1e7 +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.role_select:1 +#: 69ea07d124aa4d38b3ba835ae1545eac +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.mentionable_select:1 +#: 27e5bbcab67147e5b4a8d3f3dd62addc +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.channel_select:1 +#: 4a0b40ad90df4fbb98a435ebcb063111 +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "" + +#: ../../api/ui_kit.rst:34 +#: e335cba9c74a4f6186149901c830873d +msgid "Objects" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:1 +#: 51e6a1596c4a449f9a81c52ebddaa39e +msgid "Represents a UI view." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:3 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:3 +#: 16b83c8a92c745c8b399ffc3a72f0772 +#: ef81e6ce764b40beb46714a774f98ce0 +msgid "This object must be inherited to create a UI within Discord." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:8 +#: 2f917e72a1924778a62c52611093344a +msgid "The initial items attached to this view." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:19 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:11 +#: 807b8f486b1846ca85e2c78b609a287d +#: 447ce0fa50bb4a4b82ed7747b529452c +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:17 +#: 880d25828d79404c9b741921ea68a63e +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:0 +#: 480fbf0b10fa416d83a78fe20327dbce +#: c0f3dd62da99471bbbb9ef04603415f0 +#: 3bb28eba0b6e4a33bf70e6ec23f7f0ce +#: 869c217ef1fb4f1bb558c0c275307664 +#: 90ac82a2463949f8a34cca59e7616985 +msgid "type" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:20 +#: 974b8aac4f3643038bdeb783f44ea94d +msgid "Optional[:class:`float`]" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:24 +#: 8ffab86883334a96855bfa18b8fa7750 +msgid "The list of children attached to this view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:26 +#: 3682451fd9d94fd0b7d5c2f0000be28e +msgid "List[:class:`Item`]" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:30 +#: 390e0de65aca4e25bf50e5ae6a456657 +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:32 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:23 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.wait:8 +#: 4d45955820034f44b44354116cd9d1f7 +#: 81901a6370e14b888c56185b26f75c5c +#: a20a4215e0ea431eb8fb5f8afaff44f3 +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:36 +#: 6e02983bce14423ca205b74a4644a71f +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:39 +#: 62493226680b4bc3bb9641549d93df08 +msgid "Optional[:class:`.Message`]" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:43 +#: fbf42b30d6ff425694a8364a242cd8cc +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View:46 +#: f5c57d9fa43643e8a8f9e9a19428dfb3 +msgid "Optional[:class:`.Interaction`]" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:1 +#: c392f64e411a44c39ed13c8cc5125f2a +msgid "Converts a message's components into a :class:`View`." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:3 +#: 565b68cabf4b4ba5a94ed222b1bdb166 +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:9 +#: 440ace76c1c843a0a6a9ed83aba2d54c +msgid "The message with components to convert into a view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:12 +#: b159c65de392440fac77f0ec9989f160 +msgid "The timeout of the converted view." +msgstr "" + +#: ../../api/ui_kit.rst:0 +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: cebca2833179445fb4e661e106d5cc43 +#: bdf962475cee47d4ae16bdb523f4bdd4 +#: f4f15b52c843401587586464af1f15be +msgid "Returns" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:15 +#: 64c266a59d7f48e683effda66301b9a2 +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:17 +#: 9718cb2e8075430da95c8d900f3ed7d8 +msgid ":class:`View`" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:1 +#: d149c73fdd87423abab34ae033ad3bb2 +msgid "Adds an item to the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:4 +#: 651c40af34754b2cbca1243c29182544 +msgid "The item to add to the view." +msgstr "" + +#: ../../api/ui_kit.rst:0 +#: 024152e81dad464c8dea98a5986784a2 +#: acf1210671c64fe0a94869a2ec5777fd +#: a8beb6c0b45f41f3802af4f176357b18 +msgid "Raises" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:7 +#: 0c2448b08bed49c9b3a36391e2dfe223 +msgid "An :class:`Item` was not passed." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:8 +#: 98c9ab34af564e9bb33dff8527ada782 +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_error:14 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_timeout:6 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.stop:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:10 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.clear_items:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.disable_all_items:7 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.enable_all_items:7 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_check_failure:9 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:18 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_timeout:6 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.remove_item:7 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.stop:6 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 8a6327ab096844d5ab16d2316f29be99 +#: df7ded422fee4a2f97fa22d4a7adac87 +#: 0f024bf23b354403841f7dde8d71621a +#: fe97129bcb4d4e258ff0beb4c6390702 +#: 3c90e45f56914ab3a3afc07c95abbe60 +#: e8a673c7ef7448448155a519934deb7a +#: f0b9b386cb7f440d9ded8cbb48862408 +#: c0e5fc96f0134c3ca7023b6236f2a3fd +#: 5ca2db4b948a4526bbe2f7733e9e1540 +#: c28cd0a90c6243f48951aebe91f5a89c +#: 14e8aec6cbaf4828aec5b04bd5b670b0 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.remove_item:1 +#: 0fab940276ef4a7dae31257c2ac244a7 +msgid "Removes an item from the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.remove_item:4 +#: 59807342ce744d8d886b5e2235ab0e2b +msgid "The item to remove from the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.clear_items:1 +#: 3b8def86b7f849908a1d6f20d2c80e17 +msgid "Removes all items from the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:1 +#: 23615972dcdb414abf5f848a9a2ee1ee +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:4 +#: cbb9b6731f96427fb3201cdf6793994c +msgid "The custom_id of the item to get" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:7 +#: 98fa144afc194f7d8515bd447103d0a2 +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:8 +#: 3d6d6e176c7f414092ad530cfe34fc1b +msgid "Optional[:class:`Item`]" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.item.Item.callback:1 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item.callback:1 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.callback:1 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_error:1 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_timeout:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.item.Item.callback:1 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:1 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:1 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_timeout:1 +#: e983730f42794becb4c575857dd306d4 +#: 1a6fca5291324410a90c948c1a5ba32b +#: 24255cea69ed481396a70f77f164a517 +#: 34fbdd6619144a00b71dc4a9dfbdf301 +#: 69e9487f1d3f4f93adcadb433feb339b +#: e969a0150e5149c3b6be69868a5dcd77 +#: 770fffa13a5f46cca1d7d0a054cb695f +#: 8b341b66e04245dd9e4f5a2f1f5e69eb +#: cca85a1077c94196a7736c41aeb0a7f5 +msgid "|coro|" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:3 +#: 21ac5f9f249141399e37682106a8d163 +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:6 +#: a5732571b1b646038917e1dd222eb895 +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:9 +#: cac332ec85fd4e678581cb07369b113e +msgid "The default implementation of this returns ``True``." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:11 +#: 6dd6d3e0de674b37b56463799d4e5796 +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:15 +#: a6e651afda894717a3c7eeb4b0efc534 +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:19 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_check_failure:6 +#: 1a432a43d45d41dd97862b1f0f19af7e +#: 79b0908f8b1e4c90a0dbb2d347d1dd8c +msgid "The interaction that occurred." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.interaction_check:22 +#: 44b3331c42c24dd0871d7b6a7ac96dbe +msgid "Whether the view children's callbacks should be called." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_timeout:3 +#: 0bb24bab4e6440df876e7c91b96d1b76 +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_check_failure:1 +#: 27d3ccf10dd24da88cdb7c2a3974f10c +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:3 +#: 0d75dddb92724f969f33febce6cfc3c3 +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_error:5 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:6 +#: 99e74ef3f5f9466680a35e8deda8f23c +#: 875e47bef4214d1c8f6c288059a65b3b +msgid "The default implementation prints the traceback to stderr." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_error:8 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:9 +#: 2238043a3f944ee984d06ec6486cb852 +#: 93edd4d9bd60459aa302fa40cea76916 +msgid "The exception that was raised." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:12 +#: 5709e63245134c1cb16bcce2366bfb46 +msgid "The item that failed the dispatch." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_error:11 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.on_error:15 +#: 24dd9c6954ba4b6f8baae26063abdfe1 +#: 93c2f8cbaba342cb942380efba1bcd38 +msgid "The interaction that led to the failure." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.stop:1 +#: a29f8a3d5bdb4aec85165d9368bcf74a +msgid "Stops listening to interaction events from this view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.stop:3 +#: d55bc70ac28e4e31bcdca08c3436896c +msgid "This operation cannot be undone." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_finished:1 +#: acc1711d1e2247a99930ff1d6dc94787 +msgid "Whether the view has finished interacting." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.wait:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_dispatching:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_finished:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_persistent:7 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: 3dd17f55957b46f69f70d89163d80c06 +#: 5e86d04d3f744d8e85483af1cc8e54f3 +#: f3f660e1e53145d7adcbd25a47dc519d +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_dispatching:1 +#: 201608b51af64b808fe79c226b6a3ff4 +msgid "Whether the view has been added for dispatching purposes." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_persistent:1 +#: a7c94233f3944c7f91a2fddae3d48713 +msgid "Whether the view is set up as persistent." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_persistent:3 +#: af57e2f1c3d241c79c75bc007dc6f9e6 +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.wait:1 +#: a350e14ae6094bf9a45da3bba4581ba1 +msgid "Waits until the view has finished interacting." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.wait:3 +#: 12f9450397a54aaebb6c26b3063d3ffa +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.wait:6 +#: c95bfa514bbd4d9590e3220c31c0c6c5 +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.disable_all_items:1 +#: 314de3c4bde54717b2849331287e748e +msgid "Disables all items in the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.disable_all_items:4 +#: 4072920264ba4042a24a4149853585d3 +msgid "A list of items in `self.children` to not disable from the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.enable_all_items:1 +#: bf174030a36b4632b1cf6e1fc5fe4038 +msgid "Enables all items in the view." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.enable_all_items:4 +#: 156efa1c1fbf4918af0b9e99b8099feb +msgid "A list of items in `self.children` to not enable from the view." +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:1 +#: 20e96e2aa54a45bfa5ad1c493abb7dd9 +msgid "Represents the base UI item that all UI components inherit from." +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:3 +#: 9a2765dfcfb646e084e717be3bed4b85 +msgid "The current UI items supported are:" +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:5 +#: 0b1b92a5722e4ab398df7f16d1135628 +msgid ":class:`discord.ui.Button`" +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:6 +#: b7356742ae8c4acebf71b6dc048626a3 +msgid ":class:`discord.ui.Select`" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.view:1 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.view:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.view:1 +#: 82ecd677a8ae42efab9547d6e0c64ca6 +#: 718197200d854b84879705c60c0d53e8 +#: eece3a9744f2405a8e83f30be0252a22 +msgid "The underlying view for this item." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.item.Item.callback:3 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item.callback:3 +#: ../../../discord/ui/select.py:docstring of discord.ui.item.Item.callback:3 +#: 055cf67df1e94d0592bbc5d22013c323 +#: c8cd5c6c52b2432086a54d8ebaf9dade +#: e3934636086a444ea2d8e67a258834cb +msgid "The callback associated with this UI item." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.item.Item.callback:5 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item.callback:5 +#: ../../../discord/ui/select.py:docstring of discord.ui.item.Item.callback:5 +#: 94fcbdc6f4a7448fbbebfa233bf60049 +#: 253657b63da14170bec87bc80bc4c38a +#: 30a9c108e9d24604ac60bf1e911af72d +msgid "This can be overridden by subclasses." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.item.Item.callback:8 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item.callback:8 +#: ../../../discord/ui/select.py:docstring of discord.ui.item.Item.callback:8 +#: c4a0d0cb7af54912ad4f4e1cfb4aff78 +#: 2dfbae61c770488cbbe415c1fe433949 +#: 9083cdfe2ae24b2f950208892462f7bb +msgid "The interaction that triggered this UI item." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:1 +#: d3ed8c14fbc14d40be6691f7709cfe09 +msgid "Represents a UI button." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.style:1 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:6 +#: 3e0672a1b2d64d418a64a8f5033f2572 +#: 5f26973a49434bcf9f88e06a44a7629c +msgid "The style of the button." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:9 +#: bc22a9734365447c827b37fcf29a072c +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.url:1 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:13 +#: 47abb7d1e6094637a97fa3df6a95a8e8 +#: f2929e3d104a48f08a200c52f438e072 +msgid "The URL this button sends you to." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.disabled:1 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:16 +#: 1800abfd6ac44f59ae3181e5274b405c +#: 2eb02a2f95694738aa23bf512070f586 +msgid "Whether the button is disabled or not." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:19 +#: 3aa00fa1b0524f57b5984d7f80d72c47 +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.emoji:1 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:22 +#: 74f13428fd0a40f39ee7531329565abf +#: 3faa2a41847245938c5f2b330a599f40 +msgid "The emoji of the button, if available." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.sku_id:1 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:25 +#: bf020129ab2a4825b8dfff6074481348 +#: e113ed73331e4e739300825d1691dd3f +msgid "The ID of the SKU this button refers to." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.custom_id:1 +#: e6884781decb43808438d3e9817dd29b +msgid "The ID of the button that gets received during an interaction." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.custom_id:3 +#: 47b62faa29564d4f9cc2e549f6863c4d +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.label:1 +#: 24753a72351f419db69690e215d59991 +msgid "The label of the button, if available." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:1 +#: b77915704f4243b096bd2422d12bbb91 +msgid "Represents a UI select menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:3 +#: 97252e0d347f4d1f99a112d6313bfe29 +msgid "This is usually represented as a drop down menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:5 +#: a8c107f041ed4021944056e98e4b13ee +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:11 +#: 3c3698117004495d830d4610d318dff0 +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:22 +#: 177b62b01c754dd780a7a3d22484d19d +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:29 +#: 4eebabd7f0d44d08a9418e9bb1f45933 +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:37 +#: 16f0527ad7e44487bb43ccfda1c635eb +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:41 +#: 6f486dcced0f4699b0055a1ecd5b20fc +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.disabled:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:45 +#: 796771ff82554675a187cca6828acb7c +#: 6ccb04df725844a182a2639c2457b4b5 +msgid "Whether the select is disabled or not." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.custom_id:1 +#: a925d6a693154f52a7d0daad0c744686 +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.min_values:1 +#: 7fd54b986674467abbb28a2ced73f7d5 +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.max_values:1 +#: 3d4f7caeeeee4bf9849176d0b17c48b8 +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.channel_types:1 +#: 9e37bef3ace54b26a73d62ad34fee227 +msgid "A list of channel types that can be selected in this menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.options:1 +#: d7b6d5871f744324b100f604ccaa833a +msgid "A list of options that can be selected in this menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:1 +#: d623f3b744a14701a12c06831d410d96 +msgid "Adds an option to the select menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:3 +#: 0e6d15c2f7ae4c29986e7dd0f1154f23 +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:7 +#: 0abfcec6e5a4408a803463cec892a147 +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:11 +#: 067e5b5806b14e759abb23e9b4e860a9 +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:15 +#: 760c50e112a04650a33bf2c56834b14f +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:19 +#: 042ab23dcae24d1389ceba8d72659509 +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:23 +#: 27eb750afa664a6ea5cf41996fc3cacc +msgid "Whether this option is selected by default." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:26 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.append_option:7 +#: 7eff0916811d4ee2b31c189597562605 +#: e190a9601c2e43eb88aaeb92ae48a1a1 +msgid "The number of options exceeds 25." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.append_option:1 +#: 21ff2a9da99b4440929eb12965b39a31 +msgid "Appends an option to the select menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.append_option:4 +#: c84b351523dc43f8916def7991ada61a +msgid "The option to append to the select menu." +msgstr "" + +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.values:1 +#: b886031b28ca473eb760ef8253f0f94c +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:1 +#: b9270d5d3b734251840a9f06eb712027 +msgid "Represents a UI Modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:8 +#: d1f45a3b27da4ba69428076fe7aa9191 +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:11 +#: 3534571d450444f3b728e0d7629b67a7 +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:15 +#: d3eb5f8c8d2e48efad25d189c53c8702 +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.Modal.title:1 +#: 0dfdf29800e044d89a49e207c803d984 +msgid "The title of the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.Modal.children:1 +#: 06dd349526264f8a9df66fcb7980af2a +msgid "The child components associated with the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.Modal.custom_id:1 +#: 686f5e94a69c4dec802fd25dc3c06607 +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.callback:3 +#: e78cf6c4472c4a7480c4d9b0b79dd7bf +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.callback:7 +#: 4d2a53d8fa0a403eb48b376ee949adf4 +msgid "The interaction that submitted the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.add_item:1 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds an InputText component to the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.add_item:4 +#: 698b0ffc9e8a48dd9571951f9059c7aa +msgid "The item to add to the modal dialog" +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.remove_item:1 +#: c4180d38f8514641b975d5b03834cdd5 +msgid "Removes an InputText component from the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.remove_item:4 +#: d745be688d5c42638330608e48ad46a2 +msgid "The item to remove from the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.stop:1 +#: 10c0de82d08242399b35eb6d50cae8b4 +msgid "Stops listening to interaction events from the modal dialog." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.wait:1 +#: 844abb1d49a849aa83ab65a5d6348a36 +msgid "Waits for the modal dialog to be submitted." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_error:3 +#: 39116ddd5b794673b34f99da06860ff1 +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "" + +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.on_timeout:3 +#: 716ac8fecc0a4170a9381cec6a9e2ef9 +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:1 +#: 7cc19a1bcc8d474fb7b13e76fe9325ac +msgid "Represents a UI text input field." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.style:1 +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:6 +#: 46ab89f240c04a70b1772095a8585e87 +#: 391f2a60ad1a446b9b869244f8074585 +msgid "The style of the input text field." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.custom_id:1 +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:9 +#: 53336a0409494b719bad7895bab5d8e3 +#: 7dd47d92ba824a4d802daaecff316b4a +msgid "The ID of the input text field that gets received during an interaction." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:12 +#: 484601a95ea846b98aac3f5c46029167 +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:16 +#: bd55b842a60843b5a8cf3c66d215464b +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:20 +#: df92d651e5fa4be1bdc8bcae6e21e348 +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:24 +#: e01a7fc394d841cda09f68b1b136d1f1 +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.required:1 +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:28 +#: 584df796ba3345878a51cb7cbbd2ad12 +#: 3c95c7168cee4a3ca835e439caf1363f +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:31 +#: 4b3080c9570045559a3b3f095cd7ede9 +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.input_text.InputText:35 +#: 2f957dcccb3d47ae8f08c48419ea39a1 +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.label:1 +#: 53bbbf9910f6434a86d331c806dc2485 +msgid "The label of the input text field." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.placeholder:1 +#: 8532b6f3c3b54fa1adac3f290721896e +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.min_length:1 +#: 0841d9930482419a831cb90ca1d54c5f +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.max_length:1 +#: 6369ccce3bbe48e2ac99040cf9f3a39b +msgid "The maximum number of characters that can be entered." +msgstr "" + +#: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.value:1 +#: 7eef7bc7f5434d39baab02325cc1ee35 +msgid "The value entered in the text field." +msgstr "" diff --git a/docs/build/locales/api/utils.pot b/docs/build/locales/api/utils.pot new file mode 100644 index 0000000000..22e36e1180 --- /dev/null +++ b/docs/build/locales/api/utils.pot @@ -0,0 +1,905 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/utils.rst:6 +#: b2f28caecc924db59cc0bfda2cf725bb +msgid "Utility Functions" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.find:1 +#: e551a85abadc4f54a50aee8720846873 +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.find:6 +#: 9281f3d427c24c5199324b441b758af9 +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.find:9 +#: 8e363292f30e4a8c8001b4f2a413d3f5 +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:0 +#: ../../api/utils.rst:0 +#: 1c60fdf432a34262b02af7df598af358 +#: 8cd9a4a6430f4d4083e18c8cf19fcf48 +#: f8bf8feea079450998152dcff00e95c1 +#: 050571d8ce744379a07e80a62aa94870 +#: 35c87733e7a44f0abc2df0b1b7ea12be +#: ac91098994644d18b800c34e375c9751 +#: 6a62a020e98a4607844e6a1d92754354 +#: b2eaf3d8463e41408acf895a2e2016b6 +#: 201c050fc14d44f0810c776b20c676a1 +#: ab4317ac344e484ab6269743deb00536 +#: 4182382f67e146d09cff1cbee0f070a5 +#: 55701d63ab734c498871b0f9b16d1c6d +#: 5f476066bcaf4eae9d5ca625db8badcf +#: 4b7d6b239eb844b0a07455620184eb3e +#: 39fbbccdd8e84cfbb3dd88b8836b653e +#: 8a406056f674402fbda55a5b21a97010 +#: b2325f4789474a608227307565f07ab8 +#: e235bd384d1b429d8285ad37f2d4a591 +#: 7a0f3e4603c446ee80192ad6a4c2a275 +#: d084c891f79846a089b9181a6952a853 +#: 94c84324850542b18825d9ad059adfca +#: 966fc85ec97e4462a08892e3238a8de7 +#: b4007756f3b14b119341325d85618f45 +msgid "Parameters" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.find:13 +#: 9fa7a6562c90425ba95278c8fb52c572 +msgid "A function that returns a boolean-like result." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.find:15 +#: bf625ed56ac94e4e9c16375a29c802e4 +msgid "The iterable to search through." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:0 +#: ../../api/utils.rst:0 +#: c287aafc3232425da8ccd5cca5f25e2d +#: 392e00c2a71444519c80974c8388009c +#: 737183e407f044cfbdeb3520b0664458 +#: ae19383e27b04626a84993ee6c1dc6c2 +#: 6284d5d5ec2c4d81b0867bef1a730df0 +#: 02dcab3cde5943e6b6bb51bb073c78d3 +#: 2b2c738b3ccb483f9981028c7a67eb93 +#: b240a7e64248402482220648f8d25d89 +#: 8c58ff1ae8594e3885fc52f7276a6393 +#: 17bce3950d8d41f999cfc959de1c8005 +#: 54a28def4381478084624d76e12f9f45 +#: eb0e0c983f3c4751858bc3209d71caf8 +#: 77e1c55771274774bc9154f8b83f65fc +#: abf23af895704f009e6e57170df2e2c3 +#: 74261c6f68334a9c9832b03ab14c173c +#: f43529e1bd0a4b11aa3c197db4892dee +#: 2eb1e3111512438984551edfa1d65489 +#: 3c6d52d4b8354e06b6ce0fcf3b086c85 +#: eaf3c063f00646c9a476d69b6683b0ac +#: 7b6ea48218734b5d9fdac096eb1869e9 +#: cf3a47a3633248deb7dd10cf5aabac09 +#: bfc10ea03c514b9788b46e71d6bb66fd +#: b91f8eeb2b9144e8ae6b7ef21d93a779 +msgid "Return type" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.find:18 +#: ../../../discord/utils.py:docstring of discord.utils.get:40 +#: ../../../discord/utils.py:docstring of discord.utils.sleep_until:17 +#: b44d8109461742229a137bc4ba3bceef +#: f5452727e7f94436b7f9a74b23e539ab +#: 1f9579e8c87641de83f52a1e20a4f328 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:1 +#: 1bf4fedf587c4b5fbebab4a690e1e45d +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:5 +#: 7e04bf3fc16d4bdd8184628cad06f709 +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:9 +#: e17e9bba8fca4009a6e42a4491469d8a +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:12 +#: 8ce8eccaa5d54963817ec2ccbfcd4897 +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:16 +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:28 +#: 3924fb9efa21466e8ad1606af419115d +#: 3521bfb272664038a752ad0c4215b894 +msgid "Examples" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:17 +#: ebf141cbc71a4423aa0f9536eaa183a4 +msgid "Basic usage:" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:23 +#: 6eb8c1d8a594429bbe9089eaa7e1ac0a +msgid "Multiple attribute matching:" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:29 +#: e122d883c8ba4dc9a17922e005f6f3a0 +msgid "Nested attribute matching:" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:36 +#: ece83686d52643cdb6c8406fde3c7285 +msgid "An iterable to search through." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get:38 +#: fe5bcc80273940e1a3c9d8a61010ca49 +msgid "Keyword arguments that denote attributes to search with." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:1 +#: ../../../discord/utils.py:docstring of discord.utils.sleep_until:1 +#: 813a458483fc4657bb6de6015318ea4c +#: 047a5517f469416aab2b765c3711e2c9 +msgid "|coro|" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:3 +#: 6059a0ee37c84b7c968bbb3180cd4061 +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:7 +#: 99c21646a64544a7a66635fe89a62488 +msgid "The object to use the get or fetch methods in" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:10 +#: 722b7174a36e40d9ad7f4158e4dec713 +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:13 +#: d12701e421f14168a8c064b63bbca7d1 +msgid "The ID of the object" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:16 +#: bebeace681de4c4b82947227d8b175ce +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:0 +#: ../../api/utils.rst:0 +#: 5e2662c472244430a1c5f927e8ad5742 +#: 2cada1fbf84b404fb2628ac3f35b19ed +#: 80cac2a2e81441b287f204bf5131b09d +#: fa6b89a60707475d9f9f29fe605228b4 +#: 7fd927630bce466fb5d388f8d11fcdb4 +#: 410c4260d88e4f388018236761fc0965 +#: c9e6df7e45324f84a24e0117930a36a1 +#: c2f878aa2d944761ba684104b753f875 +#: e4958f5419174efea8ba08cb566b5fe0 +#: 5a9fd330b31e4c7c8844cdf8c620430b +#: 1fec765e695e4742b8b12fe2c089354f +#: 6a6845d4e22b436ca97dfac93491f478 +#: c1a779448b8c416f9893dcbbbc8b8ae1 +#: b9b2c90b77b84eb5805166bc365f005b +#: 96d038e7361c4ea69e5d5fb8389f92dd +#: 8035ef1de15d4808923a8f8d047577bc +#: 36f7538b818747bba0d09bfdca701d0c +#: 2518caf557d74fe89605eb9ccea011f7 +msgid "Returns" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:19 +#: 44457c74e11f4bcb86593baff8be9dab +msgid "The object found or the default value." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:0 +#: 30b0356fd64d4d41b7a8e2cad0506d17 +msgid "Raises" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:22 +#: f118d1f7f46440f8b25a14d07b483c94 +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:23 +#: 044578fd72984f17b794e0b1b3b98deb +msgid "Invalid ID for the object" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:24 +#: a32ef12495724e3592521d9a0b9e1a9a +msgid "An error occurred fetching the object" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:25 +#: 8cf54e47d9784ec687e61aee0ab3215c +msgid "You do not have permission to fetch the object" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:29 +#: 10c9649c25a64cd0a556bf2a290e0a61 +msgid "Getting a guild from a guild ID: ::" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.get_or_fetch:33 +#: 78c2fa52a132456abfb980a83613441d +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:1 +#: fe4a3d1e945e470898618bbdafc75294 +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:5 +#: 6922f1e7d23c4cdca00cb7eb5a3f919f +msgid "The client ID for your bot." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:8 +#: 53556372d4e94d1fb9ab93f8b9843b8a +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:12 +#: 96730f42a5cf4cba83bbb44013b202c2 +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:15 +#: 45c5f11bfe894ccaadeefd066064da1f +msgid "An optional valid redirect URI." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:18 +#: cd3dfb289ce14729873225317a503d8f +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:18 +#: 0c9e2a41e0514b69a182b945cf09782e +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:23 +#: a58d963b26244f65946d3ce5d9507396 +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:23 +#: 33c3ea449b084bbba0bac77189221864 +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:28 +#: dddb7780a58c4d02a9e33a83610456f6 +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_markdown:21 +#: ../../../discord/utils.py:docstring of discord.utils.escape_mentions:18 +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:36 +#: ../../../discord/utils.py:docstring of discord.utils.oauth_url:29 +#: ../../../discord/utils.py:docstring of discord.utils.remove_markdown:19 +#: ../../../discord/utils.py:docstring of discord.utils.resolve_invite:8 +#: ../../../discord/utils.py:docstring of discord.utils.resolve_template:10 +#: 365ce5216faf447abc535b71d88ddd14 +#: 35c97cbad62a46f6bbbcc1e7cd22ec91 +#: 9590c8c38e8b4cf78813d5435267d058 +#: 1691932c989c44919f5464baf2015706 +#: 983c0fcb3ba3401e9e63e6128fb8cc0d +#: 7f98ae082d164224a29428f14d1e0e6d +#: 00e022b285884d4caddb3d3d92874d00 +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.remove_markdown:1 +#: 744cadce5cf74df4b0bff0d86815d9bd +msgid "A helper function that removes markdown characters." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.remove_markdown:6 +#: dd119c77246d4c808920c17ba3cd4e62 +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.remove_markdown:10 +#: 4f53660c7b22469a88a4b9d71b7e3b7e +msgid "The text to remove markdown from." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.remove_markdown:13 +#: a8a0bc5695a34e19b9e67a672ebbc601 +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.remove_markdown:18 +#: a07ce7398e2448098358b434ba711f00 +msgid "The text with the markdown special characters removed." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_markdown:1 +#: 8dfc3e36bdd74417ac27356ec9ecb8d8 +msgid "A helper function that escapes Discord's markdown." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_markdown:4 +#: 8d7409e0a4bb46fa8923de1e64781442 +msgid "The text to escape markdown from." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_markdown:7 +#: c185975ffa2e45ba87bba442cd8de2cc +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_markdown:14 +#: 671aab37aa2840b3ae919cb1ca5d756f +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_markdown:20 +#: 114cb57eb6be46778579ab942ac8a33c +msgid "The text with the markdown special characters escaped with a slash." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_mentions:1 +#: 92d7cc35f363403b9589b8ca920d471e +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_mentions:5 +#: 211f6b0061a04ff0b830caab837a2a42 +msgid "This does not include channel mentions." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_mentions:9 +#: 3bc32d1196534e289a79d7d33bbf3888 +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_mentions:14 +#: 49f4649faee743348413613de50a095a +msgid "The text to escape mentions from." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.escape_mentions:17 +#: d5330c7ee270424fad80aca4a9bf2687 +msgid "The text with the mentions removed." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_mentions:1 +#: bfa4bf501e754a7a8e564daf92173adc +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_mentions:6 +#: 2b8d9969221f4e3b842ecd4c5b0ff7ed +msgid "The string to get user mentions from." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_mentions:9 +#: ff66d05ec8364c5bb85c870a70b62b85 +msgid "A list of user IDs found in the string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_channel_mentions:10 +#: ../../../discord/utils.py:docstring of discord.utils.raw_mentions:10 +#: ../../../discord/utils.py:docstring of discord.utils.raw_role_mentions:10 +#: b7adc5671b74425aa0dc7620d4e36e60 +#: 7683abc8d79f4cff8f52ada8f6f537fe +#: bf95fb3638ae4162a3ede56e570d575d +msgid "List[:class:`int`]" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_channel_mentions:1 +#: a1bdaec1c08143d09c3070b44e4546db +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_channel_mentions:6 +#: ef551f719496417da562512dee9448b1 +msgid "The string to get channel mentions from." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_channel_mentions:9 +#: bbe74131d518497b942a440880a52043 +msgid "A list of channel IDs found in the string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_role_mentions:1 +#: 090aaefa36ea42ce8ac9a82def9de7c9 +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_role_mentions:6 +#: aad51dd511f94d5faf5c31f04e4975a3 +msgid "The string to get role mentions from." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.raw_role_mentions:9 +#: 27df55b1abed40ad926dbd266a1b38ba +msgid "A list of role IDs found in the string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.resolve_invite:1 +#: 0b0a46fc6d8148818f7321a47619a716 +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.resolve_invite:4 +#: 7852632e3bfc4c818c1f732dabda5b61 +msgid "The invite." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.resolve_invite:7 +#: 7f73d202fc844dd3bdcdd567127959e0 +msgid "The invite code." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.resolve_template:1 +#: 2cdcdcf9d2bf4ffd9559d511ef27090d +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.resolve_template:6 +#: 9a9b237ba8764f16a2735e97b8ba92cd +msgid "The code." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.resolve_template:9 +#: 382208b003a849349169f0693d92fe85 +msgid "The template code." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.sleep_until:3 +#: 759a5b88a9474bde911dc404a88a4c7d +msgid "Sleep until a specified time." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.sleep_until:5 +#: 498fcacad5e542c9b535af7c5ac323bb +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.sleep_until:10 +#: 356a2d3a17414064a0332ba1c9110db4 +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.sleep_until:14 +#: 46cdf4f783574bbd845beea1f3778f06 +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.utcnow:1 +#: b2522dd48dfa4bea8fcd24de4d79178d +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.utcnow:3 +#: be409753e4dc466f8c77ca040ecaeccb +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.utcnow:8 +#: 683514a7b0d641748f3c0d70b7009595 +msgid "The current aware datetime in UTC." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.snowflake_time:8 +#: ../../../discord/utils.py:docstring of discord.utils.utcnow:9 +#: 3d3d51edb6044a099f7629a77d8811e9 +#: 56bd424aabf44587a6ffcec02aaa5af0 +msgid ":class:`datetime.datetime`" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.snowflake_time:1 +#: db52e7d27432444ebc061c6347543444 +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.snowflake_time:4 +#: 1445cceebae94da79f69c7ec2c82b3b8 +msgid "The snowflake ID." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.snowflake_time:7 +#: 050dbdb6689b438184c22d7a4a9c4e1d +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.parse_time:1 +#: 7ddbe7752a5e4bbb8c60ae498b445f46 +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.parse_time:4 +#: 87b7502a035c4f7a94b7b1d26819abef +msgid "The timestamp to convert." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.parse_time:7 +#: c723db34011f49828d3bb12fed23d6a9 +msgid "The converted datetime object." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.parse_time:8 +#: aa502e7ed02045ffa2fd6ab5aec5825c +msgid "Optional[:class:`datetime.datetime`]" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:1 +#: c3e3a912c4c747749a63ac1951adc0cd +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:3 +#: 014018350bde44a1af3b87f0a256c312 +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:6 +#: 47c889fce51d4655894d69995fd09e64 +msgid "Style" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:6 +#: 9d872289da7647aa939a4249ed2116fc +msgid "Example Output" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:6 +#: 04d70e88eed741e8b7baec36dedd45a4 +msgid "Description" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:8 +#: d9773363dfdd4110be3202594b90deac +msgid "t" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:8 +#: 01f669f9d718485dabce66ae18c650d8 +msgid "22:57" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:8 +#: 4505dbbdb65643d689966d6ad5241fe9 +msgid "Short Time" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:10 +#: 7e56e826b4c54267b72e5e1333ce0835 +msgid "T" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:10 +#: 1db4a09a55cd497685f2e7e43eb40b7e +msgid "22:57:58" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:10 +#: e2d7da40ee0a4cefb235c71f5059c1ba +msgid "Long Time" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:12 +#: 0398eefcdaa9424e8095fc7c978adb69 +msgid "d" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:12 +#: 44d935830a894d798035c30178c37847 +msgid "17/05/2016" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:12 +#: 88dc24f2daf64b9b82ab2b5ccc55ef52 +msgid "Short Date" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:14 +#: c9ee5decc37b48bcb25bd130c3d5dc5f +msgid "D" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:14 +#: 3c3e68c2c7b34fa8975ca83d45c6e0d0 +msgid "17 May 2016" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:14 +#: 4dab2a15edd0492e8a71438ceb43b912 +msgid "Long Date" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:16 +#: 5efb87fd0d8744eb878c558c2f961a3c +msgid "f (default)" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:16 +#: a0b3a00fe113498a930293b0366f9ac8 +msgid "17 May 2016 22:57" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:16 +#: cebb638af4a44e89b22972425a3e8afc +msgid "Short Date Time" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:18 +#: 3e3fe2959acc44be92e90ac97ccb20f0 +msgid "F" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:18 +#: 59f32996a6ea4df6b6b3f171f6204b5e +msgid "Tuesday, 17 May 2016 22:57" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:18 +#: 5d1bb8a7e0e94646aa89baef02aa1b35 +msgid "Long Date Time" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:20 +#: 36677a24a28c4e50908c73cdfc0ce8cb +msgid "R" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:20 +#: 2ef4165bf158419caff2c9444a4a275d +msgid "5 years ago" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:20 +#: b4009f9e19a74f9c9c43a0d25e49b637 +msgid "Relative Time" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:23 +#: 8f6bdcb0e1b746d294b046b91e82acfa +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:29 +#: 7a8890fe32364076971c15c65e42d0af +msgid "The datetime to format." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:32 +#: 752d22d96de1489489a0e1045d3f1702 +msgid "The style to format the datetime with." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.format_dt:35 +#: 1247f6c9467c4399a21d45c6c2540b8f +msgid "The formatted string." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:1 +#: 3dbe398f94684d7d81111c3a9d78ddee +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:3 +#: 4f0a375b5445437c9b32c94bb126d2eb +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:6 +#: fd7692997b8d4147ae031cc74d728ea2 +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.generate_snowflake:5 +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:10 +#: 707b6da896314b699199545f50ffaa4c +#: 156dc943215f43459e046968ed3d56f3 +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:14 +#: 4d4b4aed7951406c98672889e6af4aff +msgid "Whether to set the lower 22 bit to high or low." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.generate_snowflake:9 +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:17 +#: 685eec1e29a2446e99fd2c65c95ed67e +#: 36df0fad6db443f498326d3435c79e77 +msgid "The snowflake representing the time given." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.generate_snowflake:10 +#: ../../../discord/utils.py:docstring of discord.utils.time_snowflake:18 +#: 1592ca8f639d49108573be44e12cd05c +#: f921d097fcff48d2ba649bf347797916 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.generate_snowflake:1 +#: c8903060dda24558a54ef44d79166e0a +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:1 +#: 342ee272ba1a47d28edeb42756e01b5e +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:5 +#: 548784abce704512a534212ed4f89380 +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:8 +#: 71b0b09a76194f82a93177616dd8e775 +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:12 +#: 42efe68651a145729d12aa25efb1c936 +msgid "A wrapped callback for the autocomplete." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:13 +#: 62cb574c35064e82b913901dea277846 +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:15 +#: 3701cd6df81947f6b20b79fcfdf29842 +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.basic_autocomplete:18 +#: ../../../discord/utils.py:docstring of discord.utils.filter_params:12 +#: 38fdef3a74ae45a48840ee240fd21411 +#: f0afb50f77a84f8a8f6c19c3c315c4c4 +msgid "Example" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.as_chunks:1 +#: 94bfe37178034b48a425cb2ffe69a1cd +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.as_chunks:7 +#: 640eef2dc9a746c299d6db0ada4512c9 +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.as_chunks:10 +#: 2262035739314e6d8569f13a615f7cf5 +msgid "The iterator to chunk, can be sync or async." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.as_chunks:13 +#: 1625a9682d7245ecb50b94b93e94221b +msgid "The maximum chunk size." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.as_chunks:16 +#: e3de94aceeb44a3aafdddf7c05d7465c +msgid "A new iterator which yields chunks of a given size." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.as_chunks:17 +#: 3648eed64c0e442d8e3e1df5cea6d046 +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.filter_params:1 +#: c36eedeb288e42c78bc4a987d84c2d5d +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.filter_params:4 +#: d88520e24b1d4208890200ce4d45cbe8 +msgid "The initial parameters to filter." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.filter_params:7 +#: 8f56edb34ffa4871b090fe88f83da282 +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:1 +#: 8da4e468cec14bc380a9febfd1ecb5f6 +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:5 +#: e3d8c023dd1c4350ac0fbd6bf2429a05 +msgid "The name of the deprecated function." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:5 +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:8 +#: 1aba31edeed24fc0bf925b49f4d01770 +#: ed5919ff292b4888b37ac2b10a02a9e3 +msgid "A recommended alternative to the function." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:8 +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:11 +#: b9b3be6c3207442c804878da48136de5 +#: 5b13e7161cf943cab770cdf8f1dbc614 +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:12 +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:15 +#: a626227cb070430481695b7033d08037 +#: 0d693d37c2264cc7b13fe7d0cfabc551 +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:16 +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:19 +#: f683b72936684971a741eb6883ee293c +#: 99f204a0f2054cc1ba92951549f7fbb6 +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:20 +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:23 +#: c47d7142272b415fb0e9cc38033dabb9 +#: ae34e1033c72447ba27713944dacffcb +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.warn_deprecated:26 +#: a7e969196e094149b160e9b2d531f047 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:1 +#: efa18c465579446cbbcd9b510d81a062 +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:23 +#: c062d6ae6db141b5ba8ffe616b229d28 +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "" + +#: ../../../discord/utils.py:docstring of discord.utils.deprecated:28 +#: f8e97d5772924b948068e5d0a2b93af1 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr "" diff --git a/docs/build/locales/api/version_info.pot b/docs/build/locales/api/version_info.pot new file mode 100644 index 0000000000..3029e9f45c --- /dev/null +++ b/docs/build/locales/api/version_info.pot @@ -0,0 +1,42 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/version_info.rst:4 +#: e2693c05b8734ff3bd738ea8e3f79b49 +msgid "Version Related Info" +msgstr "" + +#: ../../api/version_info.rst:6 +#: 0e23d91f6e6a4d3da6ff964b98836926 +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "" + +#: ../../api/version_info.rst:10 +#: 655eab73191943599a3ac9db5642e146 +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "" + +#: ../../api/version_info.rst:12 +#: 4331afd1ca6f4c91ac3258eaf4901282 +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "" + +#: ../../api/version_info.rst:17 +#: a03a04703c6647bc83580f977672decf +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "" diff --git a/docs/build/locales/api/voice.pot b/docs/build/locales/api/voice.pot new file mode 100644 index 0000000000..3956f7fdab --- /dev/null +++ b/docs/build/locales/api/voice.pot @@ -0,0 +1,1049 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/voice.rst:4 +#: d7b0a6618d484ba1b7adda020e2d5f7c +msgid "Voice Related" +msgstr "" + +#: ../../api/voice.rst:7 +#: e1136ab1790544e081feafd9f400987d +msgid "Objects" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:1 +#: ec3682ebcd66478c91ba6f769605c2bd +msgid "Represents a Discord voice connection." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:3 +#: 7f911d83faff403797bc9208eca7a850 +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:8 +#: 36a29fc8e1be46c1a5352da439a5ecbf +msgid "The voice connection session ID." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMAudio:0 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:0 +#: ae85be689738478c8c55931c8bfabb80 +#: 6920c629202a446eb012541840b29852 +#: eee0ca9ed52f4b2bb028227099beabf7 +#: 9c79837399e6407aa5eed5ce9856233c +#: 2fcfffeabaf7443ebf721c1610289eb3 +#: dc52e60ff0b643c18a5be52a79f3a6d7 +msgid "type" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:10 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:16 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:22 +#: 964fa49cd5a840778b2d0de9f6e4cefe +#: 793cf2c355174fd7997308d4d9a965ec +#: 8aa94617d01a4f03b9a588e904a22916 +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:14 +#: c8eec95e8f044116ab027b3ebdd05b77 +msgid "The voice connection token." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:20 +#: 4ce8872157ad499c94e8f82c673b159a +msgid "The endpoint we are connecting to." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:26 +#: 918a8f624381475a95a7078b155dff74 +msgid "The voice channel connected to." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:28 +#: d71979b351204fd49b0e0e85dc0cc9c6 +msgid ":class:`abc.Connectable`" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:32 +#: 459ead7dba7b415d956100716e15ad0f +msgid "The event loop that the voice client is running on." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:34 +#: d9b30661623f430c953f825b8cbba403 +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient:38 +#: 26feab966bfa4f1fad07f094b7edee5a +msgid "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 to transmit audio." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:0 +#: ../../api/voice.rst:0 +#: 771c2db901254eee9b8b03d63009dc7c +#: fb01f37a3ce2458bb7237088803d269a +#: f4deaf0307e544339f4fcaac7b0558bc +#: e4c505fd25a34b1aaf027a23ce478576 +#: ac4f165d6599452db25226ff0a7e7d7f +#: fab43f55cb8d46c18309ff5fddc61816 +#: b660228e1b894281802c261ae32d2654 +#: 5abdb5e4ddf34de2babfca2950a76dd4 +#: 7f35660d885a4fcebc23c4570f774ee8 +#: 52330df6b9d74b889c44ecd31ad0bc37 +#: 95bd3ccff86b423f850c85a5c16d83be +#: b9921e9cbf8f4e13b9611c85e2c50035 +#: 097916a2827d4169afabc5b5f61c309f +#: 0a1db135ede34233a02cc2111512a49f +#: b0cff60b27144f489fb963f023b9288d +#: 6475a382392d403e94c6c2d0e49e5aaa +#: 77a01818697c49a09c752278468a1f99 +#: 69d41da7ec2e48caa0398ba00f33e5fd +#: 71a09c9337f54d45b2723985acaf9fd5 +#: 2456beac41954a5e95e27b81e6120484 +msgid "Parameters" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.guild:1 +#: 1b19524198b745bd85d0277ffff05c3b +msgid "The guild we're connected to, if applicable." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.user:1 +#: 0ae00dbd951449cab37e06a27e8fe724 +msgid "The user connected to voice (i.e. ourselves)." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.latency:1 +#: 51d4b8a5a0ee4c83adc7d042188795dc +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.latency:3 +#: 480ab595bf334146ba4cf867b73467e4 +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.average_latency:1 +#: 69cfcf62fc9b4036877b01ad9bf6de19 +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:1 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.disconnect:1 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.move_to:1 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:1 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.disconnect:1 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_server_update:1 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_state_update:1 +#: cca2eef9de4c41988818f576564c4e3a +#: 0124a63448a04d09bceabbe0a56e9ad4 +#: 2b2f5a6a6de94ee699bb6965bf262bd0 +#: 036633cf1fdc42ba93a48b21ba9acb09 +#: b4b9fb6ef0894b0b95bc06faa3e8c620 +#: 21a0e341554c4244a49b0b723301f8fc +#: 386aa5eafc2b4c1b83f7f87bd8c9c87b +#: 15f431251e504476916f5401b3eabcf0 +msgid "|coro|" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.disconnect:3 +#: be3fe67562924e85984c23095c2faca1 +msgid "Disconnects this voice client from voice." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:0 +#: ../../api/voice.rst:0 +#: 0683fdfd1bb2405aa95b2b4b2c0bbd1a +#: 4ff780af4f2d4047832ca6fd2fb69c1d +#: 234ab6e89ed44bf299fd9a9b6c03740e +#: 842f6f1f3a3c4b6fbcea7bd6791fd09e +#: 06d93b1e976b437e847218ce968f0293 +#: d880fe4362264a78b055f8853042db4d +#: f2b636d7a9e24d8e8b49f78d1b2e4900 +#: ea83c92fc5ad425f90ecc0e31baf3f2f +#: 2646ac699d59498f8a95fbdc8a0d9239 +#: fa5bcb9db5c84928996fa5c02addb075 +#: 8771b3930fbe4b44b28b7e32de6036ca +#: c79a00961d4842a8acb4b23dd0a780d1 +#: 1e6cefcdd84e40e9a18bfcce7bb99d64 +#: a0e56fae902348afaa3d88522fc6a165 +#: c9d8428298034204a7ab4ea957d0f6e1 +#: b3d3d728afd3400c96992e02f0d272f7 +#: 07b51b94b0f44720be2a13ca0086ab66 +#: f2a653c8141d46fdbe33cb351ba19af8 +#: feb84d9eed6c4e908e12e23157aa4670 +#: 52372051be784eec985737e4b1a63e48 +#: 170782bc8dac49cf85c15f8bd820fdce +#: 3151fce786ad4f619809a9c3b0f9280f +#: 4da06b8539464fd7914552d93cc91452 +#: 6fbacc9e2b784528a38eaa2d676bbddd +#: ee9592f37b57465499c3033adfcf68f4 +#: 58475ca4bf0f412399121be3c74b7050 +#: 11a61da9e14a4eac83035d9762df668a +#: 221f54b949984748ab0ba4335a5489d0 +#: d3ee0127c9a94ee183118b00b3885b54 +#: 6e566ab77b634a078605db6e2267b8e7 +msgid "Return type" +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:34 +#: ../../../discord/player.py:docstring of discord.player.AudioSource.cleanup:7 +#: ../../../discord/player.py:docstring of discord.player.FFmpegAudio.cleanup:7 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.cleanup:7 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.disconnect:7 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.move_to:9 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.pause:4 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.resume:4 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:15 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.stop:4 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.cleanup:11 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:21 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.disconnect:11 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_server_update:14 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_state_update:14 +#: 729b005c366f4f4c822b8bc5e2c466e6 +#: fc569a544ec14408a5b129a075fe4692 +#: 2f5356a8850141ef89065109e7ae2978 +#: 785db422570a4def861b61e7bb64a738 +#: ae57b387bc984feab8f549402dd26036 +#: b9398b8c3baf4badaaaf3efe5a013c04 +#: 27ab56fb42554bcb96724dbd580097da +#: 72a72023fec44b2b8eafea45739fe0d3 +#: e232bb429cf140b3819b63938f75afaa +#: 4ab12054d12a4439898aeda79a0ffa04 +#: b914d46b053b4af4a12e99411ae4111f +#: 6a64640d3165434a8b13b147a92f5bec +#: 9a9bff1263ae418c8ae68c2e23e0b3f7 +#: 61534759588043399e891c911b5f3db3 +#: 0ebe6629f33548aca669b37b29a40845 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.move_to:3 +#: eeefd3d7363a4f8aa22085b12b874163 +msgid "Moves you to a different voice channel." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.move_to:6 +#: 69a8eb0817b44122afedbee3993cb7c1 +msgid "The channel to move to. Must be a voice channel." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.is_connected:1 +#: a86c97c8ba4b4ccf88f5143cc8aaf141 +msgid "Indicates if the voice client is connected to voice." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.is_opus:4 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.is_opus:4 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.is_opus:4 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.is_connected:4 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.is_paused:4 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.is_playing:4 +#: 767c2c6c49084e0caa82953c0237857d +#: 93a9aeb391524022b9bfb3b3a425106b +#: 28146b1e321f4406b70404110817a8d4 +#: 3b701c385cb547a6a11c23abdb4d3c10 +#: 53c368e1a52442cf8c4569c2730cb2b6 +#: 28552688575c4203b74fcd559f72956d +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:1 +#: 57fc8c271dcf4672a13c0d09af0bc893 +msgid "Plays an :class:`AudioSource`." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:3 +#: 6604a136571448a2b914b46492771b17 +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:6 +#: 298919aaef5348af8a476707b4450545 +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:11 +#: d3139e51c8ee42158ddcb51791fa2885 +msgid "The audio source we're reading from." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:14 +#: 38aa862e64a848fb9737c3be39577ce1 +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:19 +#: f15d43596eda4ec0b7250dc97d4b689c +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:19 +#: af1ade50379d4cd49b29f986f921795b +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:23 +#: 70a489db9279448f8f1e8eb85633e140 +msgid "If False, None is returned and the function does not block." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:0 +#: ../../api/voice.rst:0 +#: d007fcbd8757434b91652320071c7a09 +#: 1a1842ba50904c8e90560e0e2311f5e2 +#: 5b7803a2e1d247959c819a77e6831756 +#: 3876e4149e7941698b0637877bbf309a +#: 07b869f2652f4453880532931e0146b8 +#: 4a531e0220044095ab49b23d02bed1e5 +#: 1b7d21b2367044c79adb064f19e07f07 +#: cecb7dc4cdef46e082ef7c10e8821e55 +#: 97e4eeebc8584766b8472cc2fb858209 +#: 7e5e1c4e93574828be02e609a6ff2ef5 +msgid "Raises" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:28 +#: 9b4977b2920e46ef89d6fa086eed6796 +msgid "Already playing audio or not connected." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:29 +#: 2c32184f081e4d3091dc8b7027c90f34 +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:30 +#: e2707b00b2434be5ab663ddbaa2b1c97 +msgid "Source is not opus encoded and opus is not loaded." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.play:32 +#: bf26224880174deca44c625c5d7338ae +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.unpack_audio:1 +#: f504c11b5df84968beb921a3ecfefcfe +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.unpack_audio:4 +#: c0870bc727bc4716abb4c5cec379c3fc +msgid "You must be connected to receive audio." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.unpack_audio:9 +#: 4035b1908df1464298c43f79d47c7880 +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:1 +#: 22fb81c7c5d74f0098058bea9d24f593 +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:9 +#: 42a99458681a4c63a75ff3bae3d4a57d +msgid "A Sink which will \"store\" all the audio data." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:12 +#: 9e56273896d04fe18541e1faae58f269 +msgid "A function which is called after the bot has stopped recording." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:15 +#: 127ca437b79e49ec827c36b61535fe39 +msgid "Args which will be passed to the callback function." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:17 +#: 345367535c76470281d0aebec874d6fb +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:21 +#: 0129914a84dd42f78a94558d9c6d78b2 +msgid "Not connected to a voice channel." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:22 +#: c67a79b83ac64d21ac3835a3cba3003e +msgid "Already recording." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.start_recording:23 +#: a9cf5b332ce2468589c4b7661294abcf +msgid "Must provide a Sink object." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.stop_recording:1 +#: 603f2190da994c9299b2bdfa9d7daab8 +msgid "Stops the recording. Must be already recording." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.stop_recording:6 +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.toggle_pause:6 +#: 1d0feb804c5f4998a3a3b6ef09938280 +#: 3cffc9df03e94ceea9d7f785d5186ee9 +msgid "Not currently recording." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.toggle_pause:1 +#: b6aff79c184a48ebbed06c780190ebf4 +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.is_playing:1 +#: f78d41db49fc4152b00c5f70257e56ec +msgid "Indicates if we're currently playing audio." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.is_paused:1 +#: 76ef11546be5411a9f6964c8fd40fc02 +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.stop:1 +#: 078a6c259afe4409a4475f652b0e7f88 +msgid "Stops playing audio." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.pause:1 +#: 2216d420fd7c49c891491be2adb1896f +msgid "Pauses the audio playing." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.resume:1 +#: 73455b7f90e845ee9744e8c4eda03f86 +msgid "Resumes the audio playing." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.source:1 +#: ccad892b561941b9be6b0247b7d092dc +msgid "The audio source being played, if playing." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.VoiceClient.source:3 +#: 6eb8859de16c4f2fa84d7d41983cceba +msgid "This property can also be used to change the audio source currently being played." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:1 +#: 7f2243ca2fe440b791ce4cc95fd94958 +msgid "Sends an audio packet composed of the data." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:3 +#: dde0285d86d1429084b5817343862b06 +msgid "You must be connected to play audio." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:6 +#: 98badc5455d34bafb986af7ffbac9a2d +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:9 +#: 4a3d7f4095d54101b9925170f9af6e54 +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:12 +#: 08803b6e20e1411fab86e349e2e8e49a +msgid "You are not connected." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceClient.send_audio_packet:13 +#: 1ca03a935f684bf1a08536d41c8a9612 +msgid "Encoding the data failed." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol:1 +#: f2844a86f9fd4343a918929c51912b97 +msgid "A class that represents the Discord voice protocol." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol:3 +#: ae6cf4d84a8a4d8bbb01dc5d80f0bc2d +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol:6 +#: accd8a733e4b4bc2b22d8f2839ff52ac +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol:9 +#: df53f4cee6ed47d69868708c84cbdb80 +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol:14 +#: fa32e0685f39406384e72c7b9144baf1 +msgid "The client (or its subclasses) that started the connection request." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol:17 +#: e16ec818f25d4fddad575fd8d76afe2c +msgid "The voice channel that is being connected to." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_state_update:3 +#: 6d96f84aee2a482e9e9ad8b2ab7cce78 +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_state_update:7 +#: 1539ca4620934988956683793045c8fc +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_state_update:7 +#: 48bd947053204f28b7732886369ed779 +msgid "The raw `voice state payload`__." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_server_update:3 +#: 687e709bbbf0455399519510c189eb8a +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_server_update:7 +#: 6f7c2101abd34c3f8d08dba198616b24 +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.on_voice_server_update:7 +#: 56fb90b544e34e0da1dcbdcb68f8ee40 +msgid "The raw `voice server update payload`__." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:3 +#: 15f758c06e8545c5a207dd1ef50fdd20 +msgid "An abstract method called when the client initiates the connection request." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:5 +#: f3d9bcfb8fe844868a6a188fbbbb86c4 +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:9 +#: 6a93faa7b4814d8c8b06035acd8d27cd +msgid "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. The order that these two are called is unspecified." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:15 +#: 52fae36523ff4d64827f5ceb1a73e433 +msgid "The timeout for the connection." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.connect:18 +#: 63d7b7f77e3246d49c17215bf8b2ae7d +msgid "Whether reconnection is expected." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.disconnect:3 +#: 31402a8e837b49688a5441ed8cde2d8f +msgid "An abstract method called when the client terminates the connection." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.disconnect:5 +#: 661b5828612c4f76a98e93330261ea1a +msgid "See :meth:`cleanup`." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.disconnect:8 +#: 1ad7a2bd10dc4be5b03c46f6238ba93b +msgid "Whether the disconnection was forced." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.cleanup:1 +#: 62bf494b5c6748648e9814c9a0e0e749 +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.cleanup:3 +#: c99b55f1341a43eebc7180bc5b921ece +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "" + +#: ../../../discord/voice_client.py:docstring of discord.voice_client.VoiceProtocol.cleanup:6 +#: 454e51becc6b4aa98fd1b2b08c39ab38 +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource:1 +#: 6564199ed4364bd892d670b97afa2ecd +msgid "Represents an audio stream." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource:3 +#: cf25724172b4441abf2ff2192b8f32e5 +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource:8 +#: 50ac8d94d685498fbdad97a65885518b +msgid "The audio source reads are done in a separate thread." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.read:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.read:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.read:1 +#: ../../../discord/player.py:docstring of discord.player.PCMAudio.read:1 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.read:1 +#: 43f562d474ac4f259f5972023ab8ed5e +#: 67765f2befd54922806d108acabf11dc +#: 675add47c72f4f398833a67d9f40191d +#: e8e10259edc64c879644f1a9b201db6e +#: 9da1fbf002de4b63875e3031da399d50 +msgid "Reads 20ms worth of audio." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.read:3 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.read:3 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.read:3 +#: ../../../discord/player.py:docstring of discord.player.PCMAudio.read:3 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.read:3 +#: 622981fd3609493ab6b287bc25e013ef +#: 2d1d2696964848d29041d7ec229c47ea +#: e3a40f1afe8b4883b1c536cf435e7293 +#: 58f4c65835214f0080d92cb708c5d81b +#: 2b98519b39494c03b8c9200db1d6a6cf +msgid "Subclasses must implement this." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.read:5 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.read:5 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.read:5 +#: ../../../discord/player.py:docstring of discord.player.PCMAudio.read:5 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.read:5 +#: 328fd72ba7f5414bbe2da58a9d00b5df +#: ef4ae5ce12c34064887e8328ae00b0a7 +#: 028b3a5cfc9d4c03be777fa025bbe90e +#: 491f29403af749d29f65817e991ad0d8 +#: b76c8c55963741aab1253004def750a9 +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.read:8 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.read:8 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.read:8 +#: ../../../discord/player.py:docstring of discord.player.PCMAudio.read:8 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.read:8 +#: a029ad04c1064ffda7caf9582997d2d0 +#: 48d370c95fa84a8d9de06c098830922e +#: 88f35ac8d9da447cb483a6b809e12c79 +#: ce3e1975fc974db2a114fe56549b6bc1 +#: 810791910e94420d82963ba06eef394b +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:0 +#: ../../api/voice.rst:0 +#: 6d76efb6ea404cfc981cd37f90e8a27a +#: 2f7252b244004532b0e908a77d38f6b8 +#: a6c6108c14654afc85fa299bd2e2d9d9 +#: d96374d07b1e4b93abdc3984aa2338a8 +#: a5945b62e8394839b7db89093a2c291d +#: dee8f0cd7c114339a6b21b0ebfe53d19 +#: d98c0854b3da4474b294f6d01aa940ab +#: 0a9acaf5f7ce499198d57d6632bf9596 +msgid "Returns" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.read:13 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.read:13 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.read:13 +#: ../../../discord/player.py:docstring of discord.player.PCMAudio.read:13 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.read:13 +#: 799b9590449a4eddb9fa665c3767dff4 +#: 0e2bd56840a142639a45c2d166f1fce2 +#: 371829d959f044f3ab0a82196195c124 +#: d98131655fe1461c83ac202b820ea844 +#: aa1dffcc093e4cd4a6794116ff9b5c9a +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.read:14 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.read:14 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.read:14 +#: ../../../discord/player.py:docstring of discord.player.PCMAudio.read:14 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.read:14 +#: febad82c34014a1f9680a5e84ccb5ccc +#: 2305960da46f48f6a95b6593d34c1aac +#: 22df61c5286d495faaeabfccc2cfebb1 +#: edb97626a1724e93b55584e44a7e4a44 +#: c886363fbf8a470a99ad6a99bc3760a8 +msgid ":class:`bytes`" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.is_opus:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.is_opus:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio.is_opus:1 +#: 6d11292606384b7aa2726296be6efa43 +#: f933a708c92045868a9caa15f8015d92 +#: 441627e81b294f4e9712c623a70d3e00 +msgid "Checks if the audio source is already encoded in Opus." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.cleanup:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegAudio.cleanup:1 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.cleanup:1 +#: 29e9300bf3e24bcfb0045c59fbaf93ac +#: a6544280b0d94cf092b8461e4608eee8 +#: bbac2762b28c49e18fe322f9591280b4 +msgid "Called when clean-up is needed to be done." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.AudioSource.cleanup:3 +#: ../../../discord/player.py:docstring of discord.player.FFmpegAudio.cleanup:3 +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer.cleanup:3 +#: 1b31cd5b6fa44ef8b1ed95d966efcddf +#: 557038e96505404694c861b87a5076af +#: 6d8eb37aadee4ea8ad39f10c48e9956f +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMAudio:1 +#: 454c3a56198942dd91cabdbdac97d3e4 +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMAudio:5 +#: 3044964ce61e4da5a28ead256611eb9a +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMAudio:7 +#: d92892017cd542f78639516b8b416117 +msgid ":term:`py:file object`" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegAudio:1 +#: fce50d418e1a49a4bb5c684f1e1ac753 +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegAudio:3 +#: b29e6aec2cbf4e37a9f46fcab1071fa1 +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:1 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:1 +#: 2b8ab32191da45798a3bea06b09cad1e +#: 6bfee17debc94240a86d9d31ee71e75a +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:3 +#: 7abcb38cf7144b9a8a0a350e7c64fc27 +msgid "This launches a sub-process to a specific input file given." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:18 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:7 +#: 91b78b16596942698136b40beb390887 +#: 40161dae93a5444592d3b38086c0bbd5 +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:11 +#: e1f5be3b142f4c60996984791631220f +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:43 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:16 +#: b18d98307af54783b5509b299f373832 +#: ee979d778a514578afa221436f337ae6 +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:46 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:19 +#: f5acb595a683400e9c9246fb48d1b253 +#: 21ce334995aa4931bcc3071260ba9289 +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:50 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:23 +#: ef5575dc64624e11a2c1919f793f55d6 +#: 374ca46ede85471e8c4796af9955f286 +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:54 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:27 +#: 452e450be3f544b7bbb5e50227089276 +#: 66021a8ed46e44e0ad3a8d872261a124 +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:57 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:30 +#: b8cd968276cf470896aa34aaa8858222 +#: 79971e5fc9e6447cb18c13317097b842 +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:60 +#: ../../../discord/player.py:docstring of discord.player.FFmpegPCMAudio:33 +#: 732d7e069def4da7a6802b95b9c16ff7 +#: cfe616123f1744e89d7e549cdae8baa1 +msgid "The subprocess failed to be created." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:3 +#: 9dc5129d03a44f96a1113824ad234006 +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:7 +#: 1eb0937b784c4f5a8744e7c5d6627f73 +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:22 +#: 4097804468e6405b98c9e9a7b816e268 +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:27 +#: 6012d88e487c49daa51b2a8bf0029b6b +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:30 +#: c6bb03f73f714f3696b1d71832aa6dd7 +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:30 +#: c802b41b6d7c4883b9a394014bcc25c0 +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio:38 +#: 09a411b1eaf34bc69f3bfbeb340af7d3 +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:3 +#: 35f1693ec571498197d28d5d66518671 +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:7 +#: 41e640e3d8f14aa0a4cc4e58026ee763 +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:9 +#: e38b99fa71bc4e8492387ca26352a623 +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:16 +#: a2d8c7a8d4774b2f9fb7fd738de46c8d +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:19 +#: e14ec376d42c48c681eb7482ec2bbc94 +msgid "An instance of this class." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:20 +#: 91039cd3f1a646fd93a389dc3e904682 +msgid ":class:`FFmpegOpusAudio`" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:22 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:16 +#: 3053ad3525814d9b9594f43d09f6897f +#: db6a307d1e144376a9adfd32cd860429 +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:23 +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:17 +#: e0336172704945ea9e77c9f6e061ce96 +#: 6cc842547fd3432eba8e2eee96e8c792 +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:26 +#: 15fd471b8f1d4008b6dcecbdd944d531 +msgid "Examples" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:27 +#: 5bb31401509a4000a5ac24d2e4fccdcd +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:32 +#: 24863a6c90b147e3b3513066b31da439 +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.from_probe:38 +#: 5f3cfac1b6574d86a3845b06726769ea +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:3 +#: aa8415fa4b594f4ea8734411049ff2fe +msgid "Probes the input source for bitrate and codec information." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:6 +#: 07a37479b48e47c2942cbb79eabfe372 +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:8 +#: c1a1cca3f2da464795bf0e0b01c1e012 +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:10 +#: 23cde3d76b3a4182bfe7f7d9b665280c +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:13 +#: 00c5fe83aed044d5ae6120952dda1239 +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.FFmpegOpusAudio.probe:14 +#: 4546934e84b647eeaab2d6b3fb42f1fe +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer:1 +#: e96c63f1e2ae4283862ed283aa007033 +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer:3 +#: 73a707c638464a5e95fc9ad86306f669 +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer:7 +#: 35d32bf867b441eba8a6e6873210647c +msgid "The original AudioSource to transform." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer:10 +#: 5a7f62f4887b41f892643cd0f9875629 +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer:14 +#: b25b8f369b194c0588eff0b0bc4b849d +msgid "Not an audio source." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.player.PCMVolumeTransformer:15 +#: 04045b3895c64369adf33b5585c7a5d4 +msgid "The audio source is opus encoded." +msgstr "" + +#: ../../../discord/player.py:docstring of discord.PCMVolumeTransformer.volume:1 +#: 3618db04a8bf4ade8f80c7f6badc6dcb +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "" + +#: ../../api/voice.rst:51 +#: ed47d49eed814b809c78cc4bb0732cac +msgid "Opus Library" +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:1 +#: 22e8938e9f34444eb6d6894735b125b8 +msgid "Loads the libopus shared library for use with voice." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:3 +#: afe64cf940e5486696ce22d97e7f0a0e +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:6 +#: e0503cede5cf472bb7f490681eae194b +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:9 +#: 15797ca758624cdd9e5a2bf2903b9c1b +msgid "This function propagates the exceptions thrown." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:13 +#: afe43f95849942968874292393a7fcc5 +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:20 +#: 1a73eb3b82294411b6413c19cc7f2dac +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:25 +#: cb3839f007134b0494f90eceb2d946e7 +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.load_opus:31 +#: 327817cde81f4049bd3f39b9d09ab729 +msgid "The filename of the shared library." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.is_loaded:1 +#: e8dbd72423d7404eb8cc41395b1aca77 +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.is_loaded:4 +#: ac6afe44563847638f4fd78ddaf09561 +msgid "This must return ``True`` for voice to work." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.is_loaded:6 +#: bd1e2285c4c64e288ecf523960eb60ef +msgid "Indicates if the opus library has been loaded." +msgstr "" + +#: ../../../discord/opus.py:docstring of discord.opus.is_loaded:7 +#: 7e7adaac9a18484590ca895cd62bf0f4 +msgid ":class:`bool`" +msgstr "" diff --git a/docs/build/locales/api/webhooks.pot b/docs/build/locales/api/webhooks.pot new file mode 100644 index 0000000000..0841c3b040 --- /dev/null +++ b/docs/build/locales/api/webhooks.pot @@ -0,0 +1,1396 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../api/webhooks.rst:4 +#: 9e237853b6974d7a8ff25dfe852a6d11 +msgid "Webhook Support" +msgstr "" + +#: ../../api/webhooks.rst:6 +#: 33c0738132ee4d2cb28a05405a8c229b +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:1 +#: 54762879672a46deade9460a7b561492 +msgid "Represents an asynchronous Discord webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:3 +#: 6130f4c50d5c45348a4b8700b8749b08 +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:6 +#: 2802a4be3d954ea6ac5ed96edb9a9ee4 +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:11 +#: dc823f1bd57a4d748871bf198faff87f +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:14 +#: f867b6076f3b414b863f2e50bcd71f69 +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:26 +#: ec565b094bc14d95b4f18fd1cf8b70d4 +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:32 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:9 +#: dc8818835a2a415e91e864c41617c1f6 +#: 0f99b9ceb45740a89e4a7bc12c91e1be +msgid "Checks if two webhooks are equal." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:36 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:13 +#: 57e5d2ff7e674b70b1cf5a365d0aea05 +#: 603bc49aeff04503875d0e8b59b50e85 +msgid "Checks if two webhooks are not equal." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:40 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:17 +#: a29f89c3884241678664d1eee50c1e62 +#: f67c6e3c0c584db6b9a8f1fa014acd8a +msgid "Returns the webhook's hash." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:42 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:19 +#: e2c2d969ba244d58ae00978769243829 +#: 2f5354a5e28d48a18d49b336417b9908 +msgid "Webhooks are now comparable and hashable." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:47 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:24 +#: 9ce39e01859943ada5b04b9feca0629d +#: 3ed2fd63f3bd469a8e02a4173568af01 +msgid "The webhook's ID" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:0 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:0 +#: 05226483bba4422686ebd5e1759e03eb +#: 867fb1d0956c45a688a9bccd4d0e39d2 +#: fcd7cc29aa6642c69b150c09448a7cc2 +#: a175b7d3b082438481a88e170e3b56ee +#: f89922b9fe28493d8b9865e2221e51c6 +#: c62c2bc7e9dc40df90d661c4f5495935 +#: ef7491e47bbe4bc6a92a3f236a1243b5 +#: 8ec37bba20ef472bbd5212b0e31c1f90 +#: 072b763bd6954d3887f1377e27a1cf78 +#: 9ee22664aca94669b7f1f42eee35554d +#: 7f6a88023911415b9572f52fd6745bf6 +#: 977e58a364e54f12a0e7ab82f7953c1e +#: f3f076cd019940dbac5d2fde2b488ffb +#: d78e692debe24339a7306250c641697d +#: 1c5ffd2d40474cd69c8be7d2369fa2bd +#: d7094652b36144c0bfebb152aa3641a5 +#: a7888f4831c04a9d8543768f6e1124bc +#: 399c74a3ba7a4edf8f85c0dbfa06b384 +msgid "type" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:49 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:26 +#: 8b68ef30b943469eb2d5429f2eb295e0 +#: 184ca03bc9b9433d9d4dddb9314f7e79 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:53 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:30 +#: 9d87af4b6a0a46fab4c6bae84cf5672d +#: 23d4eb2113df49e59ec53bb2ab1ec13d +msgid "The type of the webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:57 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:34 +#: bbca3d9eb4cb4108a6ce498ea4c5e5c4 +#: 6528be88792745c6af85081b08b61ae2 +msgid ":class:`WebhookType`" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:61 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:38 +#: 1953f318f067447d92c2841b3eee95f0 +#: 46f8d685eb114e3a8bafa7a33030f297 +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:64 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:89 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:41 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:66 +#: 9fe496235d7840c398a8639d961be6d3 +#: b51554387f2146e2a8d4785717942922 +#: 5649761eac8c4357bf37e0ee72ed10a8 +#: 39cd7a6cc7614da0951dcb4fd2941973 +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:68 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:45 +#: 002478d171954c4db75c0f7a56587338 +#: 3d66f509729149c8bbac1ca7158b6d1d +msgid "The guild ID this webhook is for." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:70 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:76 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:47 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:53 +#: c32911d397be4cf89ac379159b2f6d57 +#: 5d430eaf86a048df9dec47af3be3b9b3 +#: 34f98475bb884d7a8a4d349034bec7ac +#: 1b1adc2b50f9480baf153d1c675d23cf +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:74 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:51 +#: 5df24bb44a7644778c46c75edf333f6f +#: f66a9b011d8744dab4f5db75a3354512 +msgid "The channel ID this webhook is for." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:80 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:57 +#: 4219fda06ac7415fafeabc7dc92505fa +#: cedfbbf319e24b1eaf5c66b0d7c90479 +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:83 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:60 +#: 86343165e9814a6f82275ef89a1bf72b +#: dbf3fdf8db6f4a6aaa23cdd208067234 +msgid "Optional[:class:`abc.User`]" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:87 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:64 +#: 1b3eba38201c4dcb92a79961d72806c3 +#: 8bc7666887ed4603a6232806b47a4c2d +msgid "The default name of the webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:93 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:70 +#: b53f00434bb847d8a9a05f1842e7e1eb +#: e84cc4c1e7a6427c9575f5db957431f4 +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:98 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:75 +#: 1e87802b937d4ba987fbf4449c3ddd65 +#: d52a790cb9e7434e88c6340f52a355a2 +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:102 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:79 +#: 4334d13ae69f4f6bb91c758ff189fa68 +#: 6b7f2c1f04ab47fbaccb2d8da7fe625b +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook:107 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:84 +#: 2834bba8c9944769b38d885305df7bba +#: 8de51b6d44fa4737ab540ddd87c185e5 +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "" + +#: ../../api/webhooks.rst:0 +#: 8d2ed0e6e1f04493bea6cde65a3b803e +#: 65d278375a114be1ad47244bad120056 +#: aeac642079b24da39a55b480d7f11f21 +#: fca3bbdeba264d51b10896fc9ba953ab +#: 89516d3e3b6e4664bc4cb33c0a15da00 +#: c1637efd86d14f01a5ab87bf13ff0a9a +#: 4b8e494f55ce467a83a0dcf8564c7128 +#: b6ec5afcc4844a89a37ff06b1fce8728 +#: dd2dadd1bc354860a8d3bfd963efa172 +#: 65b91ca4c67a4c6e9e223bd4baa39cb6 +#: bab986faa9b84b6eab3766e5dc4f65be +#: 2a6dbf19fec0401da878f409a1223406 +#: eaa61028dd334053a6054d950e115f67 +#: ecefa989d6bf4423817f8af3a9760b04 +#: ff360a3fe64d475c8bb0223c151e15b2 +#: 5a1d6647cea44a9d9b3b953b03be20a7 +#: 729868ab3cdb4d64b21427008b0e502a +#: bb88186e3c324dc9ae129eed893ed95a +#: 81a7bc9a0f9b44f096f6bc43e2b732df +#: baac432c9cbe4b4dafaea5b2e243ef22 +#: 4741bbc19cc448e7a02b3f14ab40082c +#: e2fc7b85f0a54cf2bc9583210cbc562a +#: 47f64a1ccedb412d84512fcc3de54af9 +#: b9fbe6d21b144e38a3b8bddecb0cd260 +#: 2a7ce2d14e6f4d43b8c18dff80d69818 +#: 8d70d5eaacf6471eb3976571a766f5ac +msgid "Parameters" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.url:1 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.url:1 +#: 80def0fef9c746b99c1c6e318bf3e746 +#: 018110b6f40d477fb9910915d427bea0 +msgid "Returns the webhook's url." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:1 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:1 +#: 8a221f21eb4f46038c4abbfa44db1805 +#: 7060f29dd7d1487eb9d7de8d9442330e +msgid "Creates a partial :class:`Webhook`." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:4 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:4 +#: 4255bef48a8b4c979d2947ded336c0a0 +#: 0592a0870448481e81add88499153b79 +msgid "The ID of the webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:7 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:7 +#: c26ef7a4a733461089c7cc53d5264381 +#: b4570f53785d4f84b44fbd4766c2c1a4 +msgid "The authentication token of the webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:7 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:10 +#: 169396a9a2a44033b16911dd71982574 +#: 6ba95c33a1c147bcae02dd0fb1ad126f +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:7 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:10 +#: 5d12b915f2fe409e9134257c1fce1245 +#: 0392881964294df0adb890e3948ef49a +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:14 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:17 +#: 4059598390a3493db4f0464693630d6f +#: f56210d48c314e5ea934feb4104820be +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:14 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:13 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:16 +#: 16b667fd36e34ab399f839558bbc75ad +#: e533e1fc79ea4a9d894e7d4a9696bd95 +#: 064c5bda421e4afe8052ed60c0c4571e +#: b89e527c039d4ac4bfb0a83251f0555f +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "" + +#: ../../api/webhooks.rst:0 +#: 9ec5fe0284294ee9a5fd8a662fc09e1d +#: bbb70b8fcf224bc2921b14e7a306d2f9 +#: 1d8bc33d958e4f5badb9f73b71839d26 +#: a69a2f45e4084666a57a753f4330b119 +#: be0a1ab8a2254c6fbb9f6bbbc1297311 +#: bfbbab2561944cb7815d1807ed46bbf4 +#: 6e5d965f5a2349cfb6a0986aa9c2b95c +#: a5c71bce8be04ac48397306b296e5072 +#: 741af853c2694404a8ef56d3c940e9cf +#: b3acc75316bb4d99b9aaf08576b709ec +#: 3b3abc39ee1844b0bb02a7aafaee63e2 +#: 12571487fd124a6eb98a51b7920fe0e0 +#: bfccb2081a444eabb4f9950ff32a1f1c +#: ca07b32fc1e442589857078a4fc9fcdd +msgid "Returns" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:20 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:23 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:20 +#: 5ef04c727fa84405952bca3ed5f64830 +#: 36c2aaac7c1c430ab6e86cbec6344fd5 +#: 36f56ffb485d46158134af3f3b72d49e +#: a9420415c08a419f937591ef861c05bd +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "" + +#: ../../api/webhooks.rst:0 +#: aa5695c654474111925b8ffa2a2c9e8b +#: ef9b57f90dde4f56a2ccfe907ae6f69a +#: a4b300f6a3534ff4b69575c05386db6f +#: 0061f3f374b842f89f81294919e7b332 +#: 1c93c2d555534835830b25ff5e8de975 +#: b7c09fab2c2a41bbbdccb0e3bd1c1551 +#: cac2e021160d479aa7aadb818c8ac8e2 +#: e4cbe6ca2eb842c8a8500ec39b672a77 +#: 3524ae7c70fe448da373ac18c91541b4 +#: 6699173541df4cf0b2d64dc1b9e32155 +#: 0e582d4c476141f2a5dfb615c6d02191 +#: 29a4d73f6f654bdb95f59cdb8283b986 +#: fd3f5c1073b64aef85851f24f370d2a7 +#: d7c1fa42b71d435e943f6847ae61ff6d +#: 829bc489f8b4466ca10e8cb4aba00216 +#: 21a35e447c374a698149c8cee0fb0f2e +#: 41dc47e592ff45e9804d032c9de5487c +#: 3a0de5cee95f4f069e27cab0d5bd36ad +#: 17f68472dcba42fe8f0af144bff7693b +#: 6543b487b51f491093b0a7518bdaff2b +#: 5e09707da35846aea09a89d60f3c1644 +msgid "Return type" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:21 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:22 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.partial:25 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:19 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:22 +#: 6abca8c4a9b04a5886c172663749bb17 +#: 601902981989407daf93c9fcbb016b17 +#: 059596f78a2a4bc9a8f8dc47c0d72545 +#: 0ccfcf6854e942f9b2da580aab110e81 +#: a0f0f04098a04adb95f6e6abc687ad8f +msgid ":class:`Webhook`" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:1 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:1 +#: 7149d5e4edae46c987d2af3fcb4ebd5f +#: 62db58ad3bb54bedaf637267dc5a1fee +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:4 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:4 +#: 7c5b01df522d472f80c1a9f78fa193e0 +#: 4f9eae91845a4c379810ccd3aad3cc56 +msgid "The URL of the webhook." +msgstr "" + +#: ../../api/webhooks.rst:0 +#: 735b30610b2d466fbc18d717607b17af +#: d518bcc0541b4feb921292e91cf26a84 +#: 3a5fb2ca5abe4ff9a7d5135aa47cb20d +#: 28e9e782dcad43c79f853109d7b92168 +#: 636efb42801a4e0ab427b4b82d656c51 +#: fcb19d9c341241e4bf05a85eca2c35fa +#: 63a102f3ac9b44338a3a33437fe21c10 +#: a319616061d3489dbd1dd48a4fee5c2d +#: c8082c50852f4964a1162bc2b99d28b7 +#: 44a3c53d49f14587bd21ab912ce74102 +#: a4b28b0d5cbc42bc82da2d2681de25c1 +#: eb44bdd7071642c4a7ccb7218511163e +#: f80dfcc52ab24a2faf78d0c8ae0f3e45 +#: e9c9c989994a48a696dd689ad339f5bb +#: 43431d37eb44432ab097b3c8bd6eebaa +#: 783798e7c763484396703d61f4209dbc +#: 8846e8c581084bd88c4286cea6adbada +#: 3080f4116f3e474a964564620d33d546 +#: 595a6c1517874a3ca096bfc82e4eb846 +#: 897b5cd4992649b8a43bef0460638485 +msgid "Raises" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.from_url:24 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:21 +#: fd13911f4fb04a6a8c733764abc6c038 +#: 022c94d40db7432aa9cf6f59be93c970 +msgid "The URL is invalid." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:1 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:1 +#: fdac30d2f8df4bb79aeba08a36bff1af +#: a07e1c7805a6456eb5fae0f8e1d4e9a7 +#: d750fbe688d34b7aa89e230293149b20 +#: 98db0506d8664e9883d7d98092812915 +#: 99fc496d0ac84fd1b6254e9e641ae26a +#: 5b3ab39649904daa96a5df16fe43ada9 +#: 65809090934a42c385643aa8161f76c5 +#: 3c670e77e3014641b345ff9edcb30e48 +#: 5abfca86c9ce4e8ba1b1400f5b041625 +msgid "|coro|" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:1 +#: 06063b46c8fa47e5aa54f5814933d47a +#: c00659f5b83642ed863a181fe19bf563 +msgid "Fetches the current webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:5 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:3 +#: 128848745b104f83b614d254f783f575 +#: fd68769bc4214fb9b2ab6cb849349357 +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:11 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:7 +#: d8056223bc7b452588e155d2a25a0e6a +#: d017065daedf4887aaa434a7884526ba +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:11 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:22 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:16 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:9 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:12 +#: d2c9412a9a9540379a2cf7e75301ed37 +#: a5e2023263e54bc9b57bc000f2d35cb6 +#: 7bc22bff719a48868bb779b991673888 +#: a4d0c0aa071342de89544bd3e9a7b773 +#: a3b0757465ff40988f39230e3583ac71 +#: 2678d85a6195438ead791df56aba8df8 +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:20 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:16 +#: f0d7a0df843d452d9308fe6926d375e4 +#: 273850f6ead544f3b039a7fc9a36a66b +msgid "The fetched webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:23 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:19 +#: 1042ce16b0744e7eb7b3e2ba09d38b89 +#: 9581e77c1dfb4ff891ce35b50293fd58 +msgid "Could not fetch the webhook" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:24 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:20 +#: ac9d6dc8a5e94357a2e6169cb134288a +#: be725566b076491d86a4709022702a7c +msgid "Could not find the webhook by this ID" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:20 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch:25 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:16 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:21 +#: 2b80475f32b64b1cb7d4b297023aeabe +#: 4fb58470918e432bbeb2fc2fe82f1a7f +#: 95dfabf235cb4b9aaf48598815661b67 +#: 99bdd9cfc74e4f4c8aa76af7a2ece6f9 +msgid "This webhook does not have a token associated with it." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:1 +#: b98fb63484e64e238162e965364b8f0e +#: fa3754c578994f009aeddfcebd10e908 +msgid "Deletes this Webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:6 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:4 +#: cd9be7a2d2974b00948398efa1c82331 +#: 41d7fe3477004c43900875770aa5e2b1 +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:6 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:4 +#: d1cc11d81a834d5684d1741fa4437b2e +#: b038db542f144f3495620fc573cdad90 +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:11 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:22 +#: 4cde6ae633004199abdcb5396fe41a15 +#: 1044d0d698e040529c945421e1302e6e +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:13 +#: eddf95f3a67e4642bc193431f42deb08 +#: 45efc6b25d14483b87436e3ecf9fd1f6 +msgid "Deleting the webhook failed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:18 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:29 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:14 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:26 +#: ee60ed9a009c4fa09656abd081f253cf +#: 536f14d418644251b5ff1b7e5ec01288 +#: e1f647d0018b4547ad3f3ba402104247 +#: 3b285a7aeb9f427daeb7bd5e53ff5a86 +msgid "This webhook does not exist." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete:19 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:15 +#: 85e69036989b4731be5731dfcd41306a +#: 71f5a227d7c44b61a6eef981e23dddc5 +msgid "You do not have permissions to delete this webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:1 +#: a670d75bf6e24f2ab26632be661e51c2 +#: 89935539aa134092ac26de7c313688be +msgid "Edits this Webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:6 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:4 +#: a6532d34b6a9471cac961393098701e6 +#: e242bdfc90f84563bb08b4a578fe643a +msgid "The webhook's new default name." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:9 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:7 +#: bf637234fa6c42e8b1aa7f77b6d274d2 +#: beac2aa1cdaf423b85631336044144f5 +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:12 +#: 31a547df48b649ea82615ac1728ab8e3 +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:12 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:10 +#: 5b3c6db14fb245dfb10e78a5d84c0838 +#: 4f9bd57c61d94fd3a99ab909c3c3191a +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:13 +#: 6bdcdf3cdaae445cbdfd9515165491ee +#: a2237b9b7cf84433bed33ef1d5ea7785 +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:13 +#: 493fa2a1bfc14309912031da714d1d75 +#: e92ca34e199847288c58367a4b032e09 +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:28 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:25 +#: 4f747bf4be1a48ebb06ecc3d8dbf1852 +#: 7b3a47d8d38b48809a95ebfc7dc82b14 +msgid "Editing the webhook failed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:30 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:27 +#: a968a18c0a7541e08b3c4153b1a98a97 +#: eb556b3e565e4e8090be3be7eecbde0b +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit:32 +#: 42d37765dc084fecb1b5885e6b7e4abe +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:1 +#: 04fff9e0abfb46a4904b63e06103f1ba +#: d7b2819abc7d4e308bec9e2c19ab9261 +msgid "Sends a message using the webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:5 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:3 +#: c5e799be8ade40e995feec52b7c333a0 +#: e939b3c1c0d244ec8c03f29cbd41840e +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:7 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:5 +#: e72113abad1b4144aa87980fa08569cd +#: 1b6688110e8b417d9bee52af7467dbb0 +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:10 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:8 +#: 0831d821492945b0a04d2f131a91cf8c +#: 63ec2bb4d5414b35bd9c625c36c49c81 +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:15 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:13 +#: 0a8bf2ad589c441980181bba4eb1bfa1 +#: da60f05732dc43f5958cf2351d73c9bd +msgid "The content of the message to send." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:18 +#: 497b38600d5b47be9c1ede2086ce1e43 +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:24 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:21 +#: 75fd2675f2e44032be336c27e95f0425 +#: 329f894d60e8418babd0615535838d79 +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:28 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:25 +#: 415ad7a79b724742b603af8dfd4a1d34 +#: ed3035289e594e30a8faada7130a8ad3 +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:33 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:30 +#: 57b92cca2540465fa3d09723f5190ae3 +#: bdec6f4cafa148e3918db01822d37174 +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:36 +#: d3e1180ae6b24785be8cca3925c9f1d5 +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:36 +#: 2073461bc84348999d9dc4844da44c6f +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:31 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:44 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:21 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:22 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:33 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:14 +#: b3a137449ab44e4aae5afd8b4c86108b +#: d67be620b0914c15b92a79cd02cb6319 +#: d5da797dde68461daf15dbe5cbc015df +#: 7c6e08154ecc4ca69dc4a064b23455ef +#: 7c30236d94224488a57c2332448cb6e6 +#: 3362b95bd934419c9251381914e90628 +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:36 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:47 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:26 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:25 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:36 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:17 +#: f80272a359f441769b153488a3dec6eb +#: 8d9cff7ca166417db59a8343a80ea9f0 +#: 34064a7e9e464392a61a70d956a57dfb +#: 9f5ad9e7cee54181848d2e2db990f038 +#: 27765acd077d4a3b9e30f2fa38359bd7 +#: 7b7808e744a04aadb3d5e42c0f305be7 +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:51 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:40 +#: 7964d458be5e410b8d83db53a682494d +#: 7c09cfd88d8a4109851ed05a46ae1e58 +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:55 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:44 +#: 33169aeae0d04196aaa9cdba77c5523a +#: 4129e6e69a744c9f9011157faafde27a +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:59 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:48 +#: 5ad6432e50fc4f0b8637b5f042754c8c +#: 38548540ca534e32b82858dc7e869d49 +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:59 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:48 +#: a46016c132a14ba9a0b18b8a658f78d0 +#: 25a24ffcb57243e3a6aac660e58f40df +msgid "Controls the mentions being processed in this message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:64 +#: 5ace0f92a6434f1d842e58de5574440d +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:64 +#: a2103cbca1a146e8b97c4431646b37c6 +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:72 +#: 1091b11fcf1a4d4da35ba6893f4e8510 +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:72 +#: cb9cb046f73843b5a03fe43fd7beb042 +msgid "The thread to send this webhook to." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:77 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:58 +#: 7a187519aa2940c9905505a4d17452f9 +#: ce59182ca5ae46a7aa023fb15a759cff +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:77 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:58 +#: cec0156f9702482e87281e9c7d4b5888 +#: 66b29f938d6744b793c75e144a609c1b +msgid "The name of the thread to create. Only works for forum channels." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:82 +#: ba1f4ffdfcad4ef7b7b25ce1bcdec3a8 +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:82 +#: e8959512ab2c4d488d564a97603a1a45 +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:87 +#: 2e5f0ac61f574217a527c43908d96ed6 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:91 +#: 37f414a7bd1b4e68b81070bd20ade192 +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:91 +#: dc0e0acf8e3b475f9037531ba1341c62 +msgid "The poll to send." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:96 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:66 +#: e0b22d0c21d741aa88a1390bece4595d +#: 198202cf1d9c4722873b76551c23a666 +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:97 +#: df72ee848bf246b3b47dd71ddf117195 +msgid "Optional[:class:`WebhookMessage`]" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:99 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:69 +#: bfbf2157a6bb43c4b27470ab17ae6444 +#: 7f8a38b849e445d6ba889e6cd458100e +msgid "Sending the message failed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:100 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:70 +#: bcb74264d1f94f878a08026994728ba7 +#: 14297b15634c4d1c8e59a5505bef80ae +msgid "This webhook was not found." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:101 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:71 +#: 57e9e2c90b6345d78dbd1c5a212a020a +#: 288565c3281349929137c3cbd84263c1 +msgid "The authorization token for the webhook is incorrect." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:102 +#: 1a57e7a87a114e19b05434cb16f239d9 +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:103 +#: d0ae47fd31c846c989dafd4048aca5c0 +msgid "The length of ``embeds`` was invalid." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.send:104 +#: 24d33e686b2541a7991efe6371d53143 +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.avatar:1 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.avatar:1 +#: fb5c67f696704406ada2e50fc20c3b5a +#: b698d80096f7403ba6c9c5f4f56f8cc4 +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.avatar:3 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.avatar:3 +#: cd4bafd5cdd748e68418c0fe6a77903f +#: aa7e7e77e9a6417bbcad10b68769112a +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.channel:1 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.channel:1 +#: ec155bb383b3493db6d592f118ef175d +#: b0e5df787afd4134a9f27c14cfa0806f +msgid "The text channel this webhook belongs to." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.channel:3 +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.guild:3 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.channel:3 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.guild:3 +#: 49f080cdd3004ec4a04e580041816ff8 +#: 022253ecc6494569a37a64e3989de332 +#: c66385e00fac41c189ea7d82d85d0db9 +#: fd82aac7debd473aa87a4ac0207e9c07 +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.created_at:1 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.created_at:1 +#: 2bb647713cb24bc2b8fc3564e3c354d3 +#: 51ccbb8f14b1435a9cddb90967145461 +msgid "Returns the webhook's creation time in UTC." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:3 +#: 3ebd689f276a43cab2c962219ed428bd +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:8 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:6 +#: fe03e2f34f3949aebe2b2c2aeb8f376a +#: c416c824f58646938cc10f1ce57ed672 +msgid "The message ID to look for." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:14 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:11 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:12 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:9 +#: 54c1624e152d44a1b49022a5be33c6ed +#: c5e6600bf7394a67aa8724a86d9a8276 +#: 1b801aa3da694b1fb0a41e006f67db48 +#: d3b17fa5d4074e1db1ae04d6532cc0b1 +msgid "The ID of the thread that contains the message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:14 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:12 +#: 764b8caa264548efafbde9aa61f2bd13 +#: 6ab628d937b6459aafb88ff400bca888 +msgid "The message asked for." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:15 +#: 3d4d1bd7b0fd48aaaccf3c7f3168d80d +msgid ":class:`~discord.WebhookMessage`" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:15 +#: adc0d8e7494b4b28a27689f4642a99bf +#: 7207fe3b68f64f8a8c140da81aa900da +msgid "The specified message was not found." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:16 +#: e527d204d3684032bdc3fc71333dcb56 +#: c26879650f5d433c814783394ac3ecf4 +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:19 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:17 +#: 3b2a515c5b8448499ac19916bebbd377 +#: 92494eb4200f4da19d323bc789631de0 +msgid "Retrieving the message failed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.fetch_message:20 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:58 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:40 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:35 +#: 1776e8cab52642f6a978d91bbf648938 +#: 15d7ddb34d114f7a99c69037b8bc39fa +#: 5b05a764b5944c69861df40833dc56b8 +#: 4d11b05888b04d598188a4d96d126217 +#: c26a2b16d5d94bd3a65a5149327152aa +msgid "There was no token associated with this webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.Webhook.guild:1 +#: ../../../discord/webhook/sync.py:docstring of discord.SyncWebhook.guild:1 +#: 52d58c37da744b78934404b08a05d5ef +#: cd00141236a54abb9ac3b84eae0a578b +msgid "The guild this webhook belongs to." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.BaseWebhook.is_authenticated:1 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.async_.BaseWebhook.is_authenticated:1 +#: c46e8899998c48fdbcc590fa47717cef +#: 53da81ecbe5a4d4bb63f4b4f776c0d41 +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.BaseWebhook.is_partial:1 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.async_.BaseWebhook.is_partial:1 +#: b6d6fa1f6451445c81ef826852a24c77 +#: d39d405809f54a778e5db34e04b3fc95 +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:1 +#: c1b9dd3681ee4a8584c4cd79ed1d4977 +#: c7eadbacb5ac4096b9b9bada91e833d2 +msgid "Edits a message owned by this webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:5 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:3 +#: 9971472f245b415aaadbb8956285f297 +#: 3eefa1a227ea4f96b8d847a3a507fd6e +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:10 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:7 +#: 2d67b9ca76344875adb757cf10cd8511 +#: 8af6785c98bc455e81d47c71f41501d8 +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:14 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:9 +#: 5a82c8e80c41438cae3f995cf46fe2d6 +#: a9e4ea6e61aa408ea880bd28b50cb2f8 +msgid "The message ID to edit." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:17 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:11 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:12 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:4 +#: 1bc930d388a74891b13d38e6263f9603 +#: ed34e4fc95fb47acbc1577c836be845a +#: 7cbd742ce2934ba58758ac9b9bd76dad +#: 9271f9c8ad084cebb3ed15f2dc0c2dc9 +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:20 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:14 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:15 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:7 +#: 20312965a9b94e4fadbed393402e9263 +#: eaf9bef906a241228685837428b088e2 +#: 85dd5e157ee54e66a6e28d78c61dc7bd +#: d8f2037a79c5458fba497be4b8086130 +msgid "A list of embeds to edit the message with." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:23 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:17 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:10 +#: a427e1e0136e41efaf57f2ffdb117ca2 +#: 75f6749124da45c898b2058893bbcf1b +#: b9494426284345ffbacd4b90e110c519 +#: 76fc68e7bd934eaf8fd9d73f92e66aa4 +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:27 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:32 +#: 6db59c19de404a34aa15bd6d90797c9b +#: 1261a847eaa24dc5a94da52ea090d093 +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:31 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:21 +#: ec50809a68e94bfcad75d7052dd6e7e9 +#: d973a268394c4f73b7f8296b53b752a4 +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:36 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:26 +#: 2c367cdfe97d4ad0ab9138716b92addd +#: 0648f797465242acbb5ad4fdefade223 +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:42 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:38 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:29 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:21 +#: e35ae8c47975407d87c8b79a106b96f8 +#: 67a35408e50b4bed92ac9a3f9e48eea7 +#: cb74411660504cafa28540cb949c8383 +#: 8a2bb7cfd1b6467c9c7274a714affc32 +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:46 +#: 18109d101eef4900888ecf232da08764 +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:46 +#: 1f6dedbbd77046aba39f88c90128c87e +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:53 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:33 +#: c8e07f2912274c8690eea158d709400e +#: 3ffcd5e8c19c43a893c62a8a241bb38e +msgid "The thread that contains the message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:56 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:48 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:63 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:25 +#: 0e58b4588c244b2795b9a25162938b69 +#: ba994c7eba3048d7a5330aa66e6223a2 +#: 13349759eb4d4dd8802d0bed0cb95c2b +#: 67c4905f360444e286aa49fcfa2b1b10 +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:59 +#: c6dc3ee101f54698aeca7d6697305461 +msgid "The newly edited webhook message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:60 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:52 +#: de7030ddb3b642eab991d82d5465c6f6 +#: d23329b2f76a4159a4087965b502de6e +msgid ":class:`WebhookMessage`" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:62 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:54 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:36 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:31 +#: d84d5cea09fe494b9d14bf275d256589 +#: 2911c1f972ab4f1288075c647b177fe6 +#: 6071f2c259c143f7bbd0333a204b45d3 +#: 6b5a68c2d6384ab18f5c9c56e376ce4d +msgid "Editing the message failed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:63 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:55 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:37 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:32 +#: 97fab4294de84554a109d5cd2c95a4bd +#: ad39ad3511944866a16078d24a752fd5 +#: 614c1f2626bb459b86310fb14a6766a5 +#: e85aed7299274aa8a607ea5efecdcd76 +msgid "Edited a message that is not yours." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:64 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:56 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:38 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:72 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:33 +#: d13931c4ffe84322bebc37b53d758401 +#: 05ce44d9433040619f0f644b8b548189 +#: 6eac1c3b7292418d9bdc9468d9fd736b +#: 5cf2e6a486c747f695d24c1dd923ea49 +#: 0ee40fbeeaed44cd89a5c938b564313c +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:65 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:57 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:39 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:73 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:34 +#: e8b9d1bf3500443ca1d1f7af7e64ab46 +#: b3eab12f8e87462abedbcfa904a6e147 +#: 4fc8b66942cb4839b20e5560afa7501e +#: 434643453fe94810856e9d1711091f11 +#: efe8437bf03e4fe99966973bbda26d5e +msgid "The length of ``embeds`` was invalid" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.edit_message:66 +#: 2edea985551c4f80a4872296178d9704 +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:1 +#: 5c9da7d28dce4982bb84fd12dbbcecb0 +#: 15dea039ddd742c2811ae0ba4a4022a6 +msgid "Deletes a message owned by this webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:5 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:3 +#: db8c1747493a459087e6b3b081ac0d5e +#: d5c47868890b4d0cafffe8e6d913036b +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:11 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:9 +#: 234aadd0447949f7ab7b01771bb782e7 +#: 6d1658d87fd344908d39bdff91044acb +msgid "The message ID to delete." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:17 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:12 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:15 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.delete:10 +#: f107745635884aef9d7b126413adaca2 +#: cf6413728c3f4601bd518d470cd6aa52 +#: 08193ea844e54abdbec4d40e9e9ec844 +#: 091a2a3956304512919d443b2dfc9323 +msgid "Deleting the message failed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:16 +#: 9be5c7332c714e99ba44b7e8ea204674 +#: 922e88d327a343d08e8a5cea1070c9c1 +msgid "Deleted a message that is not yours." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.Webhook.delete_message:20 +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:14 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.delete_message:18 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.delete:12 +#: 56f1e679fe0149e591ce572cd88e0d1a +#: b41bf4df2b96442ca315d4798262ea41 +#: 8e0ca3a0c65c4e00a88b8200783d8b3f +#: 28f726448b1a4165867a73648669ed22 +#: c46e105b902f43849250fbc1da24ed70 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage:1 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage:1 +#: d71174eb01124078b8485ecf5425ec05 +#: 50e22ee16b5848178dc9b232382ae7e0 +msgid "Represents a message sent from your webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage:3 +#: 1c655677226f4830aedb23fb6f1837a8 +#: c733980eb8534faf99bb803c964524c3 +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage:6 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage:6 +#: 33093f55fb9f4195a31a391a774f446b +#: 8da32e9c443f44618a2d11ad25586f60 +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:1 +#: a2e790bc16394691bb3ba3168ece42f6 +#: 8d76438ac0a449f096840bc580b21c7a +msgid "Edits the message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:32 +#: 465ce5ddd21b444aadbfef12107dcd6c +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:42 +#: 40f8551587c84121952e24867cb7b103 +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:42 +#: bbe0cec8d8fd472a8414d1f64c871ac9 +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.edit:51 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:28 +#: 0d4acea514904c8b82ce6ba49a8d5093 +#: ea51e461eb4b4e72921bd90176465112 +msgid "The newly edited message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:3 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.delete:1 +#: 1512b9e2d2e74beea6be22bd4a805a28 +#: 16f52ca9ace24fb38a6dd193b112cc64 +msgid "Deletes the message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:6 +#: 243b13bacd334531b0be3088f532d8cd +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:10 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.delete:8 +#: aba4600cb0384affabc1e3f706cd8796 +#: 96b6ad26e0cc4979923a463e329f90b3 +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: ../../../discord/webhook/async_.py:docstring of discord.webhook.async_.WebhookMessage.delete:11 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.delete:9 +#: f04e4a0b1cbf4f3daade0da691833e50 +#: b83c32c0775b4ad2903f16caa49b75cf +msgid "The message was deleted already." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:1 +#: cc1d33c5b8a84a29876ee006017500e9 +msgid "Represents a synchronous Discord webhook." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook:3 +#: d85dc67cc7ae41b887606e9f7b9836e0 +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.from_url:7 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.partial:10 +#: b9c19a7dc665479f9dd4388f7783d712 +#: 840907faec8c45c0952ebfdb3349d390 +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:23 +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch:17 +#: 4d5326bd667b4df2bebe23caaa5cc701 +#: be82f96debd24cffb17feed64f30b7e9 +msgid ":class:`SyncWebhook`" +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit:22 +#: e975ac9571684c7395ba098a454e852b +msgid "The newly edited webhook." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:16 +#: f39da5d0640d48a48876001d0283dff5 +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:53 +#: 99c8f76e0bc64453945947d86b5cd9c4 +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:53 +#: f63e656d3dc04732bf975f2c2a580042 +msgid "The thread to send this message to." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:67 +#: 4df5c9ff55674ecfa020102b402e3263 +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.send:74 +#: 785676d5bd474edb981f1c1aedd4a3e0 +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:1 +#: a709c1c1f25a4ac4a42ce45594910a31 +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.fetch_message:13 +#: 09f5ec74a83d4d6e94100ebb8ed78e9d +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhook.edit_message:44 +#: 6a516df32c234c288fde2ccfabba3553 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.edit:29 +#: 0b0928b5ee704cc3b030ef3abee75509 +msgid ":class:`SyncWebhookMessage`" +msgstr "" + +#: ../../../discord/webhook/sync.py:docstring of discord.webhook.sync.SyncWebhookMessage.delete:4 +#: a6721a5618a04f06a9461c10e2957767 +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "" diff --git a/docs/build/locales/changelog.pot b/docs/build/locales/changelog.pot new file mode 100644 index 0000000000..bd87c55371 --- /dev/null +++ b/docs/build/locales/changelog.pot @@ -0,0 +1,1904 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../changelog.md:1 +#: 538c3900cdf645fb81a5016feccfc3f1 +msgid "Changelog" +msgstr "" + +#: ../../changelog.md:3 +#: 59b7befcb03e461784d4c83ce3619000 +msgid "All notable changes to this project will be documented in this file." +msgstr "" + +#: ../../changelog.md:5 +#: 219721d277fe48a5bba5899c9aa17a84 +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "" + +#: ../../changelog.md:9 +#: caecfc688ef04c74afa24c4ffba6275d +msgid "[Unreleased]" +msgstr "" + +#: ../../changelog.md:11 +#: 65e6b786129440299583dbd277d24b45 +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "" + +#: ../../changelog.md:13 +#: ../../changelog.md:92 +#: ../../changelog.md:218 +#: ../../changelog.md:370 +#: ../../changelog.md:416 +#: ../../changelog.md:493 +#: ../../changelog.md:632 +#: ../../changelog.md:734 +#: ../../changelog.md:841 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: b7b09db1f222459ea627182ee02bb3ab +#: e6a71d32000d434fa7ce9b921f5a6ce2 +#: d34f59dcc403445e82f66be8bad68ff8 +#: 4d54664ae9ab41c1ab356955ac6b68f2 +#: 6bcbb4611e3b45efa9fb77d5aff7f3a8 +#: 14be88bdac9144cba5cded9594e6a15f +#: 9695c43a248f4236b7638d68394bb3df +#: ba4fa843370c467fba35c3f6e174679f +msgid "Changed" +msgstr "" + +#: ../../changelog.md:15 +#: dd5ffa5028be44a282b2ac8924972f1f +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "" + +#: ../../changelog.md:19 +#: 2ea9c95bdc934b7bbbe972ad30512eb5 +msgid "[2.6.0] - 2024-07-09" +msgstr "" + +#: ../../changelog.md:21 +#: ../../changelog.md:128 +#: ../../changelog.md:389 +#: ../../changelog.md:462 +#: ../../changelog.md:517 +#: ../../changelog.md:533 +#: ../../changelog.md:601 +#: ../../changelog.md:702 +#: ../../changelog.md:791 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e3cee7c103834d619455e315115e015e +#: 22c7b05970fc45aabbedeee35a9d469e +#: d27e1d29a61f413baa749c7b3e883b04 +#: acb05350771848c2a7505b4ff7c8165f +#: 77e67d76e6c049d1bedb8ec3714dc806 +#: d7c6b1bfdd1b4b6793b1794179919de9 +#: 68fc3ce1d4ea4d8888dd82661eac9a45 +#: 9d1a10a94e8a4b34b142677dc0b8ce63 +msgid "Added" +msgstr "" + +#: ../../changelog.md:23 +#: ee1185f07728432d90acac5a21dbec45 +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "" + +#: ../../changelog.md:25 +#: d88667c6f5dd4c8789c7f597cbcc5b58 +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "" + +#: ../../changelog.md:27 +#: 9e482633187e4f5c8fa1c1970503e1e5 +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:29 +#: 73f8d143b51e4d75ba380e16b08e6dcb +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "" + +#: ../../changelog.md:31 +#: 479db9f659c0426e8a65b42d3e86c344 +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "" + +#: ../../changelog.md:33 +#: f56f60d027c34c1c96d0aae7504b6cfb +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "" + +#: ../../changelog.md:35 +#: f9988dfe7b23484b9ba4809f9bb95d74 +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "" + +#: ../../changelog.md:37 +#: 9ac720e03f6142e4ac4e0b6de0379c55 +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "" + +#: ../../changelog.md:39 +#: a8616b9a932f4606b85de797fc499ba7 +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "" + +#: ../../changelog.md:41 +#: 1c4f1fdcf05c43aba319d2e797df1b3e +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "" + +#: ../../changelog.md:43 +#: 44550f6f16534a32aae326204a92f827 +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "" + +#: ../../changelog.md:45 +#: fc13286743f845d19a7cab16bf48759f +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "" + +#: ../../changelog.md:46 +#: 90ea693eff9d4606a4c04da0d022efe1 +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "" + +#: ../../changelog.md:48 +#: b0e2a36ec1474943ac739d3a17c79296 +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "" + +#: ../../changelog.md:49 +#: 1acba6757cf74da68c1302cbed5100b5 +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "" + +#: ../../changelog.md:52 +#: ../../changelog.md:260 +#: ../../changelog.md:376 +#: ../../changelog.md:426 +#: ../../changelog.md:444 +#: ../../changelog.md:455 +#: ../../changelog.md:483 +#: ../../changelog.md:509 +#: ../../changelog.md:522 +#: ../../changelog.md:565 +#: ../../changelog.md:579 +#: ../../changelog.md:586 +#: ../../changelog.md:594 +#: ../../changelog.md:642 +#: ../../changelog.md:748 +#: ../../changelog.md:854 +#: ../../changelog.md:891 +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 36320a68a7be48cdb466743318a24879 +#: 0ae21632f67d49a5bcb10f8897d19815 +#: bc22f6bea0824c5ebeb8aad04888444e +#: 076ccfc1687644a7b64374cf8ee924f1 +#: a957b6679e48434baa3212cadc42fdd0 +#: 74ead2fed24a493ab50a2a02ecde8695 +#: 5bdca01d0ee945f0990c37a1d3cb8abf +#: 29044081cce048b988b0ff0e479ece5a +#: 91437edeac0d4fe58954d46abca59fe7 +#: 0c05bfaabf8e4288b1ae92b9c4cfd545 +#: 71b5e653121f4a9bb584c2b52e16e5ae +#: 0ef3a94ee4ed47ef8fe049b88dbfafff +#: 3c5e2f5b4a0e42fc830133769818500f +#: 43b1907f4c414c4f8be3436f8c9af992 +#: 1928e9e6b35948c7970e017f42134807 +#: f2ea712f38804c818f8c2adb39289c36 +msgid "Fixed" +msgstr "" + +#: ../../changelog.md:54 +#: 7ae94f40f23e4016ad3583ccfa6c742c +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "" + +#: ../../changelog.md:56 +#: 4b405ed8d3174be9b4285624ed111389 +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "" + +#: ../../changelog.md:59 +#: 21ab8865343f4f4a95f4e6fb558290f9 +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "" + +#: ../../changelog.md:61 +#: 9d69c269ed79425ab60e09f9b5e2ee4b +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "" + +#: ../../changelog.md:63 +#: 7c13dbe9d92449f4b9c00b812d03c2df +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "" + +#: ../../changelog.md:65 +#: e2f55b08f081473c867e0e027c8cf264 +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "" + +#: ../../changelog.md:67 +#: 8b40273b3f334953b36d4e726019a6d1 +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "" + +#: ../../changelog.md:69 +#: 384fcb271c8a4306af44212e2fe7c84d +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "" + +#: ../../changelog.md:71 +#: ef1005168cfb44b6b8f2055793ee601d +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:73 +#: 7869c915b3f14f07a5bf3a4475157805 +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "" + +#: ../../changelog.md:75 +#: 2ca84f4587674ad0afe6b33699c76e45 +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "" + +#: ../../changelog.md:77 +#: 878001efd2cc45dead2ee90071cecf01 +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "" + +#: ../../changelog.md:79 +#: ab1ed3f8483145bea5b24fad05b5648f +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "" + +#: ../../changelog.md:81 +#: 55d4ea1bd82340bcb8c23812b5179448 +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "" + +#: ../../changelog.md:83 +#: 447daa976adc419590670e36e28bb3e7 +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "" + +#: ../../changelog.md:85 +#: 6861ca06f105483bbc97a0928b422c0a +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "" + +#: ../../changelog.md:87 +#: 0fe082c072ae49f581e23f1910056ed8 +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "" + +#: ../../changelog.md:89 +#: af74ad39a1b34e1fa81b9328b1540ea5 +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "" + +#: ../../changelog.md:94 +#: c07af9a4c1fd4892ae280f8510c5161f +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "" + +#: ../../changelog.md:96 +#: 552325d759394d788ef5af5370590ced +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "" + +#: ../../changelog.md:98 +#: 3131b38385834d42af1359ccf1b8e9e8 +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:100 +#: 38abe22de33943b2b3ff6091e2c3779f +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:102 +#: b9cb2502b6574133b0e491e40833d831 +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "" + +#: ../../changelog.md:104 +#: 8824c580ff8d4c56916af84ce8747115 +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "" + +#: ../../changelog.md:107 +#: effae79d201c4ca0a0e3943743dfc1b5 +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "" + +#: ../../changelog.md:109 +#: e81f05b83a034f228f9c15b92cb49ffc +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "" + +#: ../../changelog.md:112 +#: 0edc039bb53f4074aa6c2ef293fea3ec +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "" + +#: ../../changelog.md:115 +#: ../../changelog.md:253 +#: ../../changelog.md:502 +#: ../../changelog.md:743 +#: cb54f87243e542f6bdc3742c26311fa6 +#: f90b82624e9c47fbaae9a6fdf03079a3 +#: c03a09b5abb94ca197751b2889cdd7fa +#: 0703024c87484fca874a2f213178dc86 +msgid "Removed" +msgstr "" + +#: ../../changelog.md:117 +#: 3d4304bdaaab400c8603287757c112a5 +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "" + +#: ../../changelog.md:120 +#: 313a2244ebdf459f93aaf6f06a33ba51 +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "" + +#: ../../changelog.md:123 +#: 4d2440e51f8346a5894152a1e3ac6351 +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "" + +#: ../../changelog.md:126 +#: 6a0c9c7b35c54520a5ae4547c8382a6e +msgid "[2.5.0] - 2024-03-02" +msgstr "" + +#: ../../changelog.md:130 +#: 60a5bb23d20a46b29897ff0b90b12c68 +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "" + +#: ../../changelog.md:132 +#: 41d21b3f7d62487ab79ebdd02c96a138 +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "" + +#: ../../changelog.md:134 +#: 7556f2bd45294900b546bcc8bc4cc855 +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "" + +#: ../../changelog.md:137 +#: f83032a1921645c2b52208a2cd0d80f5 +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "" + +#: ../../changelog.md:139 +#: 3dc5ef7302d8499f8f3b37132cad769a +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "" + +#: ../../changelog.md:141 +#: b26f8600ddae4ee7adf165d713c4c520 +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "" + +#: ../../changelog.md:143 +#: 4c1d702a0fd34e05b931d0149b6d2e88 +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "" + +#: ../../changelog.md:145 +#: c424e9e7177746638415ee55b969a529 +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "" + +#: ../../changelog.md:147 +#: 40bb9fff0d8f40258b28fc994bd31db7 +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "" + +#: ../../changelog.md:150 +#: af0b802a69904f288b90a992f9990483 +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "" + +#: ../../changelog.md:152 +#: 15c6731b295e4b0b8cd7e1340c6ea545 +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "" + +#: ../../changelog.md:155 +#: 07bdc41bd4bd46c58757b555174359fc +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "" + +#: ../../changelog.md:158 +#: cb7c3646df2f43cda8a3b34f6d418af1 +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "" + +#: ../../changelog.md:161 +#: 9d551823bcc84935a681e5d58adf5111 +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "" + +#: ../../changelog.md:163 +#: c3f3b5baaf6d4bf3a3deaa582d1444a1 +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "" + +#: ../../changelog.md:165 +#: 6b5e8bebd67e407cb1bac3eba6d5726b +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "" + +#: ../../changelog.md:168 +#: 00f359112aa840c6816d75ab0587ad80 +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "" + +#: ../../changelog.md:171 +#: b21a35a76bac4e2d9ae6a07c7a3a696a +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "" + +#: ../../changelog.md:173 +#: 74a9e9832d4c4a6fa8734778209c65e4 +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "" + +#: ../../changelog.md:175 +#: f2ec2163c71c48b9a21d3bd75fff5064 +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "" + +#: ../../changelog.md:177 +#: 85eb170585cb42f598e263c7b60a31e0 +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "" + +#: ../../changelog.md:179 +#: 7959cb02aa124f1b82dc5adbc03e84c5 +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "" + +#: ../../changelog.md:181 +#: ade46dafe4b44075b82a661d0516635f +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "" + +#: ../../changelog.md:183 +#: 62effd5e105647abaa72932b226b2ce3 +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "" + +#: ../../changelog.md:186 +#: 343032650b214f1eb5ffe747555db443 +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "" + +#: ../../changelog.md:188 +#: 42ed7327fefc4b54872053b06dc3d128 +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "" + +#: ../../changelog.md:190 +#: 72df647a50374daa932d83ec54fadbce +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "" + +#: ../../changelog.md:192 +#: dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "" + +#: ../../changelog.md:194 +#: 3b2c11ddd69145ff9b65a168d5f20f04 +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "" + +#: ../../changelog.md:196 +#: 199637891bab425183cc270c18b0a5db +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "" + +#: ../../changelog.md:199 +#: 4620d311330a4c04b6b2b7b4de078652 +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "" + +#: ../../changelog.md:201 +#: 90293effcc9a4c0cbe82b4d50f4e2604 +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "" + +#: ../../changelog.md:203 +#: f1c971d407c9454c85b3b93e5be66b65 +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "" + +#: ../../changelog.md:205 +#: 4f80fa16c23e41c19ad5f98cb4764338 +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "" + +#: ../../changelog.md:207 +#: 5a3c464362f34da28e03de42a50c57e9 +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "" + +#: ../../changelog.md:209 +#: 4d570b6175b846b7b096d02a18bf1053 +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "" + +#: ../../changelog.md:211 +#: 6e961ffbbb9c4e43a860891df7ed6fa5 +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "" + +#: ../../changelog.md:213 +#: ee841b6b671d4856b893970d196abd64 +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "" + +#: ../../changelog.md:215 +#: 2608a06bd147422aa67260fc397061b3 +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "" + +#: ../../changelog.md:220 +#: 62c9fe1681134e18a42748c961355bce +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "" + +#: ../../changelog.md:223 +#: 3f5b3c8765174ac6aaefd7493e389482 +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "" + +#: ../../changelog.md:225 +#: 13ea43a34662409ebbeff058009c3b87 +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "" + +#: ../../changelog.md:227 +#: f55ea4e73a9c4391a525b1222242d5f5 +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "" + +#: ../../changelog.md:229 +#: 67638ee2ed544e56b98bc22db8fea02a +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "" + +#: ../../changelog.md:232 +#: 97745879546247a08a47059715774c5b +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "" + +#: ../../changelog.md:234 +#: 7088fa09f41846e5892a329b6bcd8349 +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "" + +#: ../../changelog.md:238 +#: ef5d6a731203421cbcc58f074cd546f0 +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "" + +#: ../../changelog.md:241 +#: 64963eb32d2d4c1c9c9ffee138a09b38 +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "" + +#: ../../changelog.md:244 +#: 89f503d44fe24e02b7b7b79a544e6188 +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "" + +#: ../../changelog.md:246 +#: 56adce95538e45d49665b92cda9b9641 +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "" + +#: ../../changelog.md:248 +#: 3bab78924e3d402698ce98a72ddc2c78 +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "" + +#: ../../changelog.md:250 +#: ca59a473432d434ca872411f9c66003d +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "" + +#: ../../changelog.md:255 +#: 4e49791b54b244ee933a82f9e04437e2 +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "" + +#: ../../changelog.md:257 +#: ca26e991f22d4e3d8c6e230f0539ed50 +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "" + +#: ../../changelog.md:262 +#: 0b59939241624a3193186fcb744f65f7 +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "" + +#: ../../changelog.md:265 +#: 1d99b367a7c04345a26271b2bf0023e2 +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "" + +#: ../../changelog.md:267 +#: 7ed9c8e2674b4eea8e16efe2e7916c19 +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "" + +#: ../../changelog.md:270 +#: 26359420acd84d13b7ec8078c585de73 +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "" + +#: ../../changelog.md:272 +#: 579b45e396024f64912f08f8cfca16ec +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "" + +#: ../../changelog.md:274 +#: 18befe9e39544595a7a2036d48d19470 +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "" + +#: ../../changelog.md:276 +#: 084a586848d74bfeb5f2ceba591293d0 +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "" + +#: ../../changelog.md:278 +#: 83b3c68f47754e73ab88708fc8a2ffb2 +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "" + +#: ../../changelog.md:280 +#: a3a4c596689748fe814636d674727419 +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "" + +#: ../../changelog.md:282 +#: 1b761f69f40f462b8e4ef9190b7fc1d6 +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "" + +#: ../../changelog.md:285 +#: fae4d3fe283e4ea396db05e19418ce5d +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "" + +#: ../../changelog.md:287 +#: eaf24d26663f4e6380db8ad8f0172cbe +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "" + +#: ../../changelog.md:289 +#: 84c4af7114434feaa1fecfd718dc694c +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "" + +#: ../../changelog.md:291 +#: 47c28724914e4fc9a18709531f47c88d +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "" + +#: ../../changelog.md:293 +#: 1e8ecddada0440e8b28a3c9be07f3423 +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "" + +#: ../../changelog.md:295 +#: a148a83edd1f4f7b845a87b1a987c516 +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "" + +#: ../../changelog.md:297 +#: 1aa560acbffb489b9c0495cf0b24c36e +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "" + +#: ../../changelog.md:299 +#: 1770b0d4e2994906acfa30119c7eb482 +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "" + +#: ../../changelog.md:301 +#: df13f489e5fa4cc48904626e021c027d +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "" + +#: ../../changelog.md:303 +#: 269b54a1fd2744a7866a615c72ace4a8 +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "" + +#: ../../changelog.md:305 +#: 86b89f547c6b4a358f432cf4d398f640 +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "" + +#: ../../changelog.md:308 +#: 2fb12f31fbda4dd38ac5d75d20c470af +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "" + +#: ../../changelog.md:310 +#: 2b542989e4474b1497f08ac6f19f99ed +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "" + +#: ../../changelog.md:312 +#: b5e55bb544e94272b3397bbc0e072ec3 +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "" + +#: ../../changelog.md:314 +#: 3de52ce55e8b41e2a5815592bb6257ec +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "" + +#: ../../changelog.md:317 +#: 8fa8ea140ced4a4fa64c9d534c7f71d0 +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "" + +#: ../../changelog.md:319 +#: cc7d5fa68e994d34aa693f5bb2f1ffd0 +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "" + +#: ../../changelog.md:321 +#: c17344409e9f492a8fd6b8c55ed614aa +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "" + +#: ../../changelog.md:323 +#: 12ea4e48fc584a9c87ef676eeacfcd07 +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "" + +#: ../../changelog.md:325 +#: 9c6fac01828f43d9a61aee72f31c1792 +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "" + +#: ../../changelog.md:327 +#: 7327cd43427e488999e090c78cac0b79 +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "" + +#: ../../changelog.md:329 +#: d458144f63124e12a6e0d9f8f9cb952b +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "" + +#: ../../changelog.md:331 +#: 8f18e8d005b1496387f152f3df8662b7 +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "" + +#: ../../changelog.md:333 +#: d15ec1bf07934c9d86604965290c99bf +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "" + +#: ../../changelog.md:335 +#: 2eb6e57c0a364efd86ffa8096f540133 +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "" + +#: ../../changelog.md:337 +#: 5b2283d5d5e640999855ad3042fc5e6b +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "" + +#: ../../changelog.md:339 +#: d3b786079fea46bc8786e6b5154c03ed +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "" + +#: ../../changelog.md:341 +#: b25e60c5a037415e80243abad7f9df8f +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "" + +#: ../../changelog.md:343 +#: c5f685e545da4356aeb4de2f2f183a84 +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "" + +#: ../../changelog.md:345 +#: 17ed8177c40a476fb48f4d90f37837c7 +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "" + +#: ../../changelog.md:347 +#: 5114e2e8307349088415bbbee6af60e4 +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "" + +#: ../../changelog.md:349 +#: 25663b9a9dd74370984ab38a6e476f27 +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "" + +#: ../../changelog.md:352 +#: 2541f029d7454ba394deb4a01dde2485 +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "" + +#: ../../changelog.md:354 +#: c9faa78167bc4750a0684c8cbbd64895 +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "" + +#: ../../changelog.md:356 +#: 1658273ee130473d997c5e510ecbc0fa +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "" + +#: ../../changelog.md:358 +#: d8a3e43d20754ef092f3f8d19b138f0d +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "" + +#: ../../changelog.md:361 +#: 099b69ec664541e0a8052975795d65e4 +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "" + +#: ../../changelog.md:363 +#: 80ef1c27fc7b4fa48c2db376d01949dd +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "" + +#: ../../changelog.md:365 +#: 8ef80de7fad747f88bcdb50c5d39b51b +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "" + +#: ../../changelog.md:368 +#: b4456318b5c84fd28244fb8d7f496360 +msgid "[2.4.1] - 2023-03-20" +msgstr "" + +#: ../../changelog.md:372 +#: c8c94e0963114de48a89fd2659fc7763 +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "" + +#: ../../changelog.md:378 +#: abf8d94bacef493cb4fe23a98730bc28 +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "" + +#: ../../changelog.md:380 +#: 2cdfa2779b0e4b8f9ab4144401a89802 +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "" + +#: ../../changelog.md:383 +#: aaf94f670e8340a5b177fe6ae162358b +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "" + +#: ../../changelog.md:387 +#: c101984320c34ce99992f9fe847e0e88 +msgid "[2.4.0] - 2023-02-10" +msgstr "" + +#: ../../changelog.md:391 +#: 617814850e83401ebf06752624c50095 +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "" + +#: ../../changelog.md:394 +#: 7fd8831246324c0ba80b842014371a93 +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "" + +#: ../../changelog.md:396 +#: b33dbeef25f54b92a273ab153577e67e +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "" + +#: ../../changelog.md:400 +#: dd48eb67d9264c6f9c8c34eff1f8dc21 +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "" + +#: ../../changelog.md:404 +#: f5ee939eced64359a65e9e63f4c50556 +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "" + +#: ../../changelog.md:406 +#: ee535bdbc1cd4d558c6fa469a5b0d528 +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "" + +#: ../../changelog.md:408 +#: fa69515bb7074d55a6b5abe0177aac95 +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "" + +#: ../../changelog.md:410 +#: 17096d6218ec43a3bbef7cb4f25eead2 +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "" + +#: ../../changelog.md:413 +#: 9f7c5aed80f847d0ba8cec2331f54a86 +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "" + +#: ../../changelog.md:418 +#: 571ca9ff303e4bd994e1179a0cadb5b3 +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "" + +#: ../../changelog.md:420 +#: 464da00a553d4cfa9819fc2f0f8e848f +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "" + +#: ../../changelog.md:423 +#: 39533606d2e9446793b556a39247934e +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "" + +#: ../../changelog.md:428 +#: 416058062bb045498b964ebab56acb3a +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "" + +#: ../../changelog.md:432 +#: 8818ab33e8604db2877b20c041af6723 +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "" + +#: ../../changelog.md:434 +#: 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "" + +#: ../../changelog.md:437 +#: ea5b04755aae4a53a625348b5d5f945d +msgid "[2.3.3] - 2023-02-10" +msgstr "" + +#: ../../changelog.md:439 +#: a66717a0773c4de7be264d65696be04e +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "" + +#: ../../changelog.md:442 +#: aeae11c1ec9e4f4ca20b998880bc4e5b +msgid "[2.3.2] - 2022-12-03" +msgstr "" + +#: ../../changelog.md:446 +#: c49932aeab584576ad0d13c3a8073143 +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "" + +#: ../../changelog.md:448 +#: 7b22f35de99640918b24cf129a8708a1 +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "" + +#: ../../changelog.md:450 +#: b940bd229d2b4e6891eec2561e8e815c +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "" + +#: ../../changelog.md:453 +#: 1b92099482524c32940e7b2962f78c68 +msgid "[2.3.1] - 2022-11-27" +msgstr "" + +#: ../../changelog.md:457 +#: 25bce91323db4cbea6c7e706497a5fbb +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "" + +#: ../../changelog.md:460 +#: eeb4225156bc403cb9430c14142f0030 +msgid "[2.3.0] - 2022-11-23" +msgstr "" + +#: ../../changelog.md:464 +#: 1f69a42547d7413d81ac3be425763eca +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "" + +#: ../../changelog.md:466 +#: faba5859b8964373ba18f34a5830b58a +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "" + +#: ../../changelog.md:467 +#: b5eceae1a70b4eb08fd9c86ed7d3e253 +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "" + +#: ../../changelog.md:470 +#: 99a675fe67cf47bd8552026dcb0d7680 +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "" + +#: ../../changelog.md:472 +#: ee8b90ba67724d46a3efd5335b0a029a +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "" + +#: ../../changelog.md:474 +#: 0d7ed354cec246a1884bb62b4a30455b +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "" + +#: ../../changelog.md:476 +#: 3d7339c7a4b34b419ca2b385c99b2160 +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "" + +#: ../../changelog.md:478 +#: d92eb373bc624dffac6f0e1dc5e5fc95 +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "" + +#: ../../changelog.md:480 +#: 2a37ee55e00e4e68b43bcf62c0b6c16b +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "" + +#: ../../changelog.md:485 +#: b96a634b3523470b9c6321bfe1d0d386 +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "" + +#: ../../changelog.md:487 +#: cc90297f0d5b47c7b04fcc3561b2ee44 +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "" + +#: ../../changelog.md:489 +#: 6b8dca9744d84dd1afaf7c1f2c36bbc2 +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "" + +#: ../../changelog.md:495 +#: 90671804020b41aba86f0d541ac50a3e +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "" + +#: ../../changelog.md:498 +#: 7421d3fe662f4595af3381037136c502 +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "" + +#: ../../changelog.md:504 +#: 160d0b3650564e17b6e25a2cf3bebf73 +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "" + +#: ../../changelog.md:507 +#: a11bd7aede7844c6b417faeae902549d +msgid "[2.2.2] - 2022-10-05" +msgstr "" + +#: ../../changelog.md:511 +#: c79e6592f08f41d387a756efa462ff76 +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "" + +#: ../../changelog.md:515 +#: 804d49d35a1a4950bb1844cb14422c04 +msgid "[2.2.1] - 2022-10-05" +msgstr "" + +#: ../../changelog.md:519 +#: 96fc9a6acc3d412eb0e4fe8e93e6bce4 +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "" + +#: ../../changelog.md:524 +#: 8a3332dafa3c405198ec6819e0e4d90a +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "" + +#: ../../changelog.md:526 +#: cdff853f73034e329f46051f2eee14d5 +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "" + +#: ../../changelog.md:528 +#: 6e43909d03324ff994e8e0c5521b4ab8 +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "" + +#: ../../changelog.md:531 +#: 7c216775f43c4a4283eada7e4c5566be +msgid "[2.2.0] - 2022-10-02" +msgstr "" + +#: ../../changelog.md:535 +#: 887646ff61cc484c8fb5a1b77f4705b3 +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "" + +#: ../../changelog.md:537 +#: 1cab4dd437fc47059e14c6622b309200 +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "" + +#: ../../changelog.md:539 +#: 628dc16b78d7462d9e752a6fd5c34f0d +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "" + +#: ../../changelog.md:541 +#: 62fc2f7a9b7647efb0eaeabe6e18b131 +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "" + +#: ../../changelog.md:543 +#: 86674d77e2244a8f9a2273474845bc45 +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "" + +#: ../../changelog.md:545 +#: eaa5c0bba1a24094995e8bb0a52b7ca0 +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "" + +#: ../../changelog.md:547 +#: f3da627f546c4aebadcf3322597750da +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "" + +#: ../../changelog.md:549 +#: a38f4867cf0f404abe8d1ad795209e2d +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "" + +#: ../../changelog.md:551 +#: 26da248bd5434e7680514324dcafcc7b +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "" + +#: ../../changelog.md:555 +#: 5b535d4b52244097b05ec474ea2121c6 +msgid "Deprecated" +msgstr "" + +#: ../../changelog.md:557 +#: baabee44115f413aa4b2ab853daa0515 +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "" + +#: ../../changelog.md:560 +#: b2bc78f7cb2248968d7778e804059d3a +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "" + +#: ../../changelog.md:567 +#: f1a6ff967fae4e4ab7aaa03fb71040ee +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "" + +#: ../../changelog.md:570 +#: e24fad332ee74561882cb0fe5683d373 +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "" + +#: ../../changelog.md:572 +#: 1658154957934f93aea580480a93f06d +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "" + +#: ../../changelog.md:574 +#: 8f96626aeee2407ead9a59ec45dabc1a +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "" + +#: ../../changelog.md:577 +#: 2dd2c8f954934bb593bf96a65aaf49ce +msgid "[2.1.3] - 2022-09-06" +msgstr "" + +#: ../../changelog.md:581 +#: f97d21f188914b99a02eddf404a430d9 +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "" + +#: ../../changelog.md:584 +#: 20f3c230725b4f879eaf13fe8fab8861 +msgid "[2.1.2] - 2022-09-06" +msgstr "" + +#: ../../changelog.md:588 +#: 020eedc585cf44a2858529c8d43b6b54 +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "" + +#: ../../changelog.md:592 +#: 439fb1afd83545f8b5d955600ad11510 +msgid "[2.1.1] - 2022-08-25" +msgstr "" + +#: ../../changelog.md:596 +#: e74d531343704a3faafa44b907a76e3f +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "" + +#: ../../changelog.md:599 +#: d08ad13239c7439cbbd09aae4a16c23d +msgid "[2.1.0] - 2022-08-25" +msgstr "" + +#: ../../changelog.md:603 +#: a86271dbc38645919c2c274f65be4447 +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "" + +#: ../../changelog.md:605 +#: 59b42b5316384e81b6ef5f2cfeee36ff +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "" + +#: ../../changelog.md:607 +#: 790b53c72a3f4db5a92d35f0bf430bfc +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "" + +#: ../../changelog.md:610 +#: 1acff13e3a664d0bb3d8a584de44f9fe +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "" + +#: ../../changelog.md:613 +#: 5a44482095724e8c854fb0dac8a1b688 +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "" + +#: ../../changelog.md:615 +#: f384ae7bd39d4645a038b219cc5e3d41 +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "" + +#: ../../changelog.md:617 +#: 84fd56364f2e426f8059ab543cf8fa9f +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "" + +#: ../../changelog.md:619 +#: 116daae4f3be479d91f71c1dfb2e158e +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:621 +#: aa264304900847509610971067c61d13 +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:623 +#: f3a1898c5fb94d22ad268c1b80c06956 +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:625 +#: 6bbb2d7903f94ccf928e6d4a39d6181c +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:627 +#: bf536e2d15b34745aa6202fefc7ecb86 +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:629 +#: e9a5cb929d2a400996754846071ec5b6 +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "" + +#: ../../changelog.md:634 +#: c7cf6d82811f4e0ba66b43ed62394be3 +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:637 +#: 682dcf307b394f4ca5b2553b815c3fdf +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "" + +#: ../../changelog.md:639 +#: 1656bec918854d6297b74bb1e35a904f +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "" + +#: ../../changelog.md:644 +#: a16756bd1a69469ab4a723abc6249124 +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "" + +#: ../../changelog.md:646 +#: 22c69d421a4e44b5a09e1885e5b1db36 +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "" + +#: ../../changelog.md:648 +#: 43a5393c21bc440c8ada7fe235818b31 +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "" + +#: ../../changelog.md:650 +#: c18c8cdfbd014c69bef54df5485b077e +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "" + +#: ../../changelog.md:652 +#: ef4e07eeca0e4f6dab9c34646800eb9c +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "" + +#: ../../changelog.md:654 +#: 74ba25ff24a7407f928e6a503cd7731a +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "" + +#: ../../changelog.md:656 +#: 42f99fb9ec3c420883afd8002c0674b7 +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "" + +#: ../../changelog.md:659 +#: dfdb859c67e84007954866826f1092dd +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "" + +#: ../../changelog.md:661 +#: fe6004afac3c4280b63fe9d2117f045d +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "" + +#: ../../changelog.md:663 +#: 203cde94f8b84494a4910014cfd9cb86 +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "" + +#: ../../changelog.md:665 +#: 885263a2dea84a019d8ff1bf6fe28a1e +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "" + +#: ../../changelog.md:667 +#: f409a2d1bf8941ad8e5dd38c6fa02f97 +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "" + +#: ../../changelog.md:669 +#: db74b72ec1cb4f2ca20c8ec590aecc57 +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "" + +#: ../../changelog.md:671 +#: 48cc76eeeb3045a58736326078a0219d +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "" + +#: ../../changelog.md:673 +#: e8f97a297155469dad5bf1c0065f7248 +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "" + +#: ../../changelog.md:675 +#: 753591c9db444d1583e1ca24ba55377c +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "" + +#: ../../changelog.md:678 +#: 6f46f75334964b6e803da39b08058134 +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "" + +#: ../../changelog.md:680 +#: f8eb486c25734047862d39115603e056 +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "" + +#: ../../changelog.md:682 +#: 98838fe24b00482b90f84b4aeef38bdf +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "" + +#: ../../changelog.md:685 +#: 1a3f1825ed6940388193b1ef07b1dc76 +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "" + +#: ../../changelog.md:688 +#: ../../changelog.md:695 +#: 4b8d0071a17948a789b4a3850b4cfd3e +#: 4b841f18952e458bb99752d036731d8f +msgid "Security" +msgstr "" + +#: ../../changelog.md:690 +#: 595d6f7ff4074370b90bec1e9625132b +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "" + +#: ../../changelog.md:693 +#: 0cd65ab173c0451bb9ae1ba3fb40b232 +msgid "[2.0.1] - 2022-08-16" +msgstr "" + +#: ../../changelog.md:697 +#: ee4dccbc90654cbcb8d0c05f33e124bd +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "" + +#: ../../changelog.md:700 +#: 97414cf074d2496da5acf484c69838a0 +msgid "[2.0.0] - 2022-07-08" +msgstr "" + +#: ../../changelog.md:704 +#: f926a09ced2d481492984936a41f6dc7 +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "" + +#: ../../changelog.md:706 +#: 1ecb7fa75dff41449dde4615b6e710bf +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "" + +#: ../../changelog.md:708 +#: 59e7463435234e16866270f9f67f3107 +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "" + +#: ../../changelog.md:710 +#: 825af1ddcde1480883171e981e1da9cb +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "" + +#: ../../changelog.md:712 +#: 98bfc9d190a748579e55cb74c092cc50 +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "" + +#: ../../changelog.md:714 +#: 63e71264efce40bc9ac3f7f177759671 +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "" + +#: ../../changelog.md:716 +#: 583f0a83c644415fbd248eee5f5d8fc5 +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "" + +#: ../../changelog.md:718 +#: 03269af61aef4530b0588510928b25ab +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "" + +#: ../../changelog.md:720 +#: d30d886bcbdc4227805bd6ddb03ba9ae +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "" + +#: ../../changelog.md:722 +#: eaf48b5278cf458da58e8d6c74d872d5 +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "" + +#: ../../changelog.md:724 +#: 618f1139d2854adb9498024de569eae4 +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "" + +#: ../../changelog.md:726 +#: da574ae3b081432787fabf3ce7643b08 +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "" + +#: ../../changelog.md:728 +#: bcd876b3c5524167af08b9c49fc9461d +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "" + +#: ../../changelog.md:729 +#: 8963ace1487b41d689eaed24f1cbf62f +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "" + +#: ../../changelog.md:731 +#: 8768c70fc00d4e31b7a80d6b00075daa +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "" + +#: ../../changelog.md:736 +#: ee060919f00041db8b5be55cafb2c8c8 +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "" + +#: ../../changelog.md:738 +#: dc5c99a601e643378a95fd67cc096a3a +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "" + +#: ../../changelog.md:740 +#: 8c2807db86ce44949802e774add43122 +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "" + +#: ../../changelog.md:745 +#: 32f1c00be9d246c9bbd61f553109e4a9 +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "" + +#: ../../changelog.md:750 +#: 1eee8306295b44818cb2b0ba52d0cc16 +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "" + +#: ../../changelog.md:752 +#: c7e8ed3ea27249a3ba3139f4749fe67f +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "" + +#: ../../changelog.md:754 +#: 138b4b66eaaa464cbd8b470b39dfe3cf +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "" + +#: ../../changelog.md:756 +#: 83f10b99afb54627877654d2f7d13542 +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "" + +#: ../../changelog.md:758 +#: f5ed697972464eef896be8d20a91d41f +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "" + +#: ../../changelog.md:760 +#: 718f4fb72ad84abbb9e6433b4106c70a +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "" + +#: ../../changelog.md:762 +#: 3af4499fd5724a2bbab36758855eefba +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "" + +#: ../../changelog.md:764 +#: df77a6f8c2884f96a9ead31c3040ff3a +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "" + +#: ../../changelog.md:766 +#: 879a1e7ca8194078b8b54e0d9399b4b4 +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "" + +#: ../../changelog.md:768 +#: 2e5cc67d0f334713aa04357850b3b8d6 +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "" + +#: ../../changelog.md:770 +#: 980b8f6131b547259c6e3243f776160f +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "" + +#: ../../changelog.md:772 +#: 1579cb6ca4374946ae9d2aa00c6a2a05 +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "" + +#: ../../changelog.md:774 +#: 1addb165c9c3437ca5dca418e2638d46 +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "" + +#: ../../changelog.md:776 +#: d4ea2324cedb4d729a6e016ed9914ed1 +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "" + +#: ../../changelog.md:778 +#: d965df96de2444d2a3da4bac5f41fa32 +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "" + +#: ../../changelog.md:780 +#: a426447d83a0416b82a2ad38cf28f165 +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "" + +#: ../../changelog.md:782 +#: 8f82c1560e2a4beca1d49b51032693c7 +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "" + +#: ../../changelog.md:784 +#: 169dd0974f7f4141bb15b782abd500b7 +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "" + +#: ../../changelog.md:786 +#: 448ef13918d4482281df46bd975272f7 +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "" + +#: ../../changelog.md:789 +#: dbcf3c4d21c14c479387995847602e95 +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "" + +#: ../../changelog.md:793 +#: 71808897a05a4d3791bc6f9dac867d50 +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "" + +#: ../../changelog.md:795 +#: 1666cc8af144493294f14e435b91e247 +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "" + +#: ../../changelog.md:797 +#: 64598eb221be468cb4460731ecb291b8 +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "" + +#: ../../changelog.md:800 +#: 65fefed9ae734de68d3bf2484df13eee +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "" + +#: ../../changelog.md:802 +#: e51f6c5505f84ed69127a68178587f84 +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "" + +#: ../../changelog.md:804 +#: 3b7406b62a0941a398ac7fdd33ea2a0b +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "" + +#: ../../changelog.md:806 +#: 35ae30f3f43e476885400ce345466da2 +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "" + +#: ../../changelog.md:809 +#: 6d7c1c2574e84c82aa22abf622baf28d +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "" + +#: ../../changelog.md:811 +#: e7e85506316f4046a79bf1bee7c0213e +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "" + +#: ../../changelog.md:813 +#: 20413647edf3450886b175cd2f53edc2 +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "" + +#: ../../changelog.md:815 +#: d29d910018724595a72b329b086dae1b +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "" + +#: ../../changelog.md:817 +#: 3f5d50f736184fe7a6b787749d53834d +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "" + +#: ../../changelog.md:819 +#: 715f3642c43e4b818b36ac879254a1ad +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "" + +#: ../../changelog.md:821 +#: 18a0ab7cdda64c26a907d972cd3cc5bf +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "" + +#: ../../changelog.md:824 +#: a1b658522e74433b8248a8632c132c83 +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "" + +#: ../../changelog.md:826 +#: 45b48efa33e2445ea77ca5d350cbc1f7 +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "" + +#: ../../changelog.md:828 +#: 9201af3619a241128b9361d32485948e +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "" + +#: ../../changelog.md:830 +#: bd0157bc4b0f4b8f8628064afc16fae9 +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "" + +#: ../../changelog.md:832 +#: 6e19fe31455347129e5a8bc95d7b3572 +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "" + +#: ../../changelog.md:834 +#: 99861fea2ef74154a4150f91fa8eef16 +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "" + +#: ../../changelog.md:836 +#: 0a54f2b4c9764c26a62124a36810df1f +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "" + +#: ../../changelog.md:838 +#: 99d5ef66098a46d3a923357f8a26c740 +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "" + +#: ../../changelog.md:843 +#: 3fc4ac26224f413589a65d539f172b72 +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "" + +#: ../../changelog.md:845 +#: c6ba3c12853545738f571c0366063c82 +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "" + +#: ../../changelog.md:847 +#: 916c6e9e2e524421870ac2ad12af1c1b +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "" + +#: ../../changelog.md:849 +#: 8d7dea175fb24794a355b13007c92e01 +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "" + +#: ../../changelog.md:851 +#: eb953d6d30db42809fb6a250571f29b1 +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "" + +#: ../../changelog.md:856 +#: 0a9c258c97ff43d290fc0293f47f9978 +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "" + +#: ../../changelog.md:858 +#: 6a79d4a32b634bd3a7b74c101fa54a7e +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "" + +#: ../../changelog.md:860 +#: 05aa589e0a9a469d96f811423c1b3bd2 +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "" + +#: ../../changelog.md:862 +#: 3da23a6d6d4b4324a36f0b33cc59f82e +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "" + +#: ../../changelog.md:864 +#: d463353b612449e89a9a7015a794e5e2 +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "" + +#: ../../changelog.md:866 +#: 15b4372aa41846c2bfe24bd729e63048 +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "" + +#: ../../changelog.md:868 +#: 7d105926ee684e439657e29d1a57156a +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "" + +#: ../../changelog.md:870 +#: 54b42e8bc31145a9a8831d96c1c7a836 +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "" + +#: ../../changelog.md:872 +#: 5797d5a4023d458aa6eaefe95fdcbe70 +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "" + +#: ../../changelog.md:874 +#: 98b7cc4cbd3b4529bd64539cdc0166e7 +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "" + +#: ../../changelog.md:876 +#: 89cd1c71990c439c8187661846e4817c +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "" + +#: ../../changelog.md:878 +#: 6a993686d0f6440f9058ad662abc3eb7 +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "" + +#: ../../changelog.md:880 +#: fec7f8bc5c1c40638b2c7541a613f3b3 +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "" + +#: ../../changelog.md:882 +#: 1b22b1b48af64ab082e28d5be38e9470 +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "" + +#: ../../changelog.md:884 +#: 109809acf2d545559ad5bd7c1d9d668d +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "" + +#: ../../changelog.md:886 +#: c648e6fc6f44425195f326fb578e61d3 +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "" + +#: ../../changelog.md:889 +#: 7de5791d77fa4367bcc58a2b9db9f7dc +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "" + +#: ../../changelog.md:893 +#: 681f7f806d614707ae86fcc2e8c3042e +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "" + +#: ../../changelog.md:932 +#: c3d9893dfd4c43e1af3405c2b96d7e8a +msgid "Older Versions" +msgstr "" + +#: ../../changelog.md:934 +#: f2ab2347b52c49258384ff69cb70c6ce +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "" diff --git a/docs/build/locales/cogs.pot b/docs/build/locales/cogs.pot new file mode 100644 index 0000000000..78e3981708 --- /dev/null +++ b/docs/build/locales/cogs.pot @@ -0,0 +1,112 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../cogs.rst:7 +#: c8ac825e6b994a9aa60b3bcbe6c34043 +msgid "Cogs" +msgstr "" + +#: ../../cogs.rst:9 +#: 2f754881bfc94c2998a3ae81ef02f86b +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "" + +#: ../../cogs.rst:11 +#: 9107f5b551204d178a48c1f69d6cbba5 +msgid "The gist:" +msgstr "" + +#: ../../cogs.rst:13 +#: f173fd127aeb4f5abadc830d73d74ffb +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "" + +#: ../../cogs.rst:14 +#: 5cfe1bcf770d4bf59444548582bd4859 +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "" + +#: ../../cogs.rst:15 +#: 321f3f7b3a1d413790527b3d7b821138 +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "" + +#: ../../cogs.rst:16 +#: 77021c1918474cfcb90679c1faeb4f6f +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "" + +#: ../../cogs.rst:17 +#: b1c663eca3844c198e4539ce53c4c756 +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "" + +#: ../../cogs.rst:20 +#: 9e5fcbbf6d574ef796df6335903ce9bc +msgid "Quick Example" +msgstr "" + +#: ../../cogs.rst:22 +#: 2026f5d8c0ae400980fc4ddc47d46d2a +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "" + +#: ../../cogs.rst:47 +#: bd6a08fc260d4f339594086965422dae +msgid "A couple of technical notes to take into consideration:" +msgstr "" + +#: ../../cogs.rst:49 +#: 16d111580cb940cdb64948e7ed41192a +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "" + +#: ../../cogs.rst:50 +#: 202723f7a4984aba9f44561f14721b3c +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "" + +#: ../../cogs.rst:51 +#: fbcb39ba8b6f4e43b17b48546e9b9348 +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "" + +#: ../../cogs.rst:54 +#: 29313ee75df44d1a9e587cf204e86eea +msgid "Cog Registration" +msgstr "" + +#: ../../cogs.rst:56 +#: 934a0af7f99a4fa39afbc59c69c7a904 +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "" + +#: ../../cogs.rst:62 +#: fab3613b468549498b33327e5bb3bf81 +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "" + +#: ../../cogs.rst:65 +#: 0961f63000044a2ebc4c847b0c2a4c5b +msgid "Using Cogs" +msgstr "" + +#: ../../cogs.rst:67 +#: c63e277a7d6d4e788a85d37fadc395d5 +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "" diff --git a/docs/build/locales/discord.pot b/docs/build/locales/discord.pot new file mode 100644 index 0000000000..5b9bf67336 --- /dev/null +++ b/docs/build/locales/discord.pot @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../discord.rst:6 +#: 33e43ca11bae43869384b9a001d402c5 +msgid "Creating a Bot Account" +msgstr "" + +#: ../../discord.rst:8 +#: 3e751380298444d89e24a9b137569b63 +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "" + +#: ../../discord.rst:10 +#: a009330b55dd40a884d07ebe7e8352a6 +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "" + +#: ../../discord.rst:12 +#: ../../discord.rst:66 +#: bb20d2b0e2524050ab13ce5fd4a482ca +#: 138839594467417c9675ccdf255cc4bb +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "" + +#: ../../discord.rst:13 +#: ../../discord.rst:67 +#: 209f0e33c5f34083972973ce750ad6db +#: a0e135fa837f4998a28119f05ceb6af2 +msgid "Navigate to the `application page `_" +msgstr "" + +#: ../../discord.rst:14 +#: 8c4ca040e8b048b8b8ce6fc7a59af681 +msgid "Click on the \"New Application\" button." +msgstr "" + +#: ../../discord.rst:16 +#: 4e50539b117d483bb8eb9759d23a2539 +msgid "The new application button." +msgstr "" + +#: ../../discord.rst:19 +#: 52b1dfecf4d848d88c423e85bf047e23 +msgid "Give the application a name and click \"Create\"." +msgstr "" + +#: ../../discord.rst:21 +#: 988abcf0f00347ef842e50b52ecba727 +msgid "The new application form filled in." +msgstr "" + +#: ../../discord.rst:24 +#: 35ed8c8ca0f14f7baa654c2f03c3ba78 +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "" + +#: ../../discord.rst:26 +#: 061a88735e9d40ad82c8de617ae95c2d +msgid "Click \"Yes, do it!\" to continue." +msgstr "" + +#: ../../discord.rst:28 +#: 3a47c4b483f740c3b4009c9aba483465 +msgid "The Add Bot button." +msgstr "" + +#: ../../discord.rst:30 +#: d1f8406f0481452aa310463424432f3c +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "" + +#: ../../discord.rst:32 +#: 36fc0348a1294783bf756b3b0c9a2355 +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "" + +#: ../../discord.rst:35 +#: 01d0a7156bbd466ea4bf21c6bf0913a6 +msgid "How the Bot User options should look like for most people." +msgstr "" + +#: ../../discord.rst:38 +#: ddc3c7c497f84a098fa8c5cfba4fd530 +msgid "Copy the token using the \"Copy\" button." +msgstr "" + +#: ../../discord.rst:40 +#: 426cb6a680fa41499bd38d4ae7819100 +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "" + +#: ../../discord.rst:44 +#: 129caf4fb8bb46f0bc98b6b92e7bca8f +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "" + +#: ../../discord.rst:49 +#: d429905610504813999425db219641c2 +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "" + +#: ../../discord.rst:51 +#: 818ab0f6513e4ff3b471954ebecf6dfc +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "" + +#: ../../discord.rst:55 +#: 0f49e12494fd4e018447b1bba17bc382 +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "" + +#: ../../discord.rst:60 +#: 0052dd2bf92f4c989bfab9b2ce496602 +msgid "Inviting Your Bot" +msgstr "" + +#: ../../discord.rst:62 +#: 3cfb9a2d30924b95bccc6eaac0f84223 +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "" + +#: ../../discord.rst:64 +#: bf66ea40eeee44b3af812f949c00c78b +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "" + +#: ../../discord.rst:68 +#: 2001c08cb12c4281918a3f464d52a876 +msgid "Click on your bot's page." +msgstr "" + +#: ../../discord.rst:69 +#: 99b77c0d8af94410b1f4693baf7185bb +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "" + +#: ../../discord.rst:71 +#: bb51cd2efd3a48a98ce9a2521a48e9c2 +msgid "How the OAuth2 tab should look like." +msgstr "" + +#: ../../discord.rst:74 +#: f3c6ed7d8baf44d184bcf20d581b054f +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "" + +#: ../../discord.rst:76 +#: 8ffd745846934f7ca86dedb218dcebd2 +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "" + +#: ../../discord.rst:79 +#: 750d4f736cfa4a4998c8ad41361d6d2b +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "" + +#: ../../discord.rst:81 +#: 9c76f59e0e924ca6a418399e8b78beae +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "" + +#: ../../discord.rst:83 +#: 8338660304a84ac98f834d371fa8aee8 +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "" + +#: ../../discord.rst:85 +#: 6e7943e8fbc5422a838dfee812ed741d +msgid "The permission checkboxes with some permissions checked." +msgstr "" + +#: ../../discord.rst:88 +#: cb8beb1bc6bc416b96d88850c1f12815 +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "" + +#: ../../discord.rst:93 +#: 4e365dc410804016a5a0858c3201d95b +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "" + +#: ../../discord.rst:95 +#: 76f2e35cf05545138dcec93407f45af6 +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "" diff --git a/docs/build/locales/ext/bridge/api.pot b/docs/build/locales/ext/bridge/api.pot new file mode 100644 index 0000000000..31580689e3 --- /dev/null +++ b/docs/build/locales/ext/bridge/api.pot @@ -0,0 +1,712 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/bridge/api.rst:4 +#: 6fa316d9035a4819abf06d5ae0850304 +msgid "API Reference" +msgstr "" + +#: ../../ext/bridge/api.rst:6 +#: 1a9c41e32afc4f6c9827f80b27baa9a6 +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "" + +#: ../../ext/bridge/api.rst:10 +#: 606ed0684e934b9da103e40b3af328cb +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "" + +#: ../../ext/bridge/api.rst:17 +#: 80e0f4c32fba4a9186acd1dd80023cb7 +msgid "Bots" +msgstr "" + +#: ../../ext/bridge/api.rst:20 +#: bc31060dab2848688f900873f58824d8 +msgid "Bot" +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.Bot:1 +#: 850dd85571d6439399b7f0a0340472e1 +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.Bot:3 +#: 34f98446e5144990aba7a0cd2abf6a62 +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "" + +#: ../../ext/bridge/api.rst:0 +#: daf51d42250a4b68a63ce4a569ff39d8 +#: 485704f10e284a189c55eacd55ea3968 +#: 3a31bead22ec46cfab167528f73388b2 +#: 3e6ba5715e114d6fae10fa8ce19898f4 +#: 530632fafabb426d8c56d3caece3f7b2 +#: bb06477aff3d4ac398c2b90dfc77b732 +#: 5492abf2718b4206b9d9d7d5f287fca0 +#: 3cf8dd9f30944cd5ada56237da8290df +#: c4851b106cef42399e6a64f61c78fd3e +#: 2893cea81e8f4c3c99c350ae184b88ad +#: 864d918f2bc34eba95e43108295e2471 +#: fe14b112db024067910f4c9edd3a2966 +#: 0936a9c30a344f258129933949a2fe06 +#: be224dfe5e9f4390b28f0c12baedd70e +#: 95d1ec3d0f144201a711952e040146be +#: fcee5fb1439849cb91efe93d9ca99a9e +#: 08bff09c730c4b5bb565bdaf3e105965 +#: d414290a24964ae2827a233b80f9d820 +#: 2712df298b134b468aa30aa758768e1d +#: ecc99c5f64b747e49d92d73c86da310a +#: a4305c757d594d6f932e4154fc97ffcb +msgid "Parameters" +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.BotBase.add_bridge_command:1 +#: 22b7c6d14796429fb28865fbed90ee9e +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.BotBase.bridge_command:1 +#: d20cb8aae77c4788bf65f2a78f61b172 +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "" + +#: ../../ext/bridge/api.rst:0 +#: a01549abab034ce9aada5ab30d72a4ca +msgid "Returns" +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.BotBase.bridge_command:4 +#: 81f3afc0052540ee82f717b2768752eb +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "" + +#: ../../ext/bridge/api.rst:0 +#: 59d0f08676f541b5b40d4eb3830146af +#: 648fa6421bf940e5b202bd6565384518 +#: 5ba572703a4e4af88ec233bfad6f0c14 +#: 145bd739c2fe4aff906e41e5bcc428ad +#: e198af69a1d8498ea9d0efdb944c67b4 +#: 7f5fa723e8af44a78f11ee8eb2f6ff67 +#: cb3f7e3974f148e19e43b78db36e24e6 +#: c102617394d14eb786c58ca83d415312 +msgid "Return type" +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.BotBase.bridge_command:6 +#: 7c4ef82e00da4b50a94fd04a73b7f9e9 +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.BotBase.bridge_group:1 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_group:1 +#: 2c6205c46bcb426b9704199b6cc54bf4 +#: cdfc2954c8984d69b6de2a61ed0884ff +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.BotBase.bridge_group:4 +#: 707c2ec5657142f58d78b7c9667c251e +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "" + +#: ../../ext/bridge/api.rst:36 +#: da27d30dccd247caae719c36f0098a25 +msgid "AutoShardedBot" +msgstr "" + +#: ../../../discord/ext/bridge/bot.py:docstring of discord.ext.bridge.bot.AutoShardedBot:1 +#: 642e409bd50148c39b57d779a5e53e72 +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "" + +#: ../../ext/bridge/api.rst:44 +#: 3ecf92ca4a444ddcb8cb77d32bd0251d +msgid "Event Reference" +msgstr "" + +#: ../../ext/bridge/api.rst:46 +#: ca9c771601074ca7b1f674a8805fdcdf +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "" + +#: ../../ext/bridge/api.rst:51 +#: c2782ddd3e0647b296bf2254f882d589 +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "" + +#: ../../ext/bridge/api.rst:55 +#: ../../ext/bridge/api.rst:67 +#: ../../ext/bridge/api.rst:77 +#: e899524679a1438fb1615fb8fe418aff +#: ffa1a0bd33ce45888d7e9b6b0304db8a +#: e098ee37ebf04ac493756d6f20633bc4 +msgid "The invocation context." +msgstr "" + +#: ../../ext/bridge/api.rst:57 +#: 90261a604f954587a3fe4112c77c9c8e +msgid "The error that was raised." +msgstr "" + +#: ../../ext/bridge/api.rst:62 +#: ad460825d379451b99f7a1106384c367 +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "" + +#: ../../ext/bridge/api.rst:64 +#: fc46a91034124a9dba3517b0e7d02a96 +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "" + +#: ../../ext/bridge/api.rst:72 +#: be6a86f6768d467d8415e4fd7403792c +msgid "An event that is called when a command has completed its invocation." +msgstr "" + +#: ../../ext/bridge/api.rst:74 +#: acaa45c6fcbb4bbaa212789fe3d0a1a0 +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "" + +#: ../../ext/bridge/api.rst:81 +#: 93ed9e62cb4d424eb61036785e8f42b7 +msgid "Commands" +msgstr "" + +#: ../../ext/bridge/api.rst:84 +#: e2aeb6f20c00463b99f145618ad57950 +msgid "BridgeCommand" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:1 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:1 +#: a0c6dbe8972d4ad4ae67079c14bf9e8d +#: 7f6eb99fd9284122b01c9373d31e4126 +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:4 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:4 +#: 3ed668f86ee448458bf66c209f08687c +#: f096041bd94348b8809ae058ce510c72 +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:7 +#: 200935417b504aaebb24dd1a99bfcaa4 +msgid "Parent of the BridgeCommand." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:10 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:8 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup.command:4 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_command:4 +#: 7f6dd7f8a2ee460b99a72804e8aea788 +#: 484e0bd2743e4f18a5f09ffcb1c749d9 +#: f9f0d50c11aa402ea2a874490f653e3b +#: f0f21d359a4a48ea86df915710a12562 +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:15 +#: f37ea5004f7d46b79174fffb4bbe6dfb +msgid "The slash command version of this bridge command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:0 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:0 +#: c199030b71784af6aa7369b62ea3c70a +#: 530c706f8f2d4cde86d4b9959a708cf9 +#: 0dcaa4de42d7417ab675d15d95c0545e +#: fcd3136ef9a54e679fb18bae06554cee +#: 3233f6d67e434cb4930d286b1cedbf93 +#: 695ca16e39234b53a145ba1a621e6ef6 +msgid "type" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:17 +#: cbc6f859d39248e7a83d97cd457b250e +msgid ":class:`.BridgeSlashCommand`" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:21 +#: 2f51e8a9edc4443f9d679a119e619cf5 +msgid "The prefix-based version of this bridge command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand:23 +#: e63578c4dc7f46c89c6203e32b68347d +msgid ":class:`.BridgeExtCommand`" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.BridgeCommand.name_localizations:1 +#: 191eaf3d235142118f52b1abb1b5cb13 +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.BridgeCommand.name_localizations:4 +#: 201f3f3932184f08a7790734fe0c0df9 +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.BridgeCommand.description_localizations:1 +#: 9000d83f46db48c88492fd4b3d99c08b +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.BridgeCommand.description_localizations:4 +#: 664bc2c5a41e47f7b116b97ca69052f3 +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.add_to:1 +#: b3a675d4098741a9b1cae5c41f38c6e9 +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.add_to:4 +#: ae52f8a5e5d4453bb3cbb37559232e97 +msgid "The bot to add the command to." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeExtContext.delete:12 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.add_to:7 +#: 927e81b21d1f42ca92a240294c3af3ee +#: 89a3b017daba4d45b6db08bfd3046c9b +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.error:1 +#: c48326d91a0342ecb10271b42baf00ab +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.error:3 +#: f6d650ad1c6f44ba94471825a2363aef +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.error:8 +#: df78c1bea8514032ad90b19418a581e1 +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.error:12 +#: 83b35fe23ddd442b8b4ed5835267be7e +msgid "The coroutine to register as the local error handler." +msgstr "" + +#: ../../ext/bridge/api.rst:0 +#: a2b73e3775c045e7a5f824ee24cf0092 +#: 41965c0d21844dfa8e47f852e6d14b56 +#: 2ed336ac83374dbab238cdfaae50a01b +#: 5bb2b8d65a0c4d5d93576c19239e7330 +msgid "Raises" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.after_invoke:13 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.before_invoke:13 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.error:15 +#: 6b619def53b84a94af6ad1abb1e294fe +#: ad1c8992416b44389487ffb94fa63520 +#: bd351550f69a4824a31d1028f2f9d016 +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.before_invoke:1 +#: 035eaa995b2348dcaab9e35ed861a5c1 +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.before_invoke:3 +#: bef6d6b4b0fb43fc923b5777b3bff7bc +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.before_invoke:7 +#: 7d6d731c61084aeabd82697f41f21a56 +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.before_invoke:10 +#: 7e4e42913fa342cd92afead956d25c58 +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.after_invoke:1 +#: 6e32363e7d914b69b7f319b7f1472e4f +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.after_invoke:3 +#: 9d8cd8a28f2e47deb002d8312d3a351b +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.after_invoke:7 +#: 94e3d86c469f48e9a68759fa1e7cf54d +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommand.after_invoke:10 +#: 3721ef9b30b5455cb9d3e7201a173f6c +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: ../../ext/bridge/api.rst:92 +#: cfe096223cd243a497dd1834b89a6210 +msgid "BridgeCommandGroup" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:13 +#: 0f525e459e0749eda68c2f757c2b4b7c +msgid "The slash command version of this command group." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:15 +#: d5f80ea868be4479b31c15d7c145a257 +msgid ":class:`.SlashCommandGroup`" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:19 +#: 6ee6e20458ca445b83f5a44bb94c21cd +msgid "The prefix-based version of this command group." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:21 +#: 501cd7140e8f448bb10ec476988ea419 +msgid ":class:`.ext.commands.Group`" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:25 +#: 0aaeec7bdf1f444392d736e0edaa40dd +msgid "List of bridge commands in this group" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:27 +#: c5d8310ad9cf403f8de8dc56d6bf3c26 +msgid "List[:class:`.BridgeCommand`]" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:31 +#: 6da69d8c508343b4862328abf6d1d42b +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup:33 +#: 3c0f50029ec14982b2c178a7a22b62de +msgid "Optional[:class:`.SlashCommand`]" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup.walk_commands:1 +#: 737188b67b894eaf9961484f4cd68c2b +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup.walk_commands:0 +#: be375185d935402f9bece4e8479efc7d +msgid "Yields" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup.walk_commands:3 +#: ab1ffcf146a34b59b7be85e9fc72e879 +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup.walk_commands:6 +#: e2ad6ebfe5824570a21d38811de1a22e +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeCommandGroup.command:1 +#: a8e41674d62e47c884b4b94285c8c79e +msgid "A decorator to register a function as a subcommand." +msgstr "" + +#: ../../ext/bridge/api.rst:100 +#: 85c6676b73cd4e3598474888a69220ee +msgid "Decorators" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_command:1 +#: 0ea58971f2c64f7384ea418f5e94e192 +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_group:4 +#: cb885a3f5922444ca8d68724b2adb497 +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.map_to:1 +#: 54e3f1a6164142ada5b4642e8008c3f2 +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.map_to:4 +#: d21ac3819ede416f8f28497cd60b5369 +msgid "The new name of the mapped command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.map_to:7 +#: 192392e47e3f47bebb2f929f1f778892 +msgid "The new description of the mapped command." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.map_to:11 +#: 09a8c314d2334ca2a33f0ccae64de705 +msgid "Example" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.map_to:23 +#: d8cba8f60cac4e78b72ecefd5e198a09 +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.guild_only:1 +#: 8748247655d94525be995419809f53cc +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.guild_only:4 +#: 7e61ec9dd3b545c785883dd2349fb166 +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.is_nsfw:1 +#: 96dc0b24c06542e580f588b6df02e7c8 +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.is_nsfw:4 +#: c8d25c4b9711421cb1eee1d8f1f6e7c3 +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.is_nsfw:8 +#: 061033f4c75446c3a6b9fa17e864fc13 +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.has_permissions:1 +#: 24bf1747781640e4af98e4808495d17e +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.has_permissions:5 +#: 36a8f1cc8cd048fda5579993cf4f1d0f +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.has_permissions:9 +#: 02a8d1d690944a72b8679c14f57ae747 +msgid "An argument list of permissions to check for." +msgstr "" + +#: ../../ext/bridge/api.rst:120 +#: 3d796982686f494da2668a0e0a9544d6 +msgid "Command Subclasses" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeExtCommand:1 +#: 68ab0eb1255f4b6dbc35bd39a029ff61 +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeExtGroup:1 +#: f99dd00f0e1f43a484a58f999c68ca01 +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeSlashCommand:1 +#: c12038ebec8d4aceae4cc60ed8ba17bb +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeSlashGroup:1 +#: b0e79ad4368c482fadf8d443f9584918 +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "" + +#: ../../ext/bridge/api.rst:131 +#: 57393fd3d3f242b4a5a8386b55b8818a +msgid "Context" +msgstr "" + +#: ../../ext/bridge/api.rst:134 +#: 45b8f55c8a7c450aadf96ee2bc5d0bf2 +msgid "BridgeContext" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext:1 +#: 72208e8dc06d49b48ffb951c4a7c0dc5 +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext:5 +#: a0c5063715dc4110a62fc98f24680696 +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of typing._overload_dummy:1 +#: f30c4ce6aa1b461f8f83a8c6f0b97652 +msgid "Helper for @overload to raise when called." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.defer:1 +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.edit:1 +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.reply:1 +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.respond:1 +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeExtContext.delete:1 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:1 +#: 9cbe5a9cbe914b528ad81f23a4ad5481 +#: de66e4aa5b244b38acf315ebadaa5346 +#: 12f4cce4c9d24748b98e3746f8edba6a +#: 47958ab3fa804196bbed67e7d4128770 +#: 9eeff2bc29d04f65a81322028a9e98bb +#: 0ce390d55fbb4f518af7dbde2a8fc4b4 +msgid "|coro|" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.respond:3 +#: d1ad409f80644b6994ba2e04cd0d70c6 +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.reply:6 +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.respond:8 +#: d4ce5e66006147babe02bdf635472c9f +#: 21394f711ded49cdb6a23566b0a7cd53 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.reply:3 +#: ecb38c12b5cb45f2b63ee4759b9a72ab +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.defer:3 +#: e284edacef264148b98fd65cf5832a4f +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.defer:10 +#: 6b331c393af24345a6dc904dd6177bd9 +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.edit:3 +#: 62c545f510f84f8090befb9f0a37c7b1 +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeContext.edit:8 +#: 829993f931c34774b02a374bee1d885f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.BridgeContext.is_app:1 +#: cc361c83e8314be5b9c5fcc6f9d9f97a +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "" + +#: ../../ext/bridge/api.rst:143 +#: 832d7d0bc0914c3c8099fcd557339b87 +msgid "BridgeContext Subclasses" +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeApplicationContext:1 +#: edb2d387c93c49179b7615dd26d27b36 +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeExtContext:1 +#: ac8e72c3de8f4997993a1a37cc9da2b8 +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeExtContext.delete:3 +#: f87476695de442659103636aadd364ae +msgid "Deletes the original response message, if it exists." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeExtContext.delete:6 +#: c61014534796459d833957ad39ce0cc2 +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "" + +#: ../../../discord/ext/bridge/context.py:docstring of discord.ext.bridge.context.BridgeExtContext.delete:9 +#: bfea474cbf854303b371c49f389e86a6 +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "" + +#: ../../ext/bridge/api.rst:159 +#: c7b8ca67d26945509519ac95d27a55dc +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "" + +#: ../../ext/bridge/api.rst:162 +#: be07208f849b4f75afd5cb572c0a4830 +msgid "Option" +msgstr "" + +#: ../../ext/bridge/api.rst:165 +#: 0b5ee756992f4209aeb8020d1f811b80 +msgid "BridgeOption" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption:1 +#: 545f31dcbb4e4ab0ac92bc0c8e7e6b47 +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:3 +#: 761f4405d509432f87a2ac1b2dabf7ed +msgid "The method to override to do conversion logic." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:5 +#: 5c1ade82f7f841f08a5dbb10b20be098 +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:10 +#: 8bef3e5908644772b4ee25277a02cfe4 +msgid "The invocation context that the argument is being used in." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:13 +#: b947563417964b228a845d5f06eb65af +msgid "The argument that is being converted." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:16 +#: 93ae6d03448d48ce990b117e1505ec77 +msgid "A generic exception occurred when converting the argument." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:17 +#: 7854a83f22984d88ab55a993d5060ea2 +msgid "The converter failed to convert the argument." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption.convert:19 +#: 2fb1f6d9385a42efa294143acd847528 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr "" diff --git a/docs/build/locales/ext/bridge/index.pot b/docs/build/locales/ext/bridge/index.pot new file mode 100644 index 0000000000..9a84656dd0 --- /dev/null +++ b/docs/build/locales/ext/bridge/index.pot @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/bridge/index.rst:4 +#: 8e92a85fefad410e8daabe8f96d6df34 +msgid "discord.ext.bridge" +msgstr "" + +#: ../../ext/bridge/index.rst:8 +#: 23a5963c0d484144bd55d09400c808b6 +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "" + +#: ../../ext/bridge/index.rst:12 +#: beb89b26b2aa4547affecbb8e5d4f488 +msgid "Example usage:" +msgstr "" diff --git a/docs/build/locales/ext/commands/api.pot b/docs/build/locales/ext/commands/api.pot new file mode 100644 index 0000000000..6934a40998 --- /dev/null +++ b/docs/build/locales/ext/commands/api.pot @@ -0,0 +1,9002 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/commands/api.rst:4 +#: 4725cf896a744071a08446633365c2de +msgid "API Reference" +msgstr "" + +#: ../../ext/commands/api.rst:6 +#: 80776e20ff0c4322aace15ec8c0d27bd +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "" + +#: ../../ext/commands/api.rst:10 +#: 81068d91f0c1448f8317c7dfcba703f9 +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "" + +#: ../../ext/commands/api.rst:16 +#: 17dbf825697944a89c41e5c4af4e2602 +msgid "Bots" +msgstr "" + +#: ../../ext/commands/api.rst:19 +#: a29e93a50d3b476bbe0cccd138a4d696 +msgid "Bot" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:1 +#: b469b90375a14a8b986f7b1b8a67a72d +msgid "Represents a discord bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:3 +#: 4d17f20fad654fb4babd30e58d852b6c +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:7 +#: 7d6d6af71a314aceb2ec965318f05bc3 +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:12 +#: 11f3decf6af545119f242d17e4ea02d9 +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:16 +#: 1197743250b64d25b9534197e3b19dd9 +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:24 +#: fd93e34dd8834b20bc344422cf70e68a +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:29 +#: 78f9a5eccd1e4f9eb8008ffe838f1c23 +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:37 +#: b786a1a7cee643dabc413b882de33d09 +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:47 +#: c98aa001a62745c3a90ffa2e14f5a30a +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.store_url:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:0 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:0 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:0 +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown:0 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:0 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:0 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadBoolArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadColourArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadFlagArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingAnyRole:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingPermissions:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingRole:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotReadable:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandInvokeError:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.EmojiNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ExpectedClosingQuoteError:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildStickerNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.InvalidEndOfQuotedStringError:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MemberNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MessageNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingAnyRole:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingFlagArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingPermissions:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredArgument:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredFlag:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRole:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PartialEmojiConversionFailure:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.RoleNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ThreadNotFound:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UnexpectedQuoteError:0 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserNotFound:0 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:0 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:0 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:0 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:0 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:0 +#: c68d85257a5e4af6bd219a6159648c77 +#: f147a85e13784370a831501af464a220 +#: ed2d367aaec844adb55fb898bbffac16 +#: 6d8c11bb47b2404baadf295e73360b7c +#: 108b348c252b4fc789b680c4989870da +#: 54a780ec9c5b4270b61cb1c40f28ae63 +#: 99c61ff23a9f43c1a74a3608cf5bc810 +#: 1448a02e23c546f4aa4a5072438e16fb +#: d6182d5081b04a73b45cdab6770e7195 +#: de6c28dbc55944cba7b85d7aa7fcbd63 +#: b010c0c3b0fa454a90311a3446f9c49b +#: bb7a8a01292b449d92d4b82befbce7c0 +#: 8ea34deeeeef47bea5ed8bf17d465dd5 +#: 723b2bd90f97499ba5dc2f350d048982 +#: 6704eed5f747450d8dfdeaeec60cbbd4 +#: e0d28de49a3749f3948e2f460a2bc193 +#: e20543c5f090466484011ef7bf9cb1c9 +#: 49345f7753d447cf9094bb2cdecd0929 +#: e81e864ce6e74c53a1da0ea0da311d4b +#: 55601caa96584f4c91300bf57f761956 +#: 96a6ee795e4643e9b26b27a063c39885 +#: c2d27679503e4faf8088465c8a1ecc2f +#: 841902978b0d403482cb32b53b483281 +#: 165a76ca7e1846698aa31c43137c2c3b +#: 3c28e0ee28984bf2bcc8798f2bd62592 +#: 8b1aec659f8f44eb9434fc8d6e841acb +#: 7152d1f6ea384cf4a1a9c008357751f3 +#: df54180ffa20475e9e524649f5cb719a +#: b6030aebe13247a1afce22cf71fabae5 +#: 7f692bc37b8243ba9b0a1fcf65a7b5f8 +#: faa08cd54fbd4dc3bfafd444264f1e78 +#: cebc715e216e40fa972a711dbeaf0b09 +#: 1223c3d5e3d348a2a6daa9f1a107c8c9 +#: 5b327bb3950b4ad8ae7ef10e82d19035 +#: d7602155d9f14ac9b08d0edcfedf5c70 +#: 270be672f1464f1dab7eea38a99dfb34 +#: 8dea75a41e1b460eac9b3eaa60b12b14 +#: 3e15cd16aad14d78ae80f4baf8f4b0f4 +#: e87e02110eaa45428938c49bb88809e7 +#: d6d7e6f6e33942d59f0ccc380151a1ca +#: 64f6a37fe4cd4b6aa30de2f590fed3c7 +#: a8945285bd8d4f9f9ea68ecfb6bcef52 +#: c5bd2b562e104009aa8757bca1bddb22 +#: 577f33dbd1f54ee480d60f9aea2d7378 +#: 377ba8d583374c54b0c56bd732953eda +#: 3fe59c25a9eb4091ac854b7036cf2970 +#: 550584d18ca64a488b332945303cf691 +#: db5ad1d14329442b8830e49655c19ac2 +#: e297df94bf0b4ee8b5e6d6a53599bf6f +#: 97e39ed6308c47fe98502d49d917f71a +#: 391893b3196d40ba8f551f878b6a2560 +#: 89c2bbcbe7814d1f8fbaad81279b0e95 +#: 971b17f87cac4902bb9213160569e250 +#: b06a956a0c49422b86a7032ff861c944 +#: 33232e79c27a486183c0920de6fa0172 +#: c9b58e0abb474bfda91ca4ba45e838b9 +#: 8d9819d1f9d14efe9ae4bff97279c4b0 +#: e254a1432ba4481b8685e99a5938a19d +#: dd3e3b6a53bc444c8ade9a23db803606 +#: 33776f84fcb0480bbf61338928654c47 +#: 95413a23cfd9402e8aab51af8ae774ff +#: 379d8518b9214f6a8b88a176d5a51267 +#: ef8d00a6819b4929b6f418766baea71e +#: 511cf118045a4195b1e97dc5e1a180cc +#: 2f3c927a25e8462ba442df8fbabab12d +#: 91aea164a40d44bc9a43e98757b1c2f5 +#: 50e167238b3a4eb0802590faca1b289c +#: 94a39f2cb6104dd29423d0653ea17ad0 +#: d09a5199baad4064930cd21fca8c36cc +#: fa873f947673448aae69953e58f9bf57 +#: 9cb8507aab254ef3b558267ed0fbad05 +#: c1149e1a068244c0be399fe9ab43b80f +#: 67fc9d30b8694c3fa37f67c913ef0216 +#: bcf11aa8198248d0a32eb648e5399ae3 +#: e750afe093134b73a749589618c6690a +#: cbcc8361549144dfbd8a4e41c6939224 +#: 16e02705ccc749b39cb61ba18e064ad8 +#: 1dd55573bd9240c4b2c43258ab27d71d +#: 32e4847c1f11430ea309e208a7f2b230 +#: 68580832026b4589b4abe60504445982 +#: b33d7c354c1c48f58d980706bd9b1add +#: c14a49d0b27d4cf7b43c319908c69d1d +#: 294606f3989741758165b037f0e42cca +#: 9e0d880b647a4ed18869793d39c4db08 +#: 33c19ac55c8c4ec5a8b42565c4fc4305 +#: 6d23f079d99e4396bea3f1a2a1fdc34b +#: e424f4779b1b452bba04b44cf955ceec +#: 7cc3548954684befaf20074681bfa01a +#: db5516bb43c044e497cbec4bd1df2cc1 +#: 35d74ff21a164370832cc456e23cb271 +#: e11b3cc9035a42aabedbba262e3c6300 +#: 4c0182649b044e5c8ae5c70ad3af4b70 +#: 89f1c9c23921443695f1401bdda5828c +#: cb5e31cba4554db68f7dfccb923a0667 +#: a695e583cfb74ae69d29ab046ce65e26 +#: 66715e7f5b6a46508ca48cc33b5c1b45 +#: 105f13ff7c9047f88afd67099493fe72 +#: 906838aafaac4a2599b3ea8c8ea754d7 +#: 02aa7d22cd11413e9834a6f9c0123851 +#: ea2952fa0a894538b2f4a2668c3df0bf +#: a0a9e2fd357d48e99c31edbe0e31fed5 +#: 92243df28dec4148ae1b66f3965d6805 +#: 1171a15a7dbc4359bb5d861a4d46a24a +#: a1f6810c7709435e9ac812af6d4664df +#: 217066ee33a64eff9f443cd2845ac081 +#: 0e029c25aaa643da8499cb29d20c69b8 +#: bb1bc46b3d0c471d9c2c0c3fd668b264 +#: 404745c582054b24ab54dd6bffc8af8b +#: 7d95d72a72a14bea8061091d9c349608 +#: ed172fbe91454ad98bfba0fc6f12fcad +#: 751c6c30412b4542ae8320d914180f9f +#: 6107003299d447b487802c2073e5581c +#: 4caaeeb2784f4b2093b994f60a3a565e +#: bf401b8fe1ef4055adfca18121ba1f5d +#: 7ef97daaa24e4bbbba80b12356207c47 +#: 2985d9aeac744805a10d9e9bda0c2350 +#: ea4df8b60ef6456891e2635630b0652f +#: 744c730f67694bddaeac898675a0b04c +#: a88c971739684ba0b9cdb61f134427e7 +#: 6ffc02e6c76a45f1bbdb11dee727a34c +#: 56228a730b2046a6afac5521b55da4c3 +#: 5cd7ed3fc6ac478facec21bb554fa5d2 +#: 0b0d45a6ba6d4b67b2336a5e371e31ef +#: 8971d71674a446ba9113e523f08bb833 +msgid "type" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:18 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:51 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:69 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.can_send:4 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:97 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:22 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:30 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:49 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:86 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:97 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:112 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:121 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:129 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:15 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.is_on_cooldown:8 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:18 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:25 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin:15 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:18 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:48 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:18 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:24 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:9 +#: 276711c2a624419c9122929d2b0cdce4 +#: f9b93a380a284e189dc49fa48f348b9d +#: af2f1296905749558682b61c1f7363ae +#: 41e0d52d9e82488eaa96b56f6367ddda +#: d751389b74ef479babc54efdff52c860 +#: 028c17ce435547ffae49bfe544b27746 +#: e56be582fd2f43eb94adef4955c9abc0 +#: 97865849b12b49f4acfac4f904d694b4 +#: ddedd93e70e746298edad9c6d263364d +#: f431713592b341298056b43574025dda +#: 8eca1380293a4e09adb2fe3078136d93 +#: f1c18da09bb9429889e7e41ad47ab7ec +#: 8208cef123334e6a9e7eaacf20089596 +#: 0aa02ae4cfeb4be595c8b1ca0582c056 +#: 48a71be674224dd0a6f48b1ab1c386f7 +#: 54767f2a4c154f1bb4f6e2c3f3a1bf0a +#: 57e7c8ef4a86471f88c69f8b0b567a34 +#: 0b07d435f14e465a83494b9e1517954e +#: d3e46986dfac4ab5ba671ef856293152 +#: 3e09066bc0974a6ab8aac7769ad27d95 +#: 70b0c2666e92432caf52677c5923c5cb +#: 7bfe317284264eeeae44bfb0a52fe66b +#: 89d6a9b27fbe4ddd8c8edb1dfa5ea216 +#: 7941d19160bb491493c1d0ab9474e548 +#: 5aadf2cea5a14b0a8967c261826f18bb +#: 47403799304644f99fc2c7f22543087b +#: c81cc44ad1e44667acdb9f4c2914528e +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:55 +#: a5c952c8f62649ff98c795f04e8a9a37 +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:59 +#: 4e41dd2f6e474b968c86fe917f45284f +msgid "Optional[:class:`.HelpCommand`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.Bot:63 +#: 7fa36f820e74436d9d890ec066f529db +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../ext/commands/api.rst:0 +#: f49495cd4b3f496f96f84ac8aa1f87e4 +#: 2a95458e7d8643c2ba53f80511c7fd97 +#: c30960c78b1a46e2ab2904693f41c626 +#: fb6332a28a1242f5bede4ea1b4001c1a +#: 558e0cf6198b497cbdb8d7560555cc5b +#: 31bcf378e11c4b7ab87c5037821c6bda +#: c6adc9c02e9a4ce6b1595ac2630bf3b0 +#: 1801dd137def4a99846c6e603f11be1f +#: 024cbb8ca69e4f12a98419f0192bae96 +#: 798fa21ae55f4282b4274758b25d4a83 +#: 183496d428a34f7fa249dc88301f8431 +#: 3bc1086271a94765a82ebba9760e62e2 +#: 812d0fca4d1549339fe98076a893d054 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: 0d64926e9bea4ccd8315b15fc036fc4a +#: 746d82f9ccbd40149262634a1f669cd2 +#: 563e5536890b484ba2cbd0130f1fd9b2 +#: e42e172090a0442eba2ac0f76facbcb5 +#: 0aeb5e483b864662a2c92eebe6f73d99 +#: ca919f2f99a9425793383e7999f3af1c +#: 108b930bfc3f4ea6bd10cbaf29718687 +#: 57fb1651bc2740c48fe01620a1aed31e +#: 942d8503487448198ea61a6b6e8305d0 +#: 49e2026dab654b5ca1a75e1ff2ccedc9 +#: 8ff0aa5a5bb6453aa531130a984ee93d +#: 4f4b773ec13f47708179d77079b9f6f2 +#: 775f4dd1f7fb4a1b9380f86b62fb8056 +#: 261e22506dc44e6484564a98a9ec4011 +#: 3f6507abd3334942a24533f0ac0406f9 +#: 188381798d224cf9b16d6f04651426d2 +#: 9e65520881584d7680f63c943351a497 +#: 4d9ef44a16e243bbb935cce7d88c9077 +#: 3750ee9874a649329aece5d76398dd35 +#: 0185b0522b02413b98fc4c5df9c59eb3 +#: 2ea0c93b670440c1ad8e95257a8e53c6 +#: c6abd0ca61504e8bb4414f48d1b51080 +#: 210310b6e3364856b58eb7c73d4aa040 +#: 8d7d4efae35c4b7ababc9523c8415768 +#: cb3db50ce0a042d9bebe4488c677b9d5 +#: 326209c081274d0fa4451add2e5cb68d +#: 96dce709b582439ebf3daf1f1e2bbddb +#: 2114e88ea6f946829a9ef1013eb0937c +#: d9f8073d87c746d9b4afe55b86f85e18 +#: 41d69f3e3e0a4baeaab87968b5c03209 +#: a592bafd3e5848cdbb94fdabfde357b6 +#: be1c3ec34fd04b68a97d2e0432f77f9a +#: fa59993f11d0461faf403f0197f7a50e +#: fc1319cdd96d4034b4c13a3200121888 +#: 5ef5c9aa137d4551aaa22a54b70a3b30 +#: 3eb9cc190b774281aead204f002229e9 +#: 4920e18faa6b457cad8a6989005d9d83 +#: e3b31479c05a41d08c694cbc9ab629e4 +#: 38d00d92476a4fcc88c2a287617c2ab4 +#: 83b34f6d985749c2ba89dab266312e6a +#: b5c27a77ab534def868fed18ec4feae1 +#: fa7ab950422f44bc926882a7f333e8be +#: 952dd26385254cd7bba3fc5ae0985f40 +#: 982f2b6c51df4038b234e6df559db8a0 +#: 1f634d10f55f484bb4f9b79affe57175 +#: ee8c663c3d6f4f3c87d79a8c9fc62065 +#: 26ae8707e08642deb24f58d6256eea94 +#: a1dd2ee86cd14f9aa54c3520d3d4db9e +#: aa2fa0a5a2c24a6897c6e388f1fdeb6c +#: 2df9aca5657840b1944cd6c44adc13f3 +#: bed31295e7ad49e3bdce4491750da5e4 +#: 1285e664ab7c4dd88a901829098572a0 +#: 88a026723d0f445d9a5fd92fa4060cba +#: e78dbe308c774566918891135b329e0a +#: 706ce2c501d745fdb2b3daf42a69e3d8 +#: 151bcfcacc9a466089fe5141a0276599 +#: 238611f4879249ecaa92ff6305e74819 +#: a0328361d3834eda9635724631074d78 +#: efe8125024004a4b8db65c81d73b40db +#: d328879cb1fc4763bc2b9c1813cf1a85 +#: 42ca308c79e148edbbdb7d4ec912af5e +#: b387921ccc5f41d39d762b12703de8fe +#: fbf99fabe05e4da48919c39646af44ca +#: fd7677b677a9487fa2bce1a9bf8f221d +#: c2702cdb542645af93d17ba572cbbd10 +#: 0e4df0e69aa2459fbfef6090352e6fed +#: aee4fc1600494106bedf2b7d19f4593c +#: 513f2d2b78634e55b424fab3de9ee6f5 +#: de5ddce3bf5740ec99dabf838cdb893d +#: e6e3568bbb554512b38022fd0393af3c +#: 17d8aa001fb04b4696872345f99655a6 +#: b589e148aa4e474e8a1d2fd1d0d41d33 +#: a36e3938ad72425aa108b848db83716c +#: 4a99f21fbebc466b8c0b9d1a35274e09 +#: cd224adfd8e945a795b92654c0537e46 +#: 634b9b9ff2e24fdd91b9e3cd5b880d80 +#: 5b1a773778e843eea6be076e295ca033 +#: d57f4f3e72d044e987f58e07cf00b4e4 +#: 34b3e887e9c54df39301c192789c82e5 +#: e25f7cfebb5c468fae3f49c3f4925e88 +#: 0c1107447e1a4f038ea88478d499b304 +#: 27639ff258d34b1bb2586dbc541376e3 +#: c90a00a876f24435a6ad041e5d1430a8 +#: 2dd428e5b74d43b79deac6cb2d7f7205 +#: 6c0e0ccdcb0241449691cf1449f03110 +#: 2545ec51695a401c8c67e6c8b2902f7b +#: d7dbe229b1c4422cbdbcb06838d67435 +#: 05367658d07843ff96eb9232cc8d2c64 +#: 440b7315543740c799170efcdd4c8f0e +#: fdffa8fbfd32492cbca531f57ff34598 +#: 4e789e61638f4a2688174f38c196906a +#: 053bd4c5913f4d61a86cddcc21cc5d18 +#: 35a8639c6f9e4873bf325b4b94e3f6b7 +#: 68ccef46e54847099f7391fa1227e03c +#: a3b3d3d70a004a4d8eb0e5ee524f1401 +#: afc1fa8dd78f4f21beaa1f2ff9dc74b9 +#: e979a2cb64c144f08aaf2803550cb543 +#: 4bfc0d7d7c7c40c590d83a68e3751115 +#: 54df8f3f0b584447badd43b28a573299 +#: 4c9d29d2a974413988cd095f0accb499 +#: 102f67d17332471589053ba459ce6673 +#: 3dbc0c3d62ea4dd1817205318f484376 +#: 0106c168c0cd4f49997701439c2312d0 +#: b3f875b4ca28496aae587f69547577dc +#: 655a27c76083426788bbf2741fbbf6f5 +#: 3910a7c247b14270b7a348aba888aa6c +#: 951c6a9504324cc29e8b8477dcb1d5be +#: 31aac8114b8a44e085cf27dfc32732b4 +#: 56d691dacf194b30864971051ad71f23 +#: e2d30d5014884c37811daf6d20b12e14 +#: 46828aebde8e4484881ab6d4191a38a1 +#: 6a86a096d8454dcc908da6ddec637ab2 +#: 912fbc1da1a74e749b417d4946fc3cbf +#: be46e7ff3ddf4c70a33b9fafc85cec04 +#: b03abff1a309480c9ef453233afdd330 +#: 0aefafa060814134ad18a1aff128996c +#: 0376d1f3354048868ddfbd60acc27c3f +#: 37a692f9433046b2adc05d7f464911ab +#: 6dac34c209424601b83975f8ad02bab3 +#: e8ec8cd91fa94a73ac6b33700e419d47 +#: 3e93401660d7456c9e69c2406f43ae25 +#: d6cbf064a13f47b5bb51658b999bd13a +#: 5c26a5c6db0e46b39e62ed14c3d23b42 +#: ac99c2e8fc2a477db9007fac3d037de0 +#: 3af812deb3f140fe8e1737d8f4a0c748 +#: 5bfc025db5ad435499e1056355cfe02b +#: 9cc4fcc74b484983a964aa040b888da5 +#: 5c18efb41ddf491b97ab8600a5e2039a +#: 4cfb7f24c6cc4b6cb89bce7e86f28d63 +#: 435807fa33c243e48ff2b653da43e440 +#: 700b5833dd804f489f9b7d4d094774e5 +#: 76555807f1954dda95396b4e1d612da4 +#: ce4b2af9ca06486a94b20e4f1cd88cb4 +#: d8a8b995d1e84dc2961573a637bef86d +#: a1f8ba3f374c418b855d383a61768941 +#: d502b865af374802ab62473088c082fc +#: d18243f289de4f3aa562ec83d726eb9c +#: cf74a394ad5a4ae889e4571fa35c6cb1 +#: ce1f454b91a844b1abc36f6b2d1d43ab +#: 7fa0db22633b48398b4de2ad2392055f +#: d52f36f2e66942e98c3645346a3f7a66 +#: dc6b794964114284849360854df29bac +#: cf1319d923184c989bac073dbaa2eb71 +#: 2223e0c6d99e4cbd8242b6a949d6e2f5 +#: 5217cf7bff004444aa63f495be4d8fba +#: e89cd07b119746e9a65b92bd05c244e1 +#: f157262bc3e14f4a9b5ba20e376f9c08 +#: 22faefd02bc24bd4b49131401953cba9 +#: 26204a58a23f42e09f7858d00d0058b0 +#: 29d8e8d088d946c6a7105ebb59cf3c32 +#: 5cdf97ac1195409e9237bb04b2da91b2 +#: c9b9d13b88bc44d1b1e841c9a8129d79 +#: 363acacf09264974bd53c0df6ce8c413 +#: b7f1f0245780476d8fcf01952341c2c5 +#: 9d22da48e01545ac8928068007e3ca19 +#: df8067b945734b8aa1e082d724c92133 +#: d5aa102bf5744b6282253b26ea73e2af +#: 845acce51cec485091f042658563c95d +#: 38696f0b57a14703ae22e29532ee01f9 +#: 3c53acfb9801485c9013fc5ae20257c2 +#: 0fe049523a734ee89b37ef33e3ced979 +#: 8a5af6e6c03b469c830ab3b9f1425201 +#: de03b42eb0cd4f6eb278387a6b22164d +#: d3b18cccb6a942d1a9ec49b54fe7b9e6 +#: 14a359276917412d96edc80e348e1382 +#: ca25bfd473924b5caf5944ba73c30281 +#: 1825d6ed33e04d14b350112019df6b66 +#: e30ae702ec224d57b825994e5d3a3171 +#: ae011012e9554a90b96f1cd6b7f00596 +#: a75400e84bc3487096e92c7687badaca +#: c8caac8bf5014d0da40c9a988730f513 +#: 6e877a834ecc45689c16c3026990bbdc +#: fa2f9890b6bd46aaa490de9e483ae425 +#: 0d4d19a4c77a45b099f1ff35d5061a6d +#: 72c390a4d86342fdb64a5f18d0e55c41 +#: ce90efac37e4400ca645469367907bac +#: 6fc1d645729f4e90beeb242717fc3ae3 +#: 967ac8a431a04ee7abff38f6ba06c313 +#: 9e949f67e2ca41c883f7e34530d4ac14 +#: edefaa445f554f6da3f25fa5d94ae945 +#: ecd614b07c9147349fcda9c3612413d4 +#: 13ea41a7f2364b0193457112880e8b34 +#: 10ecc46d10564f5ebea1807c29af7f40 +#: cd13eab0cde04faabd55a4f17d996da1 +#: 7dd565d4ca084c4aae5a2eab086e99f2 +#: a7df17a58d5e48b9a6c1fe7607d939e5 +#: 297329632e8c45aca365c976ba411cff +#: d605587bfe644732a038fb285c6327b9 +#: 63cba68d887a4ccda37eef30119501e9 +#: 3286ac2193f44ffaa8da094368df3beb +#: d14fca40eee64e2ba90840d8e10568f4 +#: 3730254051b44538bbc81f84fe117df5 +#: 9daf43c910e34341be01d31f6f3c46cf +#: 0595fd89678345368d046f829e6897de +#: 2163b2c3c5134882b477013908d28724 +#: 3406a4b17c1f45cb8596dbfbe425afbd +#: f43630e3c2f042fcba07d5fdacd55583 +#: 89bf070d0e4c4ec09d5ab840f186742b +#: 59c285a6c6fa407db9c53b55c50a3118 +#: f3aec6ede5ff4d74bf10710023003da1 +#: c32d319a6e5c4873b77cb2ce0badc483 +#: 601dd0cb11934d88ad6bd070eb8d0c9c +#: daee34bb1075499bae20218394108775 +#: 45ad3aa1b6fe428880b066c1b7dea260 +#: df191e5041ed47a8a9ad51415066b88a +#: 234119871a7140b299411f907a99a3a6 +#: 5c349b5d8c84408faf832920f68bb1de +#: bb38da74c9f44bd18b0394b15063886b +#: 8e7e2b3cc1e74aa29fb828ed718e37b2 +#: d987725223db4f4486caef01d66de956 +#: 967d69ff75414339b150242f6d031e3d +#: b1e781ef94514282a039874d8034c9d8 +#: 3919fedde4084b36b6f7240e84215cef +#: 071ebd204fc34e47a4e68673e39bbeb6 +#: af7b7eb68f6d48b18bf33d1231b7a9b4 +#: 6c6ec77c90d24950bcf793561f4492af +#: 905bdb4741b74a4195c2a80e5b2e7da6 +#: 624672c5c4234d47a9574c5a83d4528a +#: c660722d2d344605bb56840117b7cd18 +#: b6a80e31d4a14c1da1f6551d80b0287c +#: ddbdf92aa45d409699e74d8141d371c0 +#: 6ea86318496e453c88a0cdeea0647ff3 +#: 65786358c6614a5784afc3dcbebf12b4 +#: 30ad3e2b07934be788018bf9b5abdad8 +#: db4691bb042a4e6c9c6b53ccfcc1da2d +#: 70ceaf0e031c47ddb852de9412f61bd6 +#: f206a14482db4f40a500158de5ff4d36 +#: a94fe9b1f9d247998e03827422d6e2f6 +#: b94b615f0ebe4af98362ad3752deeea2 +#: 6dce1f7cda744bb9822cea45eb6b331d +#: 3b613cb9f25d4efc89345d5a88b439e5 +#: baf00d4b71b7414b95d91246c3d82e9e +#: dcf8890f655f4799af079ac3db29d484 +#: b4d3e1209de445ffac9bf292e8989877 +msgid "Parameters" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:1 +#: baeb56b4ff064e6aa001a5ea8f1091bf +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:9 +#: 32289ec6ecad415fbc1716cd28bb27a1 +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:16 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:12 +#: 1f4414f19cb245d88c190908023d9ac8 +#: 25b3652c08d44d8393ec6f0711deff0e +#: 220a4a33aad74b7c99db534af0de0e99 +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../ext/commands/api.rst:0 +#: 630f4288af604d4dbc8e4177a7f21fac +#: 9deb4f77a61449abb51bd5c6b99a742f +#: 0257c75535174994a013c404eed4de3d +#: 2650f6c238e74f72b4357fd0f3649d83 +#: 77dbba5eef11464da6e6d8561993d040 +#: 85f893142dbc4e559193fbceb66e29f8 +#: fd688e2c9468425f8650382857f2fe9a +#: 0aaa7547a84144fc98f8383462258a5d +#: 227204ee62a54c638c2f8b9a91f21145 +#: db8e0299f4d5440f9756cf07c76ff3d2 +#: 3a49aabda5f543efb7eef2d44dc0035e +#: 081141882b5340b1a80561ca9111ae72 +#: 3cf4e4f8fc3944a4b6b9f023fcb9e6e1 +#: 00e100a89db949b995244b5d7ea5c0e0 +#: 0d7bea2ab09344bda3df67dcce3ccdeb +#: 5f1237616e624c018af062a4d89f032c +#: e20c74a6209b4f6ba2e2c83d146ec9b9 +#: 1604d3c4c756481bb44124fe1ee7d611 +#: b49c0073b56340ec9b78c3636e71e85c +#: db7ea1055966404583fc0cb0b2c4d74f +#: 2d00ed43b7e24723b1c4d6801312bdce +#: f601fd2e0ec94ce3a040c5466afdf390 +#: 65b2a4bfdd9f4cc8b834d6d484ef0034 +#: fd1ed033251349feb65a4373c39a3112 +#: b3afb24572e449de8c461403f5864f56 +#: bd10f9d638b347be80279e61dbb6e087 +#: 4518277f66b34d9ea6be92e3704fe30a +#: c42f8dfdeff0442a9c9d44a0b2fb05ee +#: 20bf74a6b36d4bc2829503451f98cd21 +#: a6ee7d5900bd4b70bbcc42175478c7c6 +#: f2f4fa62232f40b9b672890154ef98e2 +#: 04c07b35329f4adab9eb8cecc54858f5 +#: bc34bf4ed34748fe9f6ab304fca8a8e6 +#: a2576bdb88914f0aa5134a2b1a2fe935 +#: 4cba97cb9cea4fb99a200a366123cb8a +#: 0ebb1916467c40a1a52d76b5753f6bfd +#: 5fb2cc7815a247b8ac8b8c84c7315afe +#: 2e2d7dff936e4fe182e9ae0e97c98209 +#: 57e395a28e7d48aaa9b474a43116e615 +#: 46afb818fae745c8938009f575cb73ff +#: 51a4cced40ac4ecea7429aceaf3bc7d7 +#: 7ccd9168c3664677b8c8da24a7e30391 +#: 2da869772e3a49ce9a83cb662c5396e0 +#: 1268b29b106f4034b339350324b821c2 +#: bd40e56a4db54dbeb170b94cb6103afd +#: 80a67e91a1db4096afcfd68481bed952 +#: 0ebc9403887847b187e4f4eafe340197 +#: 153a7e3d025e42f292cfc3e76b597be7 +#: 59d6c4da10354bd098595a4e4debe21f +#: 377e1a94cdd542c483c8471d0cd1c908 +#: 90b0c2235acb4066be8eaa962f581c85 +#: 7ae1c7e45ccf4e3583a54ff7c5d20a74 +#: 96488d7cac72430e83569859692e1b91 +#: 9f9bfde7be844e7582d165ffc80ff0ff +#: cfbf3b25a88247c3a55973f5494d11f7 +#: e61e29c8138a4dc2a42e4713d113e176 +#: 889719aaf7a14081961857468f24ead3 +#: 3203de9a67c74307b67b2b3ce38dbb9e +#: 14469e6e826f42e6b46b74c132707d39 +#: c72c484f01af433ea5ef253bca636aae +#: 15dbfc8e3ed648879bf4632bd981a285 +#: 76fa884860334ff58623baf533381d24 +#: a679fe47709b4ed5bf73dd1ee7d1c2b4 +#: 8c2257e3d46e4d738bb16bf3fef946e4 +#: 30a651eb86fd4d7bba505594fa5fff33 +#: e44afa22b8c64b95a9b025eb43037521 +#: 08bdf595a68441ca8b6fa615671ee048 +#: fe1608078cb54f54a654832e08635932 +#: b108d36737ed430dace1687cb8aaed41 +#: 9c4bc83a05dd4dad8fe057be29ec4a4d +#: f690d71bbb0940d9a8168d6defbe53a0 +#: e4b181c42d454d32a6e91bcb2445ea77 +#: 730cefb588384a28aac101da90f5f293 +#: 31d6b7c30fba4c9488b0c1126d4bfb9e +#: 9a3ead5f72eb4a2faf3b17a5772d0a45 +#: 64470d0da3f14fb5a57b72257fc331e6 +#: 2bb5de7926a14e2baf71468647d38168 +#: a4c4c294989343d49dcafa484d3c1858 +msgid "Raises" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.after_invoke:19 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:18 +#: ../../../discord/client.py:docstring of discord.client.Client.event:13 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:15 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:15 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.error:11 +#: 2cb6dbd6878a4f67b5005054d4f2340f +#: 9824f3f114b94bd7a2ba929d2afe59d4 +#: 7c6f3f25c6eb4f608a6c686dd14b8cad +#: d8c011efa50c47929c394609e419d093 +#: 96897d3542bb46ca8971e6799276028a +#: 369398704951457092c8983d00ca5485 +#: f7ba4bffd9114673aa8abad8bdc1f0f6 +#: aea142a2854a482682187e59fdf1d4d7 +#: 2ce5b9eefbe5407b8f1d102505b218df +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:1 +#: ce34b808e8804ba09dcdbdd5e43f819b +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:9 +#: b71fb7de34de469fb20971cf6703e7c3 +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.before_invoke:15 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:12 +#: 148cdbf1c8ed4fb8b616c3fd3c815e8d +#: ff1c1be395074d0bb084578f9648eed3 +#: 52481130e4c84f3c91fc63b85eb4a1f7 +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check:1 +#: 30a3ced0836b40dabba33773003dc2bd +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check:7 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:13 +#: e5ff436d190a46d49314f31d064db949 +#: 095a14ed7b60432a89818371f06efc90 +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check:12 +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:18 +#: ../../../discord/client.py:docstring of discord.client.Client.event:16 +#: ../../../discord/client.py:docstring of discord.client.Client.listen:11 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:15 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:16 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned_or:8 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.before_invoke:11 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:22 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:21 +#: 587e23d4697f4a4f94f960f265e6d788 +#: 123407d31ff24dd999888399d8c675ba +#: 34a0e26f2a9f4d4dadfcba125b8d60d8 +#: 6a9a9b160ee24cf4bfd1c63a997e9b6d +#: 2f0dc352e6954dfd855ac44d79767155 +#: 6e75c57ecbba458cbf5f3669a2924ab2 +#: d64565eb8c0f49fabf5ba8ebd0408016 +#: ac8848ff31d543169fd4bd99d0c78dff +#: 3efce3f6574e441090b231fc42b49bb1 +#: 78f8a1699da948dd8fd72b8d8240251b +msgid "Example" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:1 +#: bf4f1977d6504fd5aa739b28dc3f3390 +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.BotBase.check_once:8 +#: acbeb7009e4c42fb9f128986d2327e71 +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.command:1 +#: 61aae0b994f947b8a1853fda41ee0156 +#: 66c60cbf615a4450a0177eb8da660fe0 +#: 8979c6dbf6dd42ef842388ce497d84a6 +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../ext/commands/api.rst:0 +#: 3befc35084eb4ca69d1eae3463158861 +#: dfe2da6e0d804d72b6ac73f14963c8f2 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 98009cff8e324960b08e4c96846a22ab +#: ad5f35b147574d30a0a839258b537e52 +#: 63cdadc9d8aa4bfabd4c2ebf92943762 +#: e7bb28eb3fa44f87a1b2e6c2b6fd300f +#: 6913a08768f04878a8aae3849f2adbcb +#: 2fccd0b36926425aa78d42b9de69dd3f +#: 5112301599a2461ab64d607e13e31a0c +#: a7e906d78e604e498c0790b35695e171 +#: f4e36f6415c74fc8a5a3d6a231c6612a +#: b6a1edaf8c42494ba5a9e62d8f3d7a0a +#: d0d2c521ec0e46899e9c57882edc2983 +#: 40cd0e3b914a4a93ba95b1043d54fb57 +#: 21b6898829444dfdb4d7580f4b8e8d68 +#: 60a9892afb20420f98ee9221fe525e3e +#: ec9b0c7dd290456795aee20a50830ab1 +#: 00966068ccb2456abc827d903250b689 +#: 581f5bcbba424fdf8b15bcd0b8dc5711 +#: 21f49b5974d544ffa30d029b89640d48 +#: 316508383bd04372a38b0d897f8da468 +#: b72dc4e461644f329db443543c3892a5 +#: 5328f2f6fee44b53ab2468164278f01a +#: 0861086278c04374aedfd115448ade3f +#: 8868154e698b491ab7ce42c57813285d +#: e486ad15cdb4492d8f9f6e7e1800cd4a +#: 7a2d1c3c0cff489b9dd2547237775a6d +#: 69820a9683ee4794abb00666b49bc0c0 +#: b8d037ff963b49288d8230df518fbc8f +#: fc8a135829ff4981a9c42521c75a4f64 +#: a64157f410e248689276a15d0fbbde4e +#: 7ea3fbba3e844b109a015811266e256b +#: 8008a4e9da9d4997a8d4c643a78e2b3a +#: ef555610bb034697a0ec46c479caf43e +#: 044ad1dc60764053bc8a5ec0067b235c +#: 39fd4666236748adaa42e2395ab93cd0 +#: 6d86faa4852446fab1aa6f7bafecca61 +#: 9597bec5fab840fd90dcccc255bdccd6 +#: 3110c173bd4b4c6d9d9109d76b9db84a +#: ebbc637a45594f23972b5da488261a66 +#: 5dc80b4524884c31b661c16957d6a85b +#: 11a43de3bc8e47af89d5f6c86117d319 +#: 598aaa8445094f068b40a474e93b2098 +#: 68372cdc81b445dda4f7ba2c5c2db0f7 +#: c031726bf95442778b12e5ef764210d9 +#: 570c09ff074945718b82e3ad2fc74e8c +#: ea8b547c2dba46e5af1ef2b39950b974 +#: 68d2b4f5f1e44de2ba765555dd29ee75 +#: d768e501395147e49787019df436581d +#: 407a37931d9641b3a07a65b545981a41 +#: 38e706abf9a2407ca53cb529a0d8b0b7 +#: dec7a1104099403a92ea080123b88107 +#: 9f514a07ea9b42feb7a58129ac7b1238 +#: 31a877cded6b4bdea5dffbb688cf725a +#: debcc6840c0d40d7b6eb9b4329fd41e5 +#: ae1200f79d0048e199cda9ddbb154333 +#: 56254df6925748ab96caac5bb4aef259 +#: 6c52839ca21c41558675e04d6c03ac08 +#: 0324b0c68b1843878508dd34d74ea93c +#: 0bae38f8ff6340fa96a3a2b080171df9 +#: f427ff4b27ee4b7a8fce152b3bc23bfa +#: fb4eac63a76f465f86d51cceca7a6eec +#: 6a9df72d6343436e8a5d6be1812ec065 +#: eb11758a7b2c402cb33a7b41ba17a62d +#: a2f21d826e4548239daf82f51ec9d0b1 +#: 42cad6f6ecf242e498953ffd5c50d7f2 +#: a81f743bd59b451f9d40ce273fabba56 +#: ce4bd97c3bd5477da9896e3e7538e771 +#: 4b5eb5d3b22a4fa38bc831c6e1040792 +#: 3e94a252c83c4b03bd1e9ecfa77967db +#: 68a44dd043da445ea12f05d8a779ffa4 +#: 4daa78870122409a9737cc4a8b840da7 +#: f219d705bec14828853c9974ba4446e7 +#: 1d4a04d0b263439ab76d8ff9c03ca017 +#: 292ec0c78b3847aebe08719ad7ac63de +#: 9880b415a7ec48a285fff9111237076f +#: bc63b64bbe7b4752ad8da7e54859a6ed +#: 955566e68dd641329600c4b0fcd8c35c +#: fe83ca22103e4d7ea421ed88cd1d6755 +#: 7f2b2b7f0695421aab13e33a5456fec2 +#: a49914e578814093af38466ebd28371f +#: 2ce0d7d3b1aa4454a53d2143991660c6 +#: 4d4d0be1753a4d729b690c9a05c3e689 +#: 3e6b25fcdbcd450dba91025338af56fb +#: 44e8a21017174bda9a57ea2a4dc14ae3 +#: 74d6de6ef9b94a6dae7d1ff0bb769cee +#: 173a9bf61b5d4995ad47759f51e26f22 +#: 2abc4361bbaa41b3a175147b9018b297 +#: 6d76557cfaf549eb9bbc18d2a380ba49 +#: 65437b72490a410498b46504b3275d56 +#: cca3d727dac84c47bc84d7e206ee06e4 +#: ab260c0f21f34f349b87ee89e1e83006 +#: f8b525f4f1a942a79caa29c4f0c9406c +msgid "Returns" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.command:4 +#: 230236e4038a412abf293a0551512e31 +#: f2b7b7f29eb2477e9258c08e49fb3a95 +#: be56128777284faeb144cdd3acbd5e34 +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:0 +#: ../../ext/commands/api.rst:0 +#: bf756d9820a94075834d33924e09e0e2 +#: c9bc8a557c184c6d9f063626b67cc4cd +#: ba9d73b43cc14b0c8711857654f83f62 +#: 3c9ab793d144498097bcfd76a5b53eac +#: dd1387feedaf4788a91e66c7120bb6bf +#: 05d8c3f799b246739284dcbebc3d5739 +#: e33db6d356e34de5945d286505e336fa +#: 45ea3bdc5022438c98fa1d50fa047386 +#: 8ad6c4547b91438cac30d78cc6b56789 +#: 5c50e685ec2041e597da308a07641a2c +#: 4c5fd8c24f5b4ad28a6e1aae56787d18 +#: 844194587e244cf2b26a421da5ef2919 +#: 83f96d62a16b4d479ab2c81dd1f136f5 +#: 410437ffc3e04b40a383df209d8b16f3 +#: cd347a646db3434e925a1c1ee2047412 +#: 13f3ffb767a74f8e9e764aa5a74a089a +#: 631a53d5fb644b1dbbe93c6614a7c4f2 +#: b45285c94435415aa6a5322e8781abbd +#: 5636ea5552c544f5b61e1173aabbd424 +#: efde8f14120541b68759499f509605ce +#: f4e246fdf7f2458baa9253a36a4045e0 +#: 123b5e5640914f0c8b4e3046caba82cd +#: 747e9c0cdf2f4e9bb919c9dc427e2cc2 +#: 9014a07ae4274d518383c0faced251e7 +#: 0d5178bf994b44cf926dcc67b591b256 +#: cc0179f647c24dc9a5287080d1c62d99 +#: 198305646666451196d990dc353636ba +#: 0e729c9e43cf4805bafb0bab9cc41897 +#: aa13bf25f19340fc931e80e3daed2919 +#: 55536d0434d84487aa4b5a9de46e940b +#: b46102d67b324fd8a3c1c4ae247fa8b3 +#: 6cbefb296dbe48689f75969f7d94f823 +#: 378dd7f9c2a64e0189299a60058beda8 +#: 3bcb056fb2e14a0fb068215205695ca6 +#: 853376070e4546b989f18c50a2d9817b +#: df0dfaebe66b4cf0840971e222e3f126 +#: fc5da63fdcca41d5a4742949f05235c9 +#: f78f1ea63f5b418c843b90a4ae431d32 +#: c375ce3994d247d6a33e364f1bd9d4fe +#: 6ea5e8b0482c4afabba65613a086ba89 +#: cb1feaf8d1864f8e8967fed2501ee707 +#: a74def0cb9164572a550eac078434da8 +#: aa41fc6a4d18409c9c77dce7f99309d8 +#: 33138e763a6e490ba8edc4b5886b7e48 +#: 86956fafda484eb7b6ed0829cb7d1767 +#: 14a8e48c5793422789ad67bf6750a119 +#: 8e3a6e72e8d64429ae291bd3f65b77e2 +#: e2a6395d25054588bd7409a44fdc73a2 +#: 39bf884230c5425ead5178816bbd95e9 +#: fd5160c498c74de88495fc1f38963f67 +#: 6ce4fd8be3e5487a846b8f18b99af345 +#: 0267a76e745f496ebac2f5fc635de836 +#: 04da6d3e5f0d41dcb88ba86933b9883f +#: 7ae9f217c9c048188268a44667c76c54 +#: f00e5a1679904dd99325a53559cea3b2 +#: 741c6680afab4fe3aa0a289f44159bea +#: a83a253a37664e9a8948c399d9d48f28 +#: 16b39564d3954e92a7b12a1f25c64c83 +#: 9b1f2a136747442eb33fbeaf8bcc6b61 +#: 1f6d4de5ac9d41dbbf9d083b7f81dcc1 +#: b463df3c1d3048a6a1f8089769de31bd +#: fe82b93d216149d6bc6f7c11f1f67364 +#: 667788284a4e4b98ab12eb9b72090a5e +#: a7bcf257152e41568e5c9bfd3e095ad2 +#: 747ad41c13634c56a7b3238321fdcda2 +#: 92c69035634c45039ab23ae35a56a2a9 +#: 8a35f1268ec34d719d0e505304c0e4b3 +#: 4cd3fc1fb7b0461b8cd154fa33a24352 +#: 5ae0a3a159a14c26a69790f2928af0a0 +#: b30dfb303aa1430185c27e4d8bbf60a6 +#: 43abd81bb452491193773563084cf925 +#: 52d23ac488dc48f8877eafae23b0bce4 +#: 05d1fe7f57ed48ac99c786a3be277025 +#: 7d3dae198d8742ca80610ca6810d7d81 +#: 6f1d03cde4d04924af49c05add22b294 +#: 0788c76aa4ba4a5cb4b42b84bacf685b +#: 4fe998a5992749e88a3f6678f86460e2 +#: b10b28c3a6a54c6ca0e8c585c0a96095 +#: e650530c01974cbca4c868a7a1e0f2f3 +#: 43d06249781c4f628e419d2ad9494cab +#: ac8571583e034545ae6ad137b3725658 +#: a3a5f15b0d3745af8090d4f914043409 +#: e91793ccf87047a48eb3d93b78f35506 +#: 407a05357511470eafd36e4f2c788fe2 +#: 18b0bffe29a44de4b95048caee8b8fc1 +#: 0c10c4a88c9747fdb7b78c7f904b92f6 +#: 6ceb0aca8aa54a2b82d018412c667b2d +#: f0440bd3ec01479d84b07b2845ec6c89 +#: c3496132ff47443a83bed86713660af6 +#: 5ed9024846754a6c81f98930f952c401 +#: ebfcda16d23848faba2eda0fc622a88e +#: 83f34d28e50d49638d87349d48d2369e +#: c9e931c65304424b82d03eb3d0fc7316 +#: 88dcbf6731a34eda9d8149515df836be +#: 03adbb4c0d6245ae8f90636331d7fef7 +#: 10722e3a6685409b8ad039a73479cf66 +#: 53e94d21edab4737b42673ee97fdb49c +#: a53106d257644ec1944e9d3b4bc8984d +#: 09d2baeccc6b4e50adbfb853f2ddf881 +#: 8427bacc036a49d1b41f968e371daf5c +#: 96c4ade29727499b98720312b466a68b +#: 1170ec2e71b8476684bf86088abbe3b4 +#: e2caf495db5f4dab8929e180d1c50547 +#: 2f9d7bde09834478b7b7a7ffaeb9eb39 +#: 82062de15e4440129829cf2b446e83bd +#: 5fd163f4a87043cdba6a9955d62cc447 +#: 3fc621b1e5cb457fa4d0a4d5fa3c0788 +#: 426fa3b6f7d7460e805331555a89a52f +#: 44eaad6b47a04ca6b028bc32f0248479 +#: 33ed8c12d23741c6880f5a1831375fdf +#: ab71507fd6ad44d7b499a3eb319e1134 +#: f3f4f7c74c5744f392b36a45842f16c2 +#: 340c07b1fe934b31a3ecacc8e9a67e97 +#: 9e3d66720c8e43c0a5e32ba2329fa98c +#: 2ed538b041aa44c2b320613c48e96599 +#: 41589e3828da49078bb91ae823e250dc +#: 0f6a54f8979f45209133983947d3ec1d +#: 829f6fc23cf34623af3f6fb81660b56b +#: e6b27635a9c448829a579125db7f107e +#: 0c9e37f6a85e49e9b720efd07e7705ab +#: c0afd01a46504ac289bfe3747e796f19 +#: c34bb5212e8843d885c20cbf2eb7d819 +#: cf8e37c276634dc5ae501654fb8efbd0 +#: a716c5a967d8442bbc7b82f3426a9fb7 +#: 449003e2eb974ec3aef0db94bb004998 +#: 9ee97350544f43a680de15726ab2b821 +#: 3aba723caf9945588969d1373aa7989f +#: 19f330a4b38f4eef82bb04f40448b77e +#: c320de68a70847c492ac9258fdad88cd +#: c095038d9dd54ad6b71ff5735f0bbee6 +#: 6019ea10672a41cda1b43faa43bb3f70 +#: 2a44435a7ded4882b340fc5387e6a3fd +#: c20b2b315eb14cc18665bbbf2c028b9d +#: 0778bc30f0fa40b0b59a1c086dbb4ec4 +#: 57c26ee9cc904968967e5152421774fc +#: c91cc29f60b64e1098531e54ea5eccb2 +#: fb4108b4457041568c615ca39c421192 +#: 007bd23467cd471c97bc420f311d7f0e +#: 16e1af92aaa84a4998bf8f88039c590e +#: efae13a610f14789b73bdf6e5631e0ec +#: eb5d0edddb2242e5ad1c99b6a8b626ec +#: 98cb8f6094104e3da90b331bc1ccd403 +#: 8e87e7dcc0e44256ba07681591c62423 +#: a7d40ee9a7e74f9c8fdb78342f78edd3 +#: 1a2bcda39d6544eda6ebbb3abc3b7753 +#: 1a2e9eded94b487ba88746355f87f315 +#: c1e9972dfeb2440a9437cbd64d80d763 +#: f388e95cee2c4ad4ae133fe8e688a874 +#: 9d778ca7356943e294915c2454341f4a +#: bca1431f8b5a44b0a46557b030175bb9 +#: 7dd702b71aa240a8b65256d56377ddb1 +#: 919f9bbba1a24e8b9bc2f80a31afd5ae +#: 3e7e556bc1bd481587ba0926fee082dc +#: 29199fbb1e004b86a5f4592fdf5c689a +#: f5b004fba9184fef851e993ade68e32d +#: 3c4a3dc146ea4ead9cbc60eaff2e0088 +#: ec7b3bbd3f224cd7a69227c2e940bbe6 +#: ce12df7f58564969b2ef025da0c3c137 +#: b48204507cdd4bd4afae141a72aebf9e +#: edb88d18bd264b3da513d5735f1dbd2a +#: 3905421abd3445898a729fcdf56361ba +#: 9d5d85b51d48428ba902d02b951bcffb +#: c6bf252cfaac43f3b8a2f9e5325114da +#: 3d5f3e9c6b2240e5aaaae350a494444d +#: 58cd9140b3f4426887c8002921da5c9c +#: 45be38589eb04a3c9dc436c195152e33 +#: 93b8d5a1f8d845acaaa628e0aee2bd9c +#: d5341e329ede4d689888398019d87c07 +#: e063f243f2b546dd897d8e9144f72c98 +#: 8baa9f9d35e04a49bf98605d509716bc +#: 77e4fafb7b5f4845b9d186a0206d03e2 +#: 573d5eaa22ce4dc780a6aaeccf6ab4fb +#: 3f7a53494f424a60b48c073223d6c3be +#: 2eb1962e74164689af33dbdcd6274bb1 +#: b20eacae8ea94ffaa1066d4d54a2c9bf +#: c23ccb826df44d9095be6591ad12724c +#: 4822bd824add4f0ab09a328fc2f4aca7 +#: dd27a86c52784759ba6264802934bc37 +#: cfda12d2e66449899f0626017f459679 +#: b9460983100e41ce8238527fbeb18a88 +#: efa535b7405d4f7f90fb6ce5aa40177e +#: 41b397f6177945ee9ceef68e0c931df9 +#: 1b0eb9dd8bd3428c9831b8cb6fb967de +#: 5ead6b799af042958eeaed1bd05a6904 +#: e6669fac714143c1a28bd5e984ebaf6a +#: aff6c4abbb2346e080cebd61df80b241 +#: 1a397f77e0f7490686ebd811c610301f +#: 0c81267eea344c8abdc04c60ecf01fe9 +#: 67328f0420f740749a128086f36201f1 +#: b4f33c4a94234c7484a9720739dbe10b +#: 529d0be102344cd29d2ddc1ed7be2725 +#: 1dc2305956814ab8a8c953dc7fe5a8c6 +#: 7edae291c3174eb1afc62cb68f669d30 +#: 254cccc7f13a4b45add3e24f77adde88 +#: ae3bb04781f54086a470b9b526b20ab0 +#: 11c968dbacca447197fe7278dd3bd128 +#: 35b12322bc8645af98d839547d1acfd3 +#: 7d695c27ebf94d51a91a6952c8a4a3ba +#: 9e287f67d74d43e2a6149db31256151b +#: b1ea4e54fec445b3a62611c599aa6bb6 +msgid "Return type" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.command:5 +#: 0fac82441bda46b2857b66cc3d6fc1ab +#: 44da924bb9b14d1e8a47ed370ae96009 +#: 28f80948aa3a44ce95e516a0d3fc5939 +msgid "Callable[..., :class:`Command`]" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:1 +#: 25ca5d10c25a43ab825740b2fb2874e4 +msgid "A decorator that registers an event to listen to." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:3 +#: 6ced4d446c2447a7b3f807c6868b6598 +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:5 +#: 58e8a1624b6b47c18cba15aa21150688 +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:9 +#: bd32e11d29e74bd6b0f29d4020cbd2b9 +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.event:25 +#: 84c8e89006cc4917a75cff6dd4a7be7f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.group:1 +#: b4303f71de864e7e98b980bd33ef7d84 +#: 2d92005457764c1c8814201cecd4d501 +#: e1a652e67019417a8c29ecd51ae57a29 +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.group:4 +#: fd3c8f26e2e64cbc919c3e72c8975e46 +#: dc51e15c515241e1b7db18a0e7ddfb03 +#: 92772cf7271947ccb22697425ee1c96e +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.group:5 +#: cdd278087924410f940c85c590d6565c +#: ffe6eb92b0224834b83f3814c9c5df5f +#: 376c0ad5ef594812b8845a73d313671a +msgid "Callable[..., :class:`Group`]" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:1 +#: 439a5983b3e34e9ab7954fa7b9042e7d +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:5 +#: 2401d9783e7d4182918ca052d3e803b3 +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:7 +#: 5e016ce55c294e638a73a097f5997136 +msgid "The function being listened to is not a coroutine." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:8 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:11 +#: e21be3ea4d0446efaa81b5acd1c28fdd +#: 55915adcdcbc4935b1637428f964dfbb +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:29 +#: f56714807dea497f8cc547c870355a4c +msgid "Would print one and two in an unspecified order." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client.listen:35 +#: 65dec0b829f94471a23a32db5dbbedb1 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.activity:1 +#: ee245e9df3564ff19f3c70e347412642 +msgid "The activity being used upon logging in." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.activity:3 +#: 533f9a9e3798459b9be6f604992915b5 +msgid "Optional[:class:`.BaseActivity`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:1 +#: 965049efae4b4ed685004789480c0f4d +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:3 +#: a65c13c994b94c719a718b96e4e93521 +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:9 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:10 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:10 +#: 38bbdb3e941a4af0b99ed4c90132372c +#: 3ec982cd2dee46bfbf4f020d2e46a906 +#: 20ea5167076042deabb0d765a6285277 +#: b5243e30022e4747a52c6e85eac10940 +msgid "The command to add." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.add_application_command:12 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:10 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:26 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:55 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.add_check:10 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.on_application_command_error:14 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.remove_check:12 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:12 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:20 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.before_identify_hook:18 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.clear:8 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.connect:18 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:16 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:14 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_error:15 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.remove_listener:10 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.run:28 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.start:11 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_until_ready:6 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:24 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:26 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:27 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.close:6 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.invoke:10 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.on_command_error:14 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:21 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:16 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.trigger_typing:8 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:27 +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.reset:4 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.add_check:10 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.remove_check:11 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.reset_cooldown:7 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.update:9 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:16 +#: 63f22bb531d541109902fec69dcfcbfc +#: 7dbaac0f1ff047cbad5ca6c2242d4dc4 +#: 5f1082c1e4e04874900a56140fe3d2cc +#: 0017e074dd134426b570354c2504b7db +#: bb305a7b77fe4ff9a8e70816d97d46ae +#: 62d9613a1121411c960009687e8cc328 +#: 7d0a457d06344339819fc176a73566c2 +#: 2955a6e82aa6427ea4129e090d9e0e1a +#: d2e6da7f13ae45be9d21b97011a05d14 +#: 7e4abed9dc9d44818dc910ae2bb0e976 +#: db30e1b1f2df4726842b6713f2dc4d6c +#: af9c896fbca541199d50ed6f9311ec05 +#: 9260dbafe64e413cbc198a9f10a91720 +#: fc0edad2f6aa4d3fbdbd0f10c65a35a6 +#: cfe603af3c154dd8a7beb05aaaba8213 +#: 5d8665c8c2854923b6e7315ba0984435 +#: 3833ded03a7b48389047bc250278dd32 +#: 8058362593a34bc19650b48c2d7d8deb +#: 271f8057797f4e33923ba80a9ce189c8 +#: 0f750c96fb33406780918a98a24e5e55 +#: ceb7ee374f934af290576880e7df5479 +#: 22a9fe5c15834b74a6c57173ce15a3e0 +#: 61b2cdaf7f39461a95ed5fc7b700e0cb +#: fe5040f17a834586b3aee6ed2701dde9 +#: dbecec9bf2d74b6496cce6b41b22f230 +#: e4a8df0e7fec4768b9201f49ba13b197 +#: c0d8d42ea8b940c9a8b2253649e0d513 +#: e03239f359674e139b092cf33b2fc6b8 +#: ed7bd3deb7b5475192ac0e12f3a9a1f5 +#: 9dc6b1cc1a6c4f1fa23bb8f4ffc57c9b +#: bf8d38b9141e4db68d4b7911d51d1762 +#: 00fb0b591ff04252a842e965f0172c6e +#: 2ef2e59ed04442789d04e322c3de8868 +#: f8d97461291c4fdc92326bc5c3e96e2f +#: fad3cf36246d4675b4aee2dff129c740 +#: 85576a5a839f49faaa0ca88bec09eb3a +#: 23d9f70445c74226866de8a0af8343bf +#: e295929821514d8d86aa6070b4705906 +#: cba077e4fdb04ea5be8dfc4a772fb466 +#: cf401b782e5e44ab8ca8b6859fb5c8a8 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.add_check:1 +#: ca5a955495a14c66abb490d1030e0cd0 +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.add_check:5 +#: 90a3747872a741d39fb20a4e62affa2c +msgid "The function that was used as a global check." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.add_check:7 +#: 6434458ce10745d6a4d2a97b9da6450d +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:1 +#: 611c86c2efb64169bc1e0f178722f5f2 +msgid "Adds a \"cog\" to the bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:3 +#: 9dc96a6bb3b84a9d9242c5e1d477d2c4 +msgid "A cog is a class that has its own event listeners and commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:7 +#: 5a7030646e2649debc2d67517dff7e24 +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:11 +#: ff50388be9f44e8da25ecebf5b0a0b70 +msgid "The cog to register to the bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:14 +#: da93463a84aa47688b8cdfcd1763e98c +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:14 +#: 3076fac6693049dca8d5d9f83410f565 +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:20 +#: 3a5615d016404f33be6f8b2e7c7b8789 +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:21 +#: 2ea43d18eb7849e2babe871b171547ab +msgid "An error happened during loading." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.add_cog:22 +#: c3e4756dc3be4e039b57e146c8ee4b70 +msgid "A cog with the same name is already loaded." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:1 +#: d4bd8f7f9afe4890b60e3c7608d4a53d +#: 892271b7879440eba8bad74a82d01f99 +#: d1e0d94db40e44459a936f043ca9e78b +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:3 +#: db096b0658f14eb398b8c0901a0bb4a8 +#: 6e7cfb1130eb428fbd9da148ceb6848a +#: 4502f75813f347fdb927a6dd207e1335 +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:6 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:6 +#: 881af903b3834288bf30777981226c3d +#: d005cfa388ba4c9c93b28569e45a9895 +#: 44f6e8e57da54e7196c6731ccc8c3d42 +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:13 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:13 +#: 7c9098b1dbc6448dbaf83869211f25a2 +#: 4058311b664443489c2bdcf7ccdf0294 +#: 0de076952b5d4426acc998feec0b5862 +msgid "If the command or its alias is already registered by different command." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.add_command:14 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.add_command:14 +#: 523abcff2f2e4510b53afb5e45c51c91 +#: 0624e7fcbdab454e8a678d05ead1d15a +#: aab0a6a2a55a407d9eae2c08ce2e509a +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:1 +#: 02bd817bbaf44c34a50afab9bf939469 +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:4 +#: 034fe8fbfb664caba055dda25a8d01f2 +msgid "The function to call." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:7 +#: 4894173aaabd439d9e19b2422e82fb53 +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_listener:10 +#: 88019ec42e9b4afe90bf593a2293878b +msgid "The ``func`` parameter is not a coroutine function." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:1 +#: d05412d810f4441fa9fc55ed14abaccb +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:3 +#: 31f9b3425c8846d0bf9819c936651f8f +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:9 +#: 9b1f1c7e6e204527b0b7f0e584cc5c50 +msgid "The view to register for dispatching." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:12 +#: e571a3cbd785484d976fd3b2fd0a4cde +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:17 +#: e785ad522f2841a0bae2684ff1da2749 +msgid "A view was not passed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.add_view:18 +#: 41cdd2c26f04437d9e50356565bbe005 +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.allowed_mentions:1 +#: 01a7d56f6fc64da79e759f8199be445b +msgid "The allowed mention configuration." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.application_command:1 +#: 4d61bc9673774eaf9ec7b47ed96bb05c +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.application_command:6 +#: 2322bb50ae2547e7b1a75b809b816a29 +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.application_command:8 +#: fa1dea0535a34d4f970b6c1933b766d6 +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.application_flags:1 +#: 3891c47a359a4c85b46a4ce0c7583dcf +msgid "The client's application flags." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.application_id:1 +#: b16cae8c17764094ab2a6221966688d1 +msgid "The client's application ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.application_id:3 +#: 3805665860b74387aaf8deeb87f400fd +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.on_application_command_error:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.application_info:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.before_identify_hook:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.connect:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_dm:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_skus:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_sticker:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_or_fetch_user:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_error:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.start:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_until_ready:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.close:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_prefix:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.invoke:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.on_command_error:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.pins:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.trigger_typing:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:1 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:1 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.__call__:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:1 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.on_help_command_error:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.prepare_help_command:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_error_message:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:1 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: ed13365273a643888369cf52b1e8fb1a +#: 236578d5657f4b75a93140c452d6f243 +#: d878c81f64ca41a3ba4b287fe6201669 +#: 78993876a1f6444389ced7ccf1897b45 +#: 649c19de56d047de904a5b185d87a42c +#: 5718794be4e14211ae9436403f12609e +#: 5b000a6fdae3492da6ed60fb279a55dd +#: 4221da88b8e04f5daa5831179d2c8102 +#: e3601a366188485199c64c569dddce15 +#: 84206d2ae0324e83b7a28e37d5dc1140 +#: 41de831c34ab4a10a10e0efcf817263c +#: a429f06c46d147308e50e9a00d3c0ebc +#: b29f0f791885488596a5ff1ec37ba539 +#: b42983e9e7764522bb4f34f045ad1da5 +#: 52ecf1b64db9436094a380bfd867b180 +#: eb09d3aeb7ee496982cd2147e719a780 +#: 40abc24f54c34f2298f5012fb5ee7aff +#: 5978a98a88184e328613785e29a04c93 +#: e377492e6ddb4255aa4fe483b4e6eadb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: c4f8255d8d12470fbb78a398ab3e333a +#: 264a7b5de6ca4b24933aa089863323c6 +#: 98a5dc75f39446dab61d2fc7544b604d +#: 17768b18b2624c58bf8e19f31a6d60f2 +#: d5f6c25376e744fc823b885471c12c64 +#: ac7d696de43146fda0e84dca52eb5485 +#: 3b4e2ac738544b84bf8de34bf4b5dd14 +#: b98d934e511a4aab8cd9d330a3f0bc58 +#: 46221d537f1f4adea8ecacd11f485175 +#: ff7441e1c9764f9687af3efb13c37d02 +#: 7bcd8ae9298840639eb4aa1b4a99cb6b +#: 732f179b3e2f438e8b5ef22261fe5861 +#: f8abef7829fa4e6dba0f23345636bf4a +#: 2408560a758e452e8761781c84075941 +#: 905daaf71ae043e5914b3a44e93a990c +#: 42d77ddbacce4aa580f7fe7058dd41ef +#: 9ea867f5611a400fa0b67e6d099fead5 +#: e16ff37842634704b4f0530e3dcd4a62 +#: 8e280c1cf06246a5ae800d7e1d2227eb +#: 2d59e7cfee054d889a776cc43c2375f3 +#: 3293a18ac7cd4c729a26c1a2160c2d59 +#: 3e35ac058ea742bb94fbe040320b4e74 +#: bf8748a6648740ca8eb8517ac814f254 +#: 9fd1ecfee0de4703a6624bc2191f5b62 +#: 625b8d9a600f47829b5d2e2806996ab2 +#: c536482cdb6f41728deb2f5384c34325 +#: eb8a614b9583412ba3cbec89fc5bedc6 +#: 8d5d8cf44a1143208772382e441a15f3 +#: fe4bb802cda24bcca261d0efa60e2fc0 +#: d424f44f65dc4c50bc16b509389106d6 +#: d142eb0c4ff2401e9ae3860991904009 +#: 5df34a4108b7431d8a5656b5cf449873 +#: 9f053bc6d1f644e781a979e983b2c95a +#: 134cdbc85dba4f1184ccafd457f1bbae +#: e2471875aefa47feaf42d6a0af230d60 +#: b5426cfe1e154ab3afd7fbec90de22c1 +#: d9394ad7a4984b508968339e45859465 +#: 184c7284df1a407c854cd16012185558 +#: c597a998f359409d8b1418ffc6cf95e0 +#: c6c00919e76f4bb78a4895035645ac93 +#: 09a16b946fc84f049cf7e7d0aa977f15 +#: 65c20dcf80e644d6bce09f44344f599d +#: 9623a8db808b491fb24bd9d950a85089 +#: d8852ada45eb4b1f902301aa343561a0 +#: 861ce58a28aa44289ac86ed278439599 +#: cebc3fd99adb41a8be98eb420a3c8eb3 +#: 7e8a29712d3d4f18842634d1f4ffdfac +#: 9114744f9d9e421a97218388cd529e1f +#: 13ce737aaa8241f783a0f83de8ce8712 +#: 5457d4508f974818b56b203b9e99f8e7 +#: c60c23c1cc8d41638de2ed02639ab6f6 +#: 1217521f53e74caa962ff142689586e9 +#: f66a2ca1ac8a482d807293ace58cddbf +#: 09569ed1b88247b6aedacbc96a83da9f +#: f1182fab7cf548379839ef0b2eb9abd8 +#: d37511eb2c264a5385c333b6ebe8d798 +#: acfb781e7d374ffc8932bdee91dbec55 +#: 0347f0a283764590a3cfb68d963af3c4 +#: e77670865e2f4f03b5f095d55e443265 +#: 078989a1788e4144818107596b1d1f21 +#: 219c2350644b4931867c831eed9a3a12 +#: d3df27ff4c7f4b99b5c2d6f191b016fd +#: 966b4ce0c24e4421b307053af581ff1a +#: f32c399501b84ea4ab5f2024d1598728 +#: ef4a329fdf3a43eab7e91952b6f18d13 +msgid "|coro|" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.application_info:3 +#: 58bce22f218c4d7e972f6d8603a932db +msgid "Retrieves the bot's application information." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.application_info:5 +#: 20ac1c8e924e4a74bfc8271a895ac046 +msgid "The bot's application information." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.application_info:6 +#: ddd2ee7b903d4405b001c528caddc533 +msgid ":class:`.AppInfo`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.application_info:8 +#: 4bebc8aa589942539aac4fc7cb39bcb0 +msgid "Retrieving the information failed somehow." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.before_identify_hook:3 +#: 37dcfe79744144d6b82955792c13e62b +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.before_identify_hook:7 +#: d04199f41dda4861a2bb97a9ceccc58a +msgid "The default implementation sleeps for 5 seconds." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.before_identify_hook:12 +#: 6ddc40ac88e94492a8be6d87f1e5473f +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.before_identify_hook:15 +#: 968a4b1e18b74b5fbbaafcd5a53b8e19 +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.cached_messages:1 +#: e212e868790742248ba3a8d76f5ea528 +msgid "Read-only list of messages the connected client has cached." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:3 +#: 1a5853c1b8704ad5b75e31c63d16a5fe +msgid "Changes the client's presence." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:6 +#: 51fcf3308e2d482c8ccfe51009f5ae62 +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:9 +#: c6e5a0e37494498da3615b0e041001e2 +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:13 +#: 1b5a4b8162af4194b8d525d26a63f617 +msgid "If the ``activity`` parameter is not the proper type." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.change_presence:22 +#: 8ce0e28322c74e469822ed7531e3c682 +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.clear:1 +#: e22dd1f501464842b709455fd8d77a6d +msgid "Clears the internal state of the bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.clear:3 +#: 15885728217642229cd612c0fcb9525e +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.close:3 +#: cbfb9a74a2ec448fa8ac94b59aac9515 +msgid "Closes the connection to Discord." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.cogs:1 +#: ef290ef0d76a4205bca66cab42c47b0a +msgid "A read-only mapping of cog name to cog." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.commands:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.commands:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.GroupMixin.commands:1 +#: 585e5854876b422d856c9a7d7f4f3745 +#: 23309f092f064da6afced5088b16900c +#: 8c91f0338ece448e8fe37642fe9d364d +msgid "A unique set of commands without aliases that are registered." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.connect:3 +#: 8e0bc55d2ece473b911a77a7184ef59c +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.connect:9 +#: 6d7f1882aea04a02a4ef6b80ced08594 +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.connect:15 +#: 669921a33c214d4aa713229f40eea540 +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.connect:16 +#: 61b4497757cd4290acbdefb487ebd4aa +msgid "The WebSocket connection has been terminated." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_dm:3 +#: af3102965b034ed883227ac3904af51c +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_dm:5 +#: 84eb1de364fb4f44af43a334a3f0a7bc +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_dm:11 +#: 26efd0e745864817a629901f9d4274e0 +msgid "The user to create a DM with." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_dm:14 +#: a5eed69dc19842e7be8ca4132ff21f2a +msgid "The channel that was created." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_dm:15 +#: ca7c03d41e78401bb047c80cf470d632 +msgid ":class:`.DMChannel`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:1 +#: 32894198e43c44e6be5d31d30af3a30d +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:7 +#: c37bcf8a3fcc4623a52e5842e62a1bf5 +msgid "The name of the group to create." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:10 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:10 +#: 70182e1186984166914ebe5256fd2312 +#: 39b074dd62fe4a2c9593642d30d91cab +msgid "The description of the group to create." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:13 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:13 +#: 46500bc4b09146558d44dcee21047fca +#: 3daecf48b7c64c31b108f8dd881ff771 +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:17 +#: 3e5a4860a9d1483cb61b40ce198e5fee +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.create_group:19 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:17 +#: e95710966abe488e8ce4970bd2f35160 +#: 7afd9a7e1abf445c9185ee1392202fd6 +msgid "The slash command group that was created." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:3 +#: 583248c24e104f60a8d7b44b63a93d8b +msgid "Creates a :class:`.Guild`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:5 +#: 480ab82fc12b401f8b75d5ac50648a04 +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:8 +#: 751a75562aa647628af12ff17756d819 +msgid "The name of the guild." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:11 +#: 75d40bc85a17414a943100275453e7b5 +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:15 +#: 7ca63a3c7aca436ca90a0d584ad7a2bb +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:15 +#: 46ee421067d246aeabd1ba31f8c97032 +msgid "The code for a template to create the guild with." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:20 +#: 4312ec6459c5431e9821af9fc31fb0d5 +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:22 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:26 +#: 97536bb06f8049b5837ac583ff2dce33 +#: c91fefbf98ca4abfadde5d5caadb9dc1 +msgid ":class:`.Guild`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:24 +#: fe6c3f12bfb54bee919c57282004f16c +msgid "Guild creation failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_guild:25 +#: 76f88cf22b1d4c1ba41c3a09a320adf1 +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:3 +#: 0149655ae5be40f8b70d5d69362b94f0 +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:5 +#: 12997acdfb41427eafde4adf144e6b6d +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:9 +#: 16bd71de63f54315b81153e65c2efa00 +msgid "The invite to revoke." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:12 +#: 3b8ea28dfd4b4aa6aae2fba880397f50 +msgid "You do not have permissions to revoke invites." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:13 +#: 9ce1620b29d14465babd2e9ef51f9c80 +msgid "The invite is invalid or expired." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_invite:14 +#: 0e1b8d18fdd444df8b1e1bc2bfd61746 +msgid "Revoking the invite failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.emojis:1 +#: f053fc31a26848abb5f0b22c31bba150 +msgid "The emojis that the connected client has." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:1 +#: 55996a99ae5a4b76bcf2980286829ff0 +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:6 +#: 59b671a29aec481bb8db91eb772084d7 +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:9 +#: fc74e3fd9066451da15dbb859f393f0b +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:12 +#: a8980247c8994cc6a3315e3acd06b88b +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:17 +#: d2f6b335c5d149edb5739256c2d0ac02 +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:22 +#: 4468fb7df14b42d6b759894e1d023b0e +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:27 +#: 103afa9d7a7c469186412d2b0f7fd59d +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:30 +#: f7befb3d512042b89e8a107e5a39f44f +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_members:0 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:0 +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.walk_commands:0 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:0 +#: db580d1226264744a222ffee4584ffd4 +#: 1ac0e449c2064ee3872b93131ef5099f +#: acdddbfef28f4deeba67e1c0eeae3126 +#: ea109293b5a24a78a208e1126de05892 +#: e2d006ad6c904920bebc27cd7a383901 +#: c19c4b7776b34ae6aca8ac4e0e0c2335 +#: b632d44d66dc4ab6be8e6a4471d0dc2f +#: 973dbfbb2944438c86af2250038d403c +#: 56cec2303d294bfc8ea945e7e3408a44 +#: c579cfce168c472aaa85931c05b535b7 +msgid "Yields" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:34 +#: 22f913aa3bef434cb525ae9ec6673c3b +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:36 +#: dcca79b2fa794e09b838c1ab709d75b9 +msgid "Retrieving the entitlements failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:37 +#: 295caaa8c9a047a1a1ee5c2029093ff0 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:39 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:40 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:35 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:42 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:37 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:20 +#: 3321eb8445bb48ffb68d9cb74a155012 +#: c41d42eda335471399cd63c006bb2131 +#: 1713b7f68ab24b69904742961b2e7c20 +#: 7209557886c143d68585d84e0a25ac60 +#: 5d62867ff1e340e397e9cc0dff966391 +#: 87adc0eb19c9440fb3d85373712d88be +msgid "Examples" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:40 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:41 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:36 +#: 9c43804aa1e84f4db26daf70ceda2518 +#: 94bc24f4c61e41b5964c4a1322f961f1 +#: c44882f2d2fa4e16be22d009df4a9e97 +msgid "Usage ::" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:46 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:41 +#: 843417dafe404d64bc7fa228cb7035a1 +#: 30d73cc7fe64490fa9bc06ee689bd9ca +msgid "Flattening into a list ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:52 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.entitlements:50 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:46 +#: f3a460b6dbc644f1a519e478316d2ace +#: 890c3220aa92482a88d9eb963d89a73f +#: 828a83477bcd4a6481593e689e4c7a6e +msgid "All parameters are optional." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.extensions:1 +#: 8e4eb4c3e9b145dba548425d3c8bd29d +msgid "A read-only mapping of extension name to extension." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_application:1 +#: 97276bbeae3c4082aa2038967c3d1a7e +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_application:5 +#: c1b69445d0ac4ea887666dd2f395ccab +msgid "The application ID to retrieve information from." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_application:8 +#: d55c33490ff042be856a57e1e3950e4e +msgid "The application information." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_application:9 +#: e7a5155c45d6429799f5a97c8dfa4bc0 +msgid ":class:`.PartialAppInfo`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_application:11 +#: fd59854a364349e9be47834da22da297 +msgid "An application with this ID does not exist." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_application:12 +#: b599a77bcabf40d6aa2b743085912ee5 +msgid "Retrieving the application failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:3 +#: f979de9b2d7e43efb9fcc960cc1168f5 +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:7 +#: 1b2978a016b84e08a0154c5e484807fb +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:11 +#: 88777b1026884b65845244f98566ac70 +msgid "The channel from the ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:12 +#: 27fa5ae581504a6a9713f76e82cc767c +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:14 +#: 7325a3b3e22f45189185a1fbd5628349 +msgid "An unknown channel type was received from Discord." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:15 +#: 9235f18a77de465ab639f9dedb10cb0b +msgid "Retrieving the channel failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:16 +#: f1d9c0f459c0447fb1203723387ced8f +msgid "Invalid Channel ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_channel:17 +#: 9410d10bcdb94e0b9d7c7f7c89b65810 +msgid "You do not have permission to fetch this channel." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:3 +#: de71bd64cf04416ea9bf2abe61ff72ef +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:7 +#: edb1ce0678394fe9a6f1189463300018 +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:12 +#: c79ec39844b242ddab93abb4013a80bb +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:15 +#: f3271bc911514fa7805b7c965fb3840d +msgid "The guild's ID to fetch from." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:18 +#: 3b20121f198d4f388ed94fe5e12cdba9 +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:18 +#: 732356fbef43429eb694993f26d59533 +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:25 +#: a3f16751f69144a3b4797e7f1b235a0c +msgid "The guild from the ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:28 +#: a68501f7e36b4401a713f42b2c3a2f1e +msgid "You do not have access to the guild." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:29 +#: 7b41d7287cd448e680bd03c2ebdf67a0 +msgid "Getting the guild failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:1 +#: 22fe20229852494988db210ec83c4f4d +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:5 +#: 4f617e895bd74f44b301bbfdc7c4d06b +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:10 +#: 183ae9d745be416ebb36824adc018c25 +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:13 +#: 5e0f42cbfd094760b0f8d936646ebd13 +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:19 +#: f76547af39e240eda917471e6066d68f +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:24 +#: cb18e3313c264059aed626e8ca209206 +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:29 +#: bc466b15258f4b2aa8ac9a96e0f937d7 +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:31 +#: 15f4a4f866324c7ba489cd589b442544 +msgid "Getting the guilds failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:32 +#: 75ee4f3a774e4d8f987a57c3125133f5 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:3 +#: ff98e5f070514ea2b279d2d1f6472a4f +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:7 +#: 7fde0851174d4b20815dc8e56fc1e221 +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:12 +#: 7069a208e047405292e67ba908588d72 +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:15 +#: 7eb4713ed1164e76849f0cee607b077d +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:20 +#: 009f29d2f1774d75a283c895fcc1c121 +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:20 +#: a05f7b7813ee445883dbc3cbb934d233 +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:26 +#: e450c21618cc4c59822e7eca956eb52f +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:26 +#: 1b421bdc1a804a888d03595605dccbc8 +msgid "The ID of the scheduled event to be associated with the event." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:28 +#: 0a8572f3c1154620828f50adc2fc3755 +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:34 +#: 67ada2da2c8f457abcdfe820c35edb34 +msgid "The invite from the URL/ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:35 +#: f4512599faea4485b636174c2e95a371 +msgid ":class:`.Invite`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:37 +#: ae0ccbddaeb4447b81059e5f08572ab7 +msgid "The invite has expired or is invalid." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_invite:38 +#: 7fa0a78b22de41ed8f3547cbc22044fd +msgid "Getting the invite failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:3 +#: d96e9f2b7e40438c9c764c153268da08 +msgid "Retrieves all available premium sticker packs." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:7 +#: be5f3a4b0acc431c9d9094685b52c871 +msgid "All available premium sticker packs." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:8 +#: d46c4e3e7bd0488c971b6236c132c575 +msgid "List[:class:`.StickerPack`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_premium_sticker_packs:10 +#: 6be215fce77e413fbf525b18952eacf9 +msgid "Retrieving the sticker packs failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:3 +#: 97b00444639641fc920ebe9efab0d1ba +msgid "Fetches the bot's role connection metadata records." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:7 +#: afcef3e1573241dda22efc2bc8eb0113 +msgid "The bot's role connection metadata records." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_role_connection_metadata_records:8 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:12 +#: f85d9e595c1d4f359d02d7b2baf0b555 +#: 1c6038fbd90940a99452e42246965fcd +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_skus:3 +#: 1d947818db1f4e21a9a1a157a728523a +msgid "Fetches the bot's SKUs." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_skus:7 +#: d7510512f1274c79ad9b92b41e15793a +msgid "The bot's SKUs." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_skus:8 +#: a17b32aff2164b37be4992da3fa602b3 +msgid "List[:class:`.SKU`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:3 +#: ff7eb61902374a9b9694a60b27e0b35f +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:8 +#: 29afd240aa184ce2b8ed8ec77aaba1e9 +msgid "The stage channel ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:11 +#: 0c2c6ce8c1be4ce989544e552be5a9c0 +msgid "The stage instance from the stage channel ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:12 +#: b7086bac74e049e7aaf21d056f2891b3 +msgid ":class:`.StageInstance`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:14 +#: fa27d36619154f23b87e1454acdd2c5f +msgid "The stage instance or channel could not be found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_stage_instance:15 +#: 34b64cf26dd147618b0f7319a1740988 +msgid "Getting the stage instance failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_sticker:3 +#: f4fa9ab7c1a24513b89988310ac21c10 +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_sticker:7 +#: 29648dc231984792ae7aa4469ac255e8 +msgid "The sticker you requested." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_sticker:8 +#: f61c55e61f634f758236b63c220ed5c0 +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_sticker:10 +#: fc7eb527b8b34720a79877daef24b860 +msgid "Retrieving the sticker failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_sticker:11 +#: 5174684b72234a59aef76d140423d20d +msgid "Invalid sticker ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:3 +#: ba25538202404ece8e0799e24cc225e8 +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:6 +#: 7b26287c2057457497765948aa0f9c14 +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:9 +#: adcdc3cfb5d64c07946c55aa2e3b0466 +msgid "The template from the URL/code." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:10 +#: 2973bc0fd60c44818c36d29ab2bd1156 +msgid ":class:`.Template`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:12 +#: e4b1d12659f942f3bce704baf2b2f6d6 +msgid "The template is invalid." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_template:13 +#: d65929c5b5a04a258026ede0724fc4df +msgid "Getting the template failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:3 +#: 71afe2141b384fa5b9855d506b0f85f8 +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:9 +#: 63caafa99b464ecba062135b46365975 +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:13 +#: 50a668aa170c4373aac97fc0a8a14b8a +msgid "The user's ID to fetch from." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:16 +#: 0647be848cbd4b258ebcc87840b89635 +msgid "The user you requested." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:17 +#: c908af689e304ea3bd9f626173a93765 +msgid ":class:`~discord.User`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:19 +#: f567052fb055456c8ad1fbc3829b2ea3 +msgid "A user with this ID does not exist." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_user:20 +#: 0fa0e89be2e041a6a5cb91ce3b84f051 +msgid "Fetching the user failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:3 +#: 9b847aa5ea2b4c86b5f64749b6132bcd +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:5 +#: c5cc8c5449904509b773a938723d081b +msgid "The webhook you requested." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:6 +#: e9b26972e0e8420a861e3228ac815486 +msgid ":class:`.Webhook`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:8 +#: ab91f98f4cbf49a19efa88ac091db2db +msgid "Retrieving the webhook failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:9 +#: 4755f27ecf194457b272d0eb7a579cf4 +msgid "Invalid webhook ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_webhook:10 +#: b6b0773a5d794264aad31f84bb06e24d +msgid "You do not have permission to fetch this webhook." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:3 +#: 2f3d59f28dd84376becd6c9687f23b72 +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:7 +#: a56e920a963d4c6180465244f8ea2461 +msgid "The guild must have the widget enabled to get this information." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:10 +#: 35b8312d608f4df0bea14aedb684366f +msgid "The ID of the guild." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:13 +#: efeb960cd7004534adc71634f17ed0cd +msgid "The guild's widget." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:14 +#: ce6c7c941e4d42699364e7e4595e5773 +msgid ":class:`.Widget`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:16 +#: 167e8f21acd347249d24f6d8970351f4 +msgid "The widget for this guild is disabled." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_widget:17 +#: 7f5a896385554d7ea4671665ba911293 +msgid "Retrieving the widget failed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:1 +#: 85ef0a2cbac449e680f8f39698ec1a9c +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:3 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_members:3 +#: 72d83d8cefd0467bbfcf9ddc6b6a47cf +#: c91d10a08ad54d2980f75fb326863880 +msgid "This is equivalent to: ::" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:8 +#: d82a2834be2b4be48f9e8a3c5c8a6c14 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:13 +#: 32d5a41f29ab4eab83ff4181703345a6 +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:17 +#: 9860d3eda1264a0c8df1f138ffe0bb12 +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_members:1 +#: 9dfe9cfdde67409dbe4f8f536a632605 +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_members:9 +#: af882d2cbfb6416a9e8ae82fe4d00b7d +msgid ":class:`.Member` -- A member the client can see." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_members:12 +#: 14a44c60d938480094e1f6dbbce5caf2 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:1 +#: beeb38432c18467199e1986a4a5a5802 +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:7 +#: c33347ffc3c742ffa39ad2da8713137b +msgid "The qualified name of the command to get." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:10 +#: 2f30620e074f4420a037b25f8352a23a +msgid "The guild ids associated to the command to get." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:13 +#: b6355726cccf49c08342b8e9bbe0f50f +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:16 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.get_command:14 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.get_command:14 +#: 8075abb274e04650a70502fe718d48e1 +#: 15245c085bcb42249d146001fb0e9eff +#: 61d7dfaf655048a0bef96cd484971a76 +#: 68bb57ffb4654610a50b11fd061626db +msgid "The command that was requested. If not found, returns ``None``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_command:17 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:12 +#: a0421f9c994a4d42b5d1d086df607ef7 +#: 3bdf7a0092b1428a84bbe90bf86388e6 +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:3 +#: 211fd50ce0b145a58e93f891f7e62aac +msgid "Returns the invocation context from the interaction." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:5 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:5 +#: 5ff022119a8143e9b08a979f66a6e2a0 +#: fbf93b5c064e43b0807598d6c532752c +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:9 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:9 +#: 976de055999f46f58eea47f454eaef7a +#: b9d64120bd3e40aeaa2026b376327e25 +msgid "The interaction to get the invocation context from." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:12 +#: 0802b984866b410088e3bb08e945ee73 +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:17 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:22 +#: 3b38ccebb4774f71be6c3c835dd6d70e +#: acebce41b9a34130888fdb743c42a8e8 +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_application_context:19 +#: 31df93db9f4145448a26c7500326286c +msgid ":class:`.ApplicationContext`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:3 +#: 1557cc6eb4f447ad9db07037606871a3 +msgid "Returns the autocomplete context from the interaction." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:12 +#: 42a5b4ca86ee472ca7a3804eace741a7 +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:17 +#: ca667b8dd303434b96f15be6e466fa15 +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_autocomplete_context:19 +#: 75759b0976f74cb6b002eed64c030ee9 +msgid ":class:`.AutocompleteContext`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_channel:1 +#: 54305eefde134b89aedcd1a998ec40c6 +msgid "Returns a channel or thread with the given ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_channel:4 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_emoji:4 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_guild:4 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_message:7 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_or_fetch_user:6 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_stage_instance:6 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_user:4 +#: abb8574be99a40e3abe788514c73ab7a +#: afd6eda8a5f144b19cb3ed40a7b4e04f +#: 81e0bddd996241c1b7d1470b3534cad8 +#: cc82d2793e8f4da891b833427ae14105 +#: b51bee5c31e34e7687b9c89ba87cacd7 +#: b11f18432b554f9bafa438846db23d84 +#: b49b10c9b3a14d3ea80f2e7242c954c5 +msgid "The ID to search for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_channel:7 +#: 107b87ee058841a9966abb7b7ccf4fcb +msgid "The returned channel or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_channel:8 +#: 7f38faba9ead4fa386a53e29f69d7559 +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.get_cog:1 +#: b4d2e92605154bebadcedcbf79765885 +msgid "Gets the cog instance requested." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.get_cog:3 +#: bb4e1d06781a402ab963ee718abec1bc +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.get_cog:6 +#: 5ecdd5ca3b364d2bb11d4214a316a07a +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.get_cog:11 +#: ceac76e5ab5e40dea8f50d62ced7e0f9 +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.get_cog:12 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:62 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.cog:10 +#: 076958fd76f448899e7a5f907e409cea +#: f91e8bcd7ccc44f48bb2c8c5c2ea2483 +#: c079fd75bcbd446a9d7bf286b0a369f1 +msgid "Optional[:class:`Cog`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.get_command:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.get_command:1 +#: d555628fb6a74c5697817061624609d9 +#: a878a89212db455e8c932dfc3120695c +#: ef60b7af423b4cccab9ae7a4f73f1af9 +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.get_command:4 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.get_command:4 +#: 77d72aaabce64e60a149d21b1319d604 +#: 6352e9580f554ff89cfd5df68e44d0a1 +#: c63223ff1a22412aad8ef308372cfcee +msgid "This could also be used as a way to get aliases." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.get_command:6 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.get_command:6 +#: 3f540ff7c6ba442abc0635a2ce276025 +#: 52e0928022c641e8b0fafe5af9a32e65 +#: 6e471f9b84a44b74af71d3a4921c3d95 +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.get_command:11 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.get_command:11 +#: d9354bca6a4948efb9716c2410e9413a +#: 2d0902dd12dc4672bdaa75b732eb7e92 +#: a567dee9e5e443fdbb5c25e4ff7d8251 +msgid "The name of the command to get." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.get_command:15 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:56 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:81 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:103 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.get_command:15 +#: 98d36fa1cabf419197df81cba05fdb4e +#: 9f8ffa4d4bf04e68981647922c22f97a +#: 1508a90e60e54ac4b8f621fade0d01d3 +#: d569f3e258b148f99766a4e775f47bb9 +#: aebf89430c844c40b9bcd601fd45d57b +#: 5c3e38b36fa54c8782e777bf38268ff3 +msgid "Optional[:class:`Command`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:3 +#: 7b7c1555a358410c85f6ef2538a9156b +msgid "Returns the invocation context from the message." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:5 +#: c65ae05ccc974f74b5932810e2ba0643 +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:8 +#: 5291ea7e7d094bb28812eed968557647 +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:14 +#: 8b35a61c7ba94b27a0c920be2cbc9a74 +msgid "The message to get the invocation context from." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:17 +#: 4106c84ada9b403a9888f3aca451fac7 +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_context:24 +#: a560748f69f04cf0a14045b10804954e +msgid ":class:`.Context`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:3 +#: 7b604a1feb4d46a2bca090967d256ef8 +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:7 +#: b60a51ab863e464eb9c454fdae9c6a22 +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:13 +#: e6a978a1641c44a283815caa0a1909c8 +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:16 +#: 500100e533c44af7b7407da993c87eb1 +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:19 +#: f817262ce5e64a8590082a8280041694 +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.get_desynced_commands:22 +#: ab7dff05807644ed96e2b974b63dff7e +msgid "List[Dict[:class:`str`, Any]]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_emoji:1 +#: 85c87b8fec81465c9020b141be856fb8 +msgid "Returns an emoji with the given ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_emoji:7 +#: 157f1b3c941147a19ce8edf840834d4a +msgid "The custom emoji or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_emoji:8 +#: 1c0cbebe556443ec8b777892bbb413ca +msgid "Optional[:class:`.Emoji`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_guild:1 +#: 3c43e6dcda3848efb665d49d3cb97ad1 +msgid "Returns a guild with the given ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_guild:7 +#: 0351a20e8ffe40e09099eb75e30dc93d +msgid "The guild or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_guild:8 +#: 4df5d4e82b5c432789f6a9477c590bd3 +msgid "Optional[:class:`.Guild`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_message:1 +#: ce8c96bbbff74f8bbd3ebd9b88d31149 +msgid "Returns a message the given ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_message:3 +#: 560f12cac3994e419d298070a28577bf +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_message:10 +#: 3faa4e73ac324172bd8e447ab0a92e16 +msgid "The returned message or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_message:11 +#: 29a148422678430dbb20acdb70e8f5cb +msgid "Optional[:class:`.Message`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_or_fetch_user:3 +#: 275a6d7b15584cc595412689b620e5d8 +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_or_fetch_user:9 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_user:7 +#: a0ddffa324eb4f69b621dc78d6085347 +#: 2f0313340aed49349ab28d2ac4595d70 +msgid "The user or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_or_fetch_user:10 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_user:8 +#: 6750b7f88cee434d86d97c6e26df794e +#: 337ec795f54b445693af34f534760827 +msgid "Optional[:class:`~discord.User`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_partial_messageable:1 +#: e430c83c877c4c3cab0b0160e4441a7c +msgid "Returns a partial messageable with the given channel ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_partial_messageable:3 +#: 0906235be1c847718975e2d5950d3263 +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_partial_messageable:9 +#: 20f68ab6445a4e1eb3d21d94d48d56f5 +msgid "The channel ID to create a partial messageable for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_partial_messageable:12 +#: f4cbce994233498eb9c3f7ab43945ed7 +msgid "The underlying channel type for the partial messageable." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_partial_messageable:15 +#: 448098dfa06645d1a21f0383e872fb66 +msgid "The partial messageable" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_partial_messageable:16 +#: 0c8f5fc1798148dc82d346f118df8ac8 +msgid ":class:`.PartialMessageable`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_poll:1 +#: 6a88dea154924ac58b40c4ab9e98a394 +msgid "Returns a poll attached to the given message ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_poll:4 +#: 4ad781ecc41c4c0fa34cdc928810b164 +msgid "The message ID of the poll to search for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_poll:7 +#: b3004ecd7bfe478c89204898761a7aa8 +msgid "The poll or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_poll:8 +#: 6070523df32e409d9b1fac2a8f96b3b4 +msgid "Optional[:class:`.Poll`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_prefix:3 +#: 05cce8cd9a4d41cb865b62006f90c2f3 +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_prefix:7 +#: c7ba4ac424cc4ca19751b328abfe0998 +msgid "The message context to get the prefix of." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_prefix:10 +#: 4715b82f27524b18bb0212b3bd49ff25 +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.get_prefix:12 +#: 23e4ab83cc1a4d03a15a745646a517a6 +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_stage_instance:1 +#: 19d360590711420b85975a29897dd4da +msgid "Returns a stage instance with the given stage channel ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_stage_instance:9 +#: c1c509ff2b7c46abbd81eba5db015104 +msgid "The stage instance or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_stage_instance:10 +#: 8afa09e8ce9f483187ee524cfbbb7769 +msgid "Optional[:class:`.StageInstance`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_sticker:1 +#: f3c2837e8008408bbf23da1bb066e7e6 +msgid "Returns a guild sticker with the given ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_sticker:7 +#: 36b40417971b4043b37fd64a140e398f +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_sticker:10 +#: 1d52b076ff9e4c908e00cd5a15c2ab81 +msgid "The sticker or ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_sticker:11 +#: 72554f8103de4c6e9cb6a9beaf5e0b7d +msgid "Optional[:class:`.GuildSticker`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_user:1 +#: ba4b9a4cd1454d8f96be7a8f51de1611 +msgid "Returns a user with the given ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.guilds:1 +#: 3c6ffdbfdb4345c6a359147783febc67 +msgid "The guilds that the connected client is a member of." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.intents:1 +#: 209488a932bb47e0931fac3e4d09609c +msgid "The intents configured for this connection." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.invoke:3 +#: 3075bea48f2a4ca8852df93b0bd3498d +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:7 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.invoke:7 +#: 0f638f48f50f4c09993a064ea83cd283 +#: 29adac22bc6f4983bad8027587bb0fed +msgid "The invocation context to invoke." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.invoke_application_command:3 +#: 6e5ba81f8ba047ec86c62d502cf47bce +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.is_closed:1 +#: 90e5eaa0acd44e75b0f81269d2e4704d +msgid "Indicates if the WebSocket connection is closed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.is_closed:4 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.is_ready:4 +#: f2d2ffb4c5de4294b00e0d6960df1d3d +#: f5ad6ebd1abb40faa9c3896085d037b8 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:3 +#: 118afb096dbb49fc99f4fa1d450cc94b +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:6 +#: 0188040002234e448bfcefb5879da6d0 +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:9 +#: ea92aef62ae14860a92b74b19f31e2fd +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:14 +#: 75f037142b784ca0b0280584acb209a7 +msgid "The user to check for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.is_owner:17 +#: 0518f3bb4aa1444db2ac2032b93b409a +msgid "Whether the user is the owner." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.is_ready:1 +#: 041173496c8247cf8d05c7ccbbfb734f +msgid "Specifies if the client's internal cache is ready for use." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.is_ws_ratelimited:1 +#: d06516a48e6c46c6a3e32f6409bc7f1b +msgid "Whether the WebSocket is currently rate limited." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.is_ws_ratelimited:3 +#: 247b66b1c7ac49109fc876742bb3aa13 +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.latency:1 +#: cd244fd94faf4a6d80340bdcbf4fa037 +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.latency:3 +#: 68a27c5f06f046589b9966084c427b86 +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:1 +#: 73ca6be9f6c44ea39c1efce5ee47bf23 +msgid "Loads an extension." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:3 +#: f6a4fbb9fd74467f9c879de246769ffa +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:6 +#: 975e840eaee14b4dbee8a00ddbbeda2f +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:10 +#: 3b164d7e34d1453b97c0f38f3f312a3f +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:14 +#: 8e89d87054594008abe505c84310338c +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:19 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:12 +#: 7f2cff7a3dcb41ef859adebe2c9703ac +#: 8ccd2cf84d534ac9810781febca85dd4 +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:19 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:12 +#: 85cb40e2b8f843238e36491f437ae881 +#: 49f4b936fd174cf9aa46c69c0daac83e +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:27 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:20 +#: 318cf231125c4652934e2e3dcd11f3b4 +#: 5d17c1fbb66b405892244e18b33943d3 +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:27 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:20 +#: e772cf6937df4d08811f8b5aca62ed7e +#: bec17b12147c4cd79cf3c79f09b0ef1f +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:34 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:27 +#: 3cecd5dac3b1428186b2006eed2a09ea +#: ea877ee577b54be08c7da64222b80bbf +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:34 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:27 +#: f8f0294e84b04031843107316a63aa39 +#: 7335eec9ca8e403c878b194017a3c0b1 +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:45 +#: c16f13ff56c14c05b160e177859de1d9 +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:51 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:44 +#: 236d07f9e65049aead2c01b2e184cb28 +#: d18ff4a230ab4e4281fe036cde536261 +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:53 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:22 +#: 52b9fd3899444591860e9ea100e5b710 +#: b53ea384ab434369848ce080fe996307 +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:54 +#: a427a8d14c11445e824427e908258a19 +msgid "The extension is already loaded." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:55 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:23 +#: 94d3b957e1c145fba0c65ca08b4a9e7d +#: 201d4f08acb64d76acbe1e7539681da8 +msgid "The extension does not have a setup function." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extension:56 +#: 02cb58ade4144bd090d000ee9512e4e5 +msgid "The extension or its setup function had an execution error." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:1 +#: fc5ee1b90ff04683b6a6a0a44d25f634 +msgid "Loads multiple extensions at once." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:3 +#: 8dbd82d2722b4abe982887f6fbd463cb +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:7 +#: c6dc0ea347054e669a9fceb19b14f3df +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:38 +#: c4b1636eec6a4b959f385ec831af35b9 +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:46 +#: dff67721c328405f993460604610704e +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:47 +#: e26df7023d3e44de9392d0ee2666de5b +msgid "A given extension is already loaded." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:48 +#: 9f8a6c8de9054e5d8f785f7013ff5426 +msgid "A given extension does not have a setup function." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.load_extensions:49 +#: c7ee960eb3ed48cfa6219da68eda0e8a +msgid "A given extension or its setup function had an execution error." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:3 +#: 0cd5999f08474ec09e84b3a0fcf53f6a +msgid "Logs in the client with the specified credentials." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:6 +#: a83e8afd3b9a4df1aca1563503e19a4f +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:10 +#: 4a7aece89b5d4b57b8a98d40cd1eb652 +msgid "The token was in invalid type." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:11 +#: 96d7271f109c4e388ec84a0bd84841ed +msgid "The wrong credentials are passed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.login:12 +#: a224ce433d9d407eada620bbe58b79fb +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.message_command:1 +#: 06aaa4a06f1643458bac9277ab9c0586 +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.message_command:7 +#: 7d14b3bdf9634d46bdca6fcd9a21b9e3 +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.message_command:9 +#: 3a1f259101664820b1fdf332b5ba0384 +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.on_application_command_error:3 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.on_command_error:3 +#: 66802051ce734e8097ec34d915787746 +#: 49bfe4e62e114bcfb236071dace554de +msgid "The default command error handler provided by the bot." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.on_application_command_error:5 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.on_command_error:5 +#: 1cfd6552a76b4aa8a505f6638f251018 +#: bbc822228e0f456ba94fdc6fd1db0971 +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.on_application_command_error:8 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.on_command_error:8 +#: 2bccaf197b874b678e4c7e0f4392290a +#: f08b5f8f7d8742938f9a6f667ac9ecd5 +msgid "This only fires if you do not specify any listeners for command error." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_error:3 +#: edd24076077248e7b2b4b2ed5ab4d44f +msgid "The default error handler provided by the client." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_error:5 +#: 0109e81b10394bdb842f6887198636a4 +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.persistent_views:1 +#: 373aeb873c344d82970e4a032b9ac217 +msgid "A sequence of persistent views added to the client." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.polls:1 +#: a6ba0d7629694f7f82906545519f7701 +msgid "The polls that the connected client has." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.private_channels:1 +#: 2a456fe204bb49ccba1c8ef998f0cc07 +msgid "The private channels that the connected client is participating on." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.private_channels:5 +#: ceac0cfc384647d298f39f12c0acf7ed +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:3 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:3 +#: 7182196090184bd2924a20549adf2d46 +#: 0d35b2491cb142b3bcd3d4fc0b846e6c +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:7 +#: ba527e37463647ce8c5432016f29f78c +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:11 +#: 50c7c9cad8cf4f289847762194b48a53 +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:18 +#: cb839530614640e8968e100adf2228d8 +msgid "The interaction to process" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.process_application_commands:21 +#: ff06c0ebce444f51a73fe1ee516f7264 +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:7 +#: 6804d4b7ab9c43949f7ebec022a2b5e5 +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:11 +#: f62bf245cd8e481981dfd17614caa216 +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:14 +#: 2d7cb9beeb8349dd9c7fa0501f057e21 +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.BotBase.process_commands:18 +#: c4b59976df7f42f0a3c51d4f2e358b52 +msgid "The message to process commands for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:3 +#: 164fb90b104045e89d7c1f0414020a3e +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:7 +#: 78e53cdddda540b9a21a7fd370ac3b07 +msgid "The command to register." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:10 +#: 608b9bb60d2140218c03a6ef164385a0 +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:14 +#: dad7c61d72ce47a992ed88b6a217b991 +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:18 +#: 4e1b3e10ead548c8804fdc8b0a1b2664 +msgid "The command that was registered" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_command:19 +#: 91dfc7d1b4eb4a6086d3b32f16fd9469 +msgid ":class:`~.ApplicationCommand`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:3 +#: 62e8f2e9cd354bfaa1251489d46acd96 +msgid "Register a list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:8 +#: c5082ea44ddf4a65ab929232d45ea410 +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:11 +#: af5a7516da5e45ec8955283376c7ce27 +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:15 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:30 +#: 4fae560ecd074d41a1539bb3058d9c8e +#: e7957be4d92c4282bbd06ba0834c7a31 +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:20 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:35 +#: c70634c2e0434418a3a5d78525171060 +#: abbd6da1688947eabf3337f961fc75c1 +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:24 +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:52 +#: d41fd7f478444437aa26d461b53c89b0 +#: 0d4b6f97f16242a58ffe0164ad268584 +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.register_commands:27 +#: 9bd42b0833e541da9ea21e3253f0f1e1 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:1 +#: f5bfe1db4bd748fbabc1c2d748a1ad3d +msgid "Atomically reloads an extension." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:3 +#: e00b1c26b7c541efad26075cc3da1773 +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:9 +#: 7397c9310acb4dc49acf1b6efd3fc08b +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:14 +#: 918b442226fd4dcab9ff66a48716b0ea +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:14 +#: 4f400cab8da54866b5de772471327cbc +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:21 +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:25 +#: 84cf47932ab94200b27422be14d0bf12 +#: ce093ca8e94b492b9baae5fe63c4e335 +msgid "The extension was not loaded." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.reload_extension:24 +#: b6163285297844998306e8645322884b +msgid "The extension setup function had an execution error." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:1 +#: a1ef0b2b55144410b778bb7ffb8be5b9 +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:7 +#: e62f5010bdd14887b34428f27772f090 +msgid "The command to remove." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.remove_application_command:10 +#: 36c1c6930d5745a4b82db78c7cc5dae2 +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.remove_check:1 +#: 8c096a18316e4395b5a8c99d778633a6 +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.remove_check:6 +#: d836f1015d2f4872921e7e2bd23cfd08 +msgid "The function to remove from the global checks." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.BotBase.remove_check:8 +#: 52505a1773da45cd96132292f234668a +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.remove_cog:1 +#: 4bce31052eae454cb922019dfa00224e +msgid "Removes a cog from the bot and returns it." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.remove_cog:3 +#: 70dceeec61a3451a9e1f6bc70fbcfa91 +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.remove_cog:6 +#: 4d06c08c84414815a3913eec615e16e7 +msgid "If no cog is found then this method has no effect." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.remove_cog:9 +#: af1036bce59746d093abd81aab79b1d0 +msgid "The name of the cog to remove." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.remove_cog:12 +#: e9f40ae4bcf146d9abae3c78d57f5fd5 +msgid "The cog that was removed. ``None`` if not found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.remove_cog:13 +#: 7e9562f29ff24c168294ced809e39c48 +msgid "Optional[:class:`.Cog`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:1 +#: 72e56541aba94b5094116625bae069d9 +#: 381e5d081e9741319bd45da4bcb7fdb9 +#: 4d85666b607a47b48b6e8132699296fb +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:4 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:4 +#: e1f8b4c4d35e4ad8b57c3d018b6f4174 +#: 409b6ef16c934ec19ef7846172b59388 +#: 40d1ed168c884592a1e5f2514015c8d2 +msgid "This could also be used as a way to remove aliases." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:7 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:7 +#: d399c8aa90334ed29d8c347beafa631d +#: 8eb4161c84c847dab6fe1fb6a0510f92 +#: 2bba2189c7c543b0a2e99d7c9630a47e +msgid "The name of the command to remove." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:10 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:10 +#: 6edfdbe1280e4cf398df37fe2792d8ee +#: d0e4f130f1364c2ea29c83e1f9c73ab1 +#: 03f6b93f0098489fbb1b7fb07a37190a +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:12 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.remove_command:12 +#: 99f6a7ad97a24341a814e6f291e294d2 +#: 5fe55f8372624e64b2f42e6df4241207 +#: bf5fa3ed5fa040e7a6ba3402aad26514 +msgid "Optional[:class:`.Command`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.remove_listener:1 +#: 89237b2df8894f028c8d6fe4b723ac9e +msgid "Removes a listener from the pool of listeners." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.remove_listener:4 +#: 4126c6c0ad9d41f98850f0a0daf3d13f +msgid "The function that was used as a listener to remove." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.remove_listener:6 +#: 04dcea9827704258a9e40aebaabf81cb +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.run:1 +#: d770bb73dbb7401f974c801b9884b9d2 +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.run:4 +#: 7cf3c2253ef341fd9ea4cd589e8a8f24 +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.run:8 +#: 81da8969b71546b2b65729eae997a16f +msgid "Roughly Equivalent to: ::" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.run:20 +#: 4e683fc6fb4d4a70936b85ea61e72a74 +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.slash_command:1 +#: dd492beae05f4a8d8cb809e7edef441e +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.slash_command:7 +#: 802ce9a737a9484c896d16f372e3b6de +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.slash_command:9 +#: 108e23f4f6284ab29c327401bf146ddc +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:1 +#: 7634d59aa45e4d26b2c565151cc3782e +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:7 +#: 737591a4772a41f6bdeea4dd51546778 +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.start:3 +#: d76b1fe4d76f4ca69d1a0ade53afc1ce +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.start:5 +#: 76b5f1a0b02348759deca85bc9662056 +msgid "An unexpected keyword argument was received." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.status:1 +#: 63ac3c15418f4a8ab3731229e8c99da7 +msgid "The status being used upon logging on to Discord." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.stickers:1 +#: 1538eaf30f75407ab466133776dbc71e +msgid "The stickers that the connected client has." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.store_url:1 +#: e5d3eb89db9845c5aec24b89323f4b32 +msgid "The URL that leads to the application's store page for monetization." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:37 +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:45 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.store_url:5 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:10 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:79 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadBoolArgument:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadColourArgument:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:12 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.EmojiNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ExpectedClosingQuoteError:9 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildStickerNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.InvalidEndOfQuotedStringError:10 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MemberNotFound:12 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MessageNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PartialEmojiConversionFailure:12 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.RoleNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ThreadNotFound:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UnexpectedQuoteError:9 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserNotFound:12 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:11 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:23 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.invoked_with:10 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:49 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:56 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_not_found:14 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_command_signature:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_mentions:6 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:22 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:16 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:23 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:48 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_command_signature:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_ending_note:6 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_opening_note:9 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:13 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:19 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:34 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: eb97d9c1009e41a7a33abc032a92e7c7 +#: c7937c1a58464b818b7695fb391615db +#: 0b335589268e4da09c28ab74d38fc6d9 +#: 6cc14dfb46f5416a8f5690ae2590b842 +#: eefee228aae34a4eaa3c0f1f1f6ac00d +#: c9086a280e854974986fd9a627c1a69f +#: 128eb4cc62ae42678a170935cbf556f6 +#: 0a9de4b3adb34277875caa3c3e309d5e +#: f724b00bae7a4fe7a7bea3f4d56fbdee +#: ad47a70f27dc4b2c989418bd5ca1b16c +#: 0a7ff40192c3429780038dfe487d0a49 +#: 44716ae88a37487792150889f0be9489 +#: 6e3aa2f0132b4ff5aafeb922b91b7e9d +#: 8011b4d2d72c43a0b733e6edca259c0b +#: fd21068ca78544c8a43ea19006874ce8 +#: db725c77392c4b35b35e6c90cac8f49d +#: 537551b8686a46bb8acc5ff5c7726e37 +#: d9f22d4a08d34aa3acb04ad10feb35ee +#: 946bd55f94a44767a54bae428121cdae +#: 4d9813b51a504dfe9a756aa1dc27ecba +#: 3461b191b32e4cda986d13002fe1ec87 +#: 2bb4ecc8dcf048cda4bc9007dcd2afa2 +#: a84edbb01de34267bd820ecaba8b57d2 +#: 3d14373e43924fbcb90f02dda97f7b82 +#: 9669643841444c9abe6bca3ef63db025 +#: 53263f1aeeab456591e72a092900b46f +#: 0c7a684cbbf24892841a55bee0ebb6b4 +#: c8e874df3b314796be8432cd1b31db9d +#: 04e46137f12744cf80b9e6a824cbd134 +#: d95b98543c7f4349a3b739a1aeca6242 +#: ca51275a9ab34af0bdfaaad3283c192a +#: d57d189d08904faaa282a7be424a701e +#: 4bb63cb4f8684bd88f8e8dd8a62a11a8 +#: 699fa3f278a04775999a7f5d12a6ada3 +#: fe06e3408e07457aace53f85301e8d2e +#: 747dc16cd7684bd1a1a271db94e34ec4 +#: c117770b385d4c168d69dc3c32662eab +#: 42a12c9b630d449f8054a79fd03c2e9f +msgid ":class:`str`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:3 +#: 56dee18f303b43e79e6b6a77a2eadd69 +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:8 +#: 2ab7c2937ad74760b370b73a6a8ba2ca +msgid "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:" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:20 +#: 76d41f32c4ba46cfbd8dd7155cf5bd05 +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:27 +#: 952a63d7ebec443ea612b0602057c526 +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:39 +#: e8fe7f09dcf84062a21c87edb848005f +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:43 +#: 8f87ec3068be415190fee8343946adbf +msgid "Whether to register guild commands. Defaults to True." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.sync_commands:46 +#: f5a29066bc064defbb80514c03a3f884 +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:1 +#: d3b66c696d4c429fa2944c1d45bf4f3e +msgid "Unloads an extension." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:3 +#: 9a66a37183ff460ab14866054d375aeb +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:6 +#: a598066c3fe44c7f8e0e5489ed9659e1 +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:12 +#: b32f49db4c9e4716a586f8f433a8babb +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:17 +#: b8bc526bb85d4212b18245588c6d2774 +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:17 +#: 38ab1a9d45e54b7f9b7a2df37263d789 +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.cog.CogMixin.unload_extension:24 +#: 59b51e51c9d8441c8b1d6fa796ed8885 +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:3 +#: 25ed7845b9674200a5ba81f4ea0a431d +msgid "Updates the bot's role connection metadata records." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:8 +#: fa964cb583594724886c942b50bbb257 +msgid "The new metadata records to send to Discord." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.update_role_connection_metadata_records:11 +#: 896b8eabc98b4e468b4e0d752178c9b5 +msgid "The updated role connection metadata records." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.user:1 +#: 65f4a38703104a058b05302678b5631e +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.user_command:1 +#: b2b91e77f7d741618fea041bc44a2047 +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.user_command:7 +#: b1b309bd09ac4f3cba07626e0d84770e +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.user_command:9 +#: 43ff330447974841a60b8ce9ff1babcc +msgid "Callable[..., :class:`UserCommand`]" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.users:1 +#: 85e2b097c0464c2983971f8c305ef6db +msgid "Returns a list of all the users the bot can see." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.voice_clients:1 +#: abdc4c41e9c546b2b961ef5395b29fcf +msgid "Represents a list of voice connections." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.voice_clients:3 +#: 165917f65ed0449492cc9106a1860d96 +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:3 +#: 15de8e6d9e4640ca8681f96393db605e +msgid "Waits for a WebSocket event to be dispatched." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:5 +#: f30e7c279c614fe78d5d370ebee54379 +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:9 +#: 7ffe4d5b36924c5fbf56359a276435bf +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:14 +#: 68218290695e4d94a40a0dfa0e6f0eb7 +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:19 +#: 891286b54b444d3e857a3e11ebd36f2c +msgid "This function returns the **first event that meets the requirements**." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:22 +#: 53489b7bb49642c6be5938b4b13c4a5d +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:26 +#: 6b6eeb0f83914b9cade3cb77db136009 +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:30 +#: cdaf56492bf840f6bd28460c4343513a +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:34 +#: a9dae933ab7e444fa98d09fc664439ac +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:39 +#: c18ac7e53ef548b3b012fd24da33f00e +msgid "Raised if a timeout is provided and reached." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:43 +#: 1efb0f90994a4d09b084d196cd2dbd19 +msgid "Waiting for a user reply: ::" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_for:57 +#: fec96c30c379416b9f9c0ee73ed2280d +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.wait_until_ready:3 +#: 4e183d241d704c97af61ff44652e8970 +msgid "Waits until the client's internal cache is all ready." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:1 +#: e5f1e9c359cb4fd1a94239b501fb3078 +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:3 +#: 8cf9700f44cb4982999c7f0e06fae9a7 +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:6 +#: 7190e0cdf6164def88ff5083c26354c2 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:1 +#: 87e1de7ee29c44658892ee6d4830045b +#: fd475524e90446edaadc6e3f386c8594 +#: 04420287d19a4d6c9345809985d6783e +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:5 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:5 +#: 49f59fb863cd4209bd0f1f4182299127 +#: bd8aa69cbaef4b0dbd3dad5d14e84c0b +#: da36678c271248c2b2b5ba9574fd9efe +msgid "Duplicates due to aliases are no longer returned" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:8 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:8 +#: c046361221d6494fa948452872c5775c +#: 99f076338b9447f79028bb2cbfef0057 +#: 21f5e69e0e7241c2a8eb56ca3e1e8238 +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "" + +#: ../../ext/commands/api.rst:53 +#: 083f5bc33dcb4586af8062833c6e2a40 +msgid "AutoShardedBot" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.AutoShardedBot:1 +#: c43ed20f7e3248c99243a25c12d9b7c9 +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "" + +#: ../../ext/commands/api.rst:61 +#: 0a9ee6adf3384fd2af3d470e981358f8 +msgid "Prefix Helpers" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned:1 +#: 4c8b697e316940b296c4ff16559692be +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned:3 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned_or:3 +#: 94c1395e027c46d6ade3d6e434844537 +#: 63457ed037ed4de4acd09d28b4daae81 +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned:9 +#: 871ad9b1ab9946a18c415864a779a250 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned_or:1 +#: 23b7b72806634d609c92fb1e70fe4ad1 +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned_or:5 +#: 846bfc51b4944ad4983ff4d1d99850c1 +msgid ":func:`.when_mentioned`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned_or:15 +#: c8eceea9e53d45cc97cfcbb42398acb9 +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.bot.when_mentioned_or:26 +#: c5b60bd7da7b4768b14a994651830b23 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr "" + +#: ../../ext/commands/api.rst:70 +#: 607f676f879e46c0bbd010f553a05c6b +msgid "Event Reference" +msgstr "" + +#: ../../ext/commands/api.rst:72 +#: abda3f19786e42ea95de290e49493db7 +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "" + +#: ../../ext/commands/api.rst:77 +#: 9d47bcf3bdba46c0aee61570b0c50c1c +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "" + +#: ../../ext/commands/api.rst:81 +#: dcb78c0a90ce4197baba03a1963d4490 +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.on_help_command_error:12 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.prepare_help_command:16 +#: ../../ext/commands/api.rst:83 +#: ../../ext/commands/api.rst:95 +#: ../../ext/commands/api.rst:105 +#: 08d36c605612426784eaf9ec301a665e +#: 139467d5012f4e318bf0bbb3db7d0f30 +#: 5ac6cba758fa4d7e898bfd65fb401d7a +#: 973bd201552f451fbd909f5ef46984c5 +#: 2da2022a79ab4897b9d3cd02bbdf021a +#: c379f37f290149909b895a848e01c0e5 +msgid "The invocation context." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.on_help_command_error:15 +#: ../../ext/commands/api.rst:85 +#: 7db908c9bd4146148c671612f1a21c16 +#: 5851cd75e3914cdeae58b1d4ebf91218 +msgid "The error that was raised." +msgstr "" + +#: ../../ext/commands/api.rst:90 +#: 347da799cd5c46d494faa3a6db00ab44 +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "" + +#: ../../ext/commands/api.rst:92 +#: c7110a45e2cb48e1b8de37062089a003 +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "" + +#: ../../ext/commands/api.rst:100 +#: c0b551f9b80642cab7f482a5e253ccb0 +msgid "An event that is called when a command has completed its invocation." +msgstr "" + +#: ../../ext/commands/api.rst:102 +#: e6df0f94dea4459b991e737d795fa1ac +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "" + +#: ../../ext/commands/api.rst:111 +#: 281bd859cfe442f290d3af15260bf4b3 +msgid "Commands" +msgstr "" + +#: ../../ext/commands/api.rst:114 +#: 2bc62b679dc241c8bbdad200cd956713 +msgid "Decorators" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:1 +#: 708aede471434da3975092e896c74818 +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:4 +#: c63fd729dfb8408dafe13dc7810919fa +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:9 +#: e53325d7f3aa42c8a94797b99ede0e96 +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:14 +#: a0a1831b938245e4bc643705c843a97f +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:18 +#: 2dee1730ac3e4b508e2d0151bdc7b6fc +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:21 +#: 8750c06b578949b2bec301ab09966274 +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:24 +#: 2164945e8ddc44eea1067cd31fd4dbee +msgid "If the function is not a coroutine or is already a command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.command:26 +#: 578d8eb6b02947ff986b9f8f510ecdca +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.group:1 +#: 55c95dbeda95432bbc44c8e8b1bbfb82 +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.group:3 +#: 0bdb03a91ab2407e8b5340be7023af87 +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.group:6 +#: 7fb2f6d0e28b47be902cbe75c475e17f +msgid "The ``cls`` parameter can now be passed." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.group:15 +#: 9e786b12bf0e42e587114de4fa12b997 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr "" + +#: ../../ext/commands/api.rst:123 +#: be8eaaf347484952b041ca7193bfde75 +msgid "Command" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:1 +#: b2740c0e271c45ffa31ee9e4ef9110d9 +msgid "A class that implements the protocol for a bot text command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:3 +#: 38d70fc6a98e49428906980496be477e +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:8 +#: fea00179db634bc3b5280d608f1aaf46 +msgid "The name of the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:14 +#: 74f8737bef614b73b50cc19b5b1fedcc +msgid "The coroutine that is executed when the command is called." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:16 +#: 724c19721b204ffcb58a102838f26c9c +msgid ":ref:`coroutine `" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:20 +#: 9cbe2b0ec42e48bc9b35c83c82e2940a +msgid "The long help text for the command." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:50 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:63 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:90 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:22 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:28 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:34 +#: 1cae6d584b4042669667b6b5b19e8ca7 +#: 2fa587e86d45443b9e8de44d3a40adb3 +#: d67337eaef064d768f3bf1b7aeded405 +#: 7d5b501af0534488870f5d3215928831 +#: 999cfb9baf444f8caaf1537b058b7607 +#: 7512c8179d2342d0ad18384d0a3e7549 +msgid "Optional[:class:`str`]" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:26 +#: b746e9e3fb354ee1a6d3769b00a98e29 +msgid "The short help text for the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:32 +#: dd8d8fc9f64e45ef87981bb7bc7471f4 +msgid "A replacement for arguments in the default help text." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:38 +#: 42fc2c295e1243b79b516d3c03109b96 +msgid "The list of aliases the command can be invoked under." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:40 +#: cf54b9762201480cab2c561bc2d887c4 +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:44 +#: 0a79f1e290f24adc8156b6f1bd32b74e +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:53 +#: f54613a1d2e0437eb1091031a27cd79a +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:56 +#: 3df23d8b3d4345098f4d4afd3baff1e2 +msgid "Optional[:class:`Group`]" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:60 +#: d8e1092e543f43618448013b2110ca43 +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:66 +#: 8244542dc8084a9da29dd9ff51c67359 +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:73 +#: 94ebb1d8ffa74c098316e5fc504e71fd +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:77 +#: 145735dc029546e0a341c7629552a704 +msgid "The message prefixed into the default help command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:83 +#: 9e57d5cbe57144f392610c29de2f9c85 +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:90 +#: 14cac0f6a6ae461ab7fe5343e0f7f3d0 +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:101 +#: 093e94bdc8a74603b4cfab983620c699 +msgid "The subcommand that was invoked, if any." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:107 +#: b9e5bf62202047d7a0dbd96c11552eb8 +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:116 +#: 4d59accdbe704484b8e291b9fa4bcffd +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:125 +#: f1dc7aea853f496cb8f912346dbd74ba +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:133 +#: acbffbc6ee1a4eae9845e9c260ca365f +msgid "A dict of user provided extras to attach to the Command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:136 +#: da23aa9c2f1b457c89b393dc1ce8d53d +msgid "This object may be copied by the library." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:65 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:35 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:138 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin:9 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:44 +#: bc8667441e1444d0897a7803d2b26f77 +#: 3a0139a89f4a4ceeb72e249b081c787d +#: 49f3b4c961ef477fabad4748989f2d95 +#: d1cd623be05048df88fb40aec9a6003b +#: 021b365edbb047ab9e69cf7a50bd12c5 +msgid ":class:`dict`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:142 +#: 349fc1bcfd9746f7be16678892cd7ec9 +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:143 +#: 8f08e59bec544f6fa289612f427d41a9 +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.after_invoke:1 +#: 90e414e8d0b44cd79cab048aefdf6405 +#: 41e2a53b00224a92b8ae5759b1438a3e +#: 92c1451c50ff43c699634f69331d20be +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:3 +#: d32e1cac49544fd5ae400c1fba138334 +#: eb8ca9ca23374757b0daacbd1d49a35f +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:7 +#: 51aa7afdb49f4da6ac20b1dcf6b57e06 +#: 59e2bc6c38644485a0213881d9b8b746 +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:9 +#: 19f8492ddfb9427abc3cde521480b85d +#: abcc9dabb0bd44ca84e22b5880cead14 +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.after_invoke:17 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:17 +#: 7ae4c11caa124e808c7fb7b202116f45 +#: eb18f3e76ee24cea9e387e730bd79a2b +#: 2b2b6937a2174e49a396208a60a69ff7 +#: 1f8155c2a8724c4f9171ac867302b1db +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.before_invoke:1 +#: 855503b6108245fcb68107267c49085e +#: 71ab778bf27749a6907f367d1f73fd0c +#: 73f3e87a15f443ef8b7006ac7fcde57d +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:3 +#: cf73320a95f4476b80a6f070ab5b02e3 +#: aa50961ca26d429c888c967874f5176e +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:7 +#: 06e921e2b2fb4c21a72f500bd46a2810 +#: 39878da2f3d34225b5c9d535631fc0bd +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.before_invoke:9 +#: 40fdc1fda7b94b879512d0e996f8258d +#: 4871e421ae9f466cad7597e242e8c03f +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.error:1 +#: e84346f5de634da79e860d51d22db014 +#: 13d0fbc451224bcc8dbb25aedbbbbb1d +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.error:3 +#: f38c35e1e73e491699c0f0ddb73663c7 +#: d8e66670c20d441bbddaf3326c7fad0d +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.error:8 +#: 23a93b3beb964d8cbe69ad9ff6b02688 +#: 984bc2351fa6400ab420ce1f7dc2e245 +msgid "The coroutine to register as the local error handler." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.error:13 +#: 20f06aa013104c82b4b355c39d43a727 +#: 191b659c19c548d99ad98269f856a4ed +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.add_check:1 +#: ad8decf8dfa04986bacfea9596033dc8 +#: ead97902d0cf4ff39cc83352d55886dc +msgid "Adds a check to the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.add_check:3 +#: ade7620bbb9c4a79a2272aa1abd4ec09 +#: 4a871a7e545642d1b079b173f7c8e0e8 +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.add_check:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.add_check:6 +#: 94e53b88c7864946aa8238fa03858fcf +#: def1820209c24883a7727fd6c31fb245 +#: df2ebe85b1c24e0994ef469c4abbb696 +msgid "The function that will be used as a check." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.remove_check:1 +#: c9b66986248346dba1791fd1cb802588 +#: 4c3ca805a15a46e781bb997ecbac5308 +msgid "Removes a check from the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.remove_check:3 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_check:3 +#: 03c21e4d038949829e3d40810fc4b45d +#: f24c85ac0d7e44c0aa8cc1d4f68774fc +#: 765ac029ae7e480ab864cfded7dc1d08 +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.remove_check:9 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_check:9 +#: dc6b6d44452748f48fb47d44228fb6fa +#: c1295d874c7b4bf4b2d40d078864e98c +#: 53d65f268cfb4a8ba97bcd294871ec32 +msgid "The function to remove from the checks." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.update:1 +#: 2d740adac15a4ca48c6960d4946687a2 +#: 887036ed4b8547b599b740ee9c7852ea +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.update:3 +#: 3420696530994c2dbd03cb86dbc54b25 +#: 4e9cb6ff3f1943bebd52a9832811f870 +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.__call__:3 +#: a94a96db6cea4071aed07dc63c09457a +msgid "Calls the internal callback that the command holds." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.__call__:7 +#: 06e2104d086e4245b4d7953660649bc0 +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:27 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.__call__:19 +#: 71c24cc891e04432849002e8709dfdf0 +#: 08e4246177324176a56d4bf366b764cd +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.copy:1 +#: 6cd1c8a959c040b78e73444a59627b2c +msgid "Creates a copy of this command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.copy:3 +#: 1db5a8f7327d4ba1a4f75c7409af2b59 +msgid "A new instance of this command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.copy:4 +#: c0493f185aa540c18c9db1724fd3fb0e +msgid ":class:`Command`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.clean_params:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.clean_params:1 +#: 422208602e70468a8cc4695ddaf9285c +#: 7fedec5dce1a44f880557b690af0f4f5 +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.clean_params:4 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.clean_params:4 +#: 697abd5fedc04c189332444f2135a9ac +#: b04440fc3c234fea8cf4f7faa17993b9 +msgid "Useful for inspecting signature." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.full_parent_name:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.full_parent_name:1 +#: 512c2c1ea4184e77bfd168579929e201 +#: 0fb0d94cb166457fa0be20c8ebadcd1e +msgid "Retrieves the fully qualified parent command name." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.full_parent_name:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.full_parent_name:3 +#: c3494ed24b134e688ac5f49b5eb047d7 +#: a3632eb3260b48639a3f5b1219446570 +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.parents:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.parents:1 +#: b6e4c6ca7e85435f9351a14cbf9b2bcb +#: fc62e8879aab4e46adebcb88069e6ce5 +msgid "Retrieves the parents of this command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.parents:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.parents:3 +#: 21ee38bff0764697b17dd22c2db5ed96 +#: f163a87e30934bd08de7442fd80b8997 +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.parents:5 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.parents:5 +#: 5eedd15d7f0045a89807cee976a97cc0 +#: d4d9759f27614f94bc7ef16cef33a9ff +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.root_parent:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.root_parent:1 +#: e65c9a5c570a416f969edeec9068e39a +#: cc64fcd8c5dd42e086a3133d0a6f73ec +msgid "Retrieves the root parent of this command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.root_parent:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.root_parent:3 +#: 2f1f6da9123b4f4aa3d0a56f508f3e3b +#: 134678904cf94f5b9f84864f040720d2 +msgid "If the command has no parents then it returns ``None``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.root_parent:5 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.root_parent:5 +#: 6521e09bdf944e6db9d3f60cbe90b65f +#: 0a7343ad755841e49b5892ce6da4a34c +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.qualified_name:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.qualified_name:1 +#: bcf9477a72ac4c729bb905cfcb4e2405 +#: 3407e87f554b4aa0ba13b3a449a3c002 +msgid "Retrieves the fully qualified command name." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.qualified_name:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.qualified_name:3 +#: d070d67e1ecf455b8dfd8194fa5d3e29 +#: e88b1b9c3ebf463ca5bf55229c5c0a90 +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.is_on_cooldown:1 +#: 30141c30cc364576aac449f316b52da0 +#: 3f6f35ebe3a64b92b2946ad871685024 +msgid "Checks whether the command is currently on cooldown." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.is_on_cooldown:4 +#: 6e7a91b24b664b699c0791b676c4aaac +#: 93cf523e8dc5450da5552b0b7082ab52 +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.is_on_cooldown:7 +#: b4eff87099ad4ac9852614c8f3eb7862 +#: 21d74795325347ff9dd7654adf2ba3a8 +msgid "A boolean indicating if the command is on cooldown." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.reset_cooldown:1 +#: 8a5495bda5cb470183ef2086755ce0f0 +#: de2dfb75c9e240f99804d09b655538d6 +msgid "Resets the cooldown on this command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.reset_cooldown:4 +#: ca312cee971a438abb381bf66fb2cbff +#: 33a04eab9d754b3aaabd3e1293e2de99 +msgid "The invocation context to reset the cooldown under." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.get_cooldown_retry_after:1 +#: 51fa09d7f11f43a1b781787a52ce8436 +#: 1810979906e644719a84adc9f01c9d28 +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.get_cooldown_retry_after:6 +#: 45878d40a5fa4890ad42de0e8e9edc6e +#: de287918e3734b35b2128d1d89f0b001 +msgid "The invocation context to retrieve the cooldown from." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.get_cooldown_retry_after:9 +#: fdf38ba24dc14b689ad1e1eab70c6c1d +#: d40b3f2ea34c47b4ab7bd1ae4a495483 +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown:13 +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_retry_after:9 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.get_cooldown_retry_after:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:22 +#: 34090bfda6e1409eb479e3b919bede99 +#: 9c8c9722a71e4169a364cc0e59b5e07f +#: 8739bb42308b44cf89e840162039bf57 +#: 864f91de7cea49f4a8d5c1e4262fb390 +#: 3a9cca3cf69a461787e1dba5a5976cd2 +msgid ":class:`float`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.has_error_handler:1 +#: 3970666bdb78497b8d5a65197482a7bc +#: 49dcfaca40b44eb1ad8e17890a7a747a +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.cog_name:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.cog_name:1 +#: a5a5f0ae305348feb8f1456838a1ee4a +#: e9b817c2aaa649129b55d529a2c373a1 +msgid "The name of the cog this command belongs to, if any." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.short_doc:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.short_doc:1 +#: a359e8b0858f4bff80df0d29205d3ab0 +#: f8402f9d989d45f8844dba301f54d973 +msgid "Gets the \"short\" documentation of a command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.short_doc:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.short_doc:3 +#: 8f95d0a88a984f439e3dadb59ef199aa +#: d633fdd80c89458d9e1fe008f0faf9e9 +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Command.signature:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.Group.signature:1 +#: 0c0b9317fcac46ecae100cfc277bf9f6 +#: 64e99299cde64755a01dab10e6b374dd +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:3 +#: cc5fd641e6244884961560f59e53c689 +#: ecdf1bb4b1d5467ea3bf18c76a48d849 +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:7 +#: 3950bda5fbf14e40adee997651342820 +#: 6040f07d406b45fbaaf011289aec8e54 +msgid "Checks whether the command is disabled or not" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:11 +#: a6de3b877d0e4c7a991b4259bdb1f086 +#: 0b5ed45c98da47b0b22f0f3f8a3b65c2 +msgid "The ctx of the command currently being invoked." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:14 +#: ff73ac563b12400cbce6a1ad1f8c9d09 +#: c5461aaad7f44173ae9305b167fbedee +msgid "A boolean indicating if the command can be invoked." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.can_run:17 +#: 076a8f5c048c40b2bcc438d5a1ea5158 +#: 79451114e8e641128c48a68b616767f2 +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "" + +#: ../../ext/commands/api.rst:142 +#: 29f1aee053a242acbeb1f2c4aecfe1da +msgid "Group" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:1 +#: 65da7b12e7ed47018fbcd2ff170d1f42 +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:4 +#: 44ff4fdaef554c62906b9c12c2cd9e96 +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:9 +#: cd807d5e802148398e05f6c146d7f48a +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group:22 +#: 91d77491c49d418ebb264e030f237dc4 +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group.copy:1 +#: b43b4fa9017b4d8f854052a65d37b34b +msgid "Creates a copy of this :class:`Group`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group.copy:3 +#: bc8bbf36168a464287d18919b8ea1f56 +msgid "A new instance of this group." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Group.copy:4 +#: 479727513b454596af0d83565a93505c +msgid ":class:`Group`" +msgstr "" + +#: ../../ext/commands/api.rst:167 +#: 843f0ae741c841bfa76f1b6f1d03c365 +msgid "GroupMixin" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin:1 +#: b31eb1a7344948f0a4b726060f32dcc5 +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin:6 +#: 01122ecc57164cf2a9d1668806c98ec7 +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin:13 +#: b98c3fc6b795488fbf03190087b1ed2e +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "" + +#: ../../ext/commands/api.rst:184 +#: e2038f767482430fba55bbdb2a1b9bb1 +msgid "Cogs" +msgstr "" + +#: ../../ext/commands/api.rst:187 +#: 4b29b920e0514019815c861364b806d7 +msgid "Cog" +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.walk_commands:1 +#: 1456f4943caa4b34a8e69f60b5a07808 +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.walk_commands:3 +#: b0889f2d31ab45d59206aac0730ee26b +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.walk_commands:6 +#: 5d2e7ca7f2cb4af88e7b4267c580e478 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.get_commands:1 +#: e903471dee0946f698493b70bbd6bfff +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.get_commands:1 +#: 10b1036c1fb04d5fadf115fd0156dc7d +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.get_commands:5 +#: c8f8940e1a334d72ace74656658dc636 +msgid "This does not include subcommands." +msgstr "" + +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.get_commands:6 +#: 4eef2169b57545a39732b35f19317928 +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "" + +#: ../../ext/commands/api.rst:195 +#: 9ffc5edca62a4591b776577d4c3be17a +msgid "CogMeta" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:1 +#: 6d3498e089d64e64bd39b02748feed7a +msgid "A metaclass for defining a cog." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:3 +#: 818b7abc0e4e4c92ad300745b12e67f3 +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:7 +#: 14bca144e04f49f2b6a2ffa5bd12bb21 +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:24 +#: 8541d72ae9d240c5853b5b012bac5870 +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:35 +#: 4d0773ce7be443b3b02b0723cfa9ee2a +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:41 +#: dbc8e995b5204e4b90abebe755df26d2 +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:49 +#: 005387bb127242fc80381666a6e1faf3 +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:69 +#: e654676f10784a318be772baf59e50ac +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:74 +#: f873bb0240304b34b00b4783ad8f63aa +msgid "Optional[List[:class:`int`]]" +msgstr "" + +#: ../../ext/commands/api.rst:205 +#: 3ba5cbee70fb46a8a7289027a30c1154 +msgid "Help Commands" +msgstr "" + +#: ../../ext/commands/api.rst:208 +#: a9b0e1487f8544b8bd6c8377c81509ad +msgid "HelpCommand" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:1 +#: 3728d038715e49f5a3791584fce2a04c +msgid "The base implementation for help command formatting." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:5 +#: 4bf99b5a33634da38019379fa568c795 +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:9 +#: 57d8ce635a7c4dfd85c2969ac2a3326d +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:14 +#: 8c76b92e97954a5fb2a3b8af6e6cc3db +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:17 +#: 92aebe5e9b4d4fecaa3da5db20b743c7 +msgid "Optional[:class:`Context`]" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:21 +#: 28d3ba87fb3143faafc7eb87f9d151bf +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:28 +#: 1ec7123c827d411a81fe0bee61f34a24 +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:29 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:35 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:34 +#: 308cf1e234b44a168f5eb03f15d8e8be +#: c24caeb9fc164e1db7c4100f6818ad3e +#: 5a4a6010a96a4f61bca2c49b16580daa +msgid "Optional[:class:`bool`]" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand:39 +#: 1ccdbf4b50b44ab0b1fd37f54bd29a43 +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.add_check:1 +#: c57ad58f60af400783c843a1cebeb8b7 +msgid "Adds a check to the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_check:1 +#: 54b841f106a3437e9947dfc91d5d0e84 +msgid "Removes a check from the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_bot_mapping:1 +#: 59fa9d80d1b34f4bb1a23eb82603def1 +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.invoked_with:1 +#: fe94b765ac834e9bb6aa25e17682999d +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.invoked_with:4 +#: bad68c0718fe4f8dbbd049e0bb78b35a +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.invoked_with:9 +#: 9605ca58dc7540ba809f5b9944de8e93 +msgid "The command name that triggered this invocation." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_command_signature:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_command_signature:1 +#: 9d4ac7ff40e040b3b6a9aeb703e66c99 +#: c3df0daa4d754a64851160fcb1d1eea6 +msgid "Retrieves the signature portion of the help page." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_command_signature:4 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_command_signature:4 +#: b3103498c74f46489696da57302a113e +#: 85050445297c4007b4dc06f9749526eb +msgid "The command to get the signature of." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_command_signature:7 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_command_signature:7 +#: 0870226ae3fd45bbb1d7b250eedd749c +#: b8d194b6a62f4f2694a9255ea693890e +msgid "The signature for the command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_mentions:1 +#: a2e753b9567a47f8bc8fa70e5ad3c66d +msgid "Removes mentions from the string to prevent abuse." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_mentions:3 +#: 1ba0ed368b63426894a070cbaab0c580 +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.remove_mentions:5 +#: 818a2ecc265d46fca2d1e230a5e1256f +msgid "The string with mentions removed." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.cog:1 +#: 6733db68c82649d2ad2b96e2b5b0606a +msgid "A property for retrieving or setting the cog for the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.cog:3 +#: f0a6d3eda29d4e77884be9d27dc414c3 +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.cog:7 +#: bd2865c7de154f0393060ce06ec5c389 +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.HelpCommand.cog:9 +#: b572e133ce4f4e49afc52d6cf5f868fc +msgid "The cog that is currently set for the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_not_found:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:1 +#: a9b1544b7406441bbc26c947190156a5 +#: 798d94da35de4f188e263a72afae5646 +msgid "|maybecoro|" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_not_found:3 +#: 11b6366f06024bc18f31f51384b84719 +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_not_found:6 +#: 870b0c00321c4963b624a270b9ec77ad +msgid "Defaults to ``No command called {0} found.``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_not_found:9 +#: a7682b9639e94a5f8c68412a2d7a34bd +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_not_found:13 +#: f966be26463f407884dbcda0640ec7c1 +msgid "The string to use when a command has not been found." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:3 +#: 90f61b1e8c2b42159ea4d0f65e3ab6be +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:6 +#: 04095c7b194645cc8c006f273579b8b7 +msgid "Defaults to either:" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:8 +#: bd93202046e7474bbfd1271fb5aebfa7 +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:9 +#: 2f9dbb03410e41b39b38db1520d17207 +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:10 +#: 1bd86a8162e147a2b78964b23a6da060 +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:11 +#: d742621c65014debaf4e6ef8da190d11 +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:14 +#: c7f990e681054582bab785f391126075 +msgid "The command that did not have the subcommand requested." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:17 +#: de81605a27384dbb9bfee27cb9f993c6 +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.subcommand_not_found:21 +#: bf836e28f2c04c2cb1c3ceb955a4c816 +msgid "The string to use when the command did not have the subcommand requested." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:3 +#: 8cdeecd1f78a45a490d0b086b59dbfea +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:5 +#: c3c2bdabbbf04ae289fa869f1aac253a +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:9 +#: 2e41bb491bbf4887818e70951501c8c3 +msgid "An iterable of commands that are getting filtered." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:12 +#: e8074b04eb1b465ca6f97d8caa66f96c +msgid "Whether to sort the result." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:15 +#: f82defb618954648af121dc1a4a87f4f +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:20 +#: 9f05a77eef2445268d540b4f9653f322 +msgid "A list of commands that passed the filter." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:21 +#: 0722f1eb0d854e748d5363eedae8ec27 +msgid "List[:class:`Command`]" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_max_size:1 +#: 1d7ab689f36d49ea84a4187da695f2cd +msgid "Returns the largest name length of the specified command list." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_max_size:4 +#: b0df17a168244fc881783a67405bc86d +msgid "A sequence of commands to check for the largest size." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_max_size:7 +#: 638a8223116c44afbc70a3490dc30977 +msgid "The maximum width of the commands." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown:7 +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_tokens:9 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:9 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:42 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:12 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:42 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_max_size:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:25 +#: 36db3ba452e247c3ad141758bb50a822 +#: eb080092f05d4126b8629d4169f4b12c +#: 1d83d4abcb204de79e15b16afbe869e1 +#: 080ee5311f544c37b4a0389d8e2bf11c +#: 1a97390d9590457c89a8bbd87b3131d9 +#: 4ec8d2a757ca4050b667cf16d2451f8c +#: 97bdea144de347b19de4d55a575588b9 +#: 9f7fa72d3f22411dba71b294a6a7a43d +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_destination:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_destination:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_destination:1 +#: 11d5736edd904be0909712cba6262a08 +#: b55131b9813c48aba29c194391ad006a +#: 84efa4a2bdc24a1fa39f48809092e77b +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_destination:3 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_destination:3 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:11 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:11 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:10 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_error_message:6 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:11 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_destination:3 +#: f8c115ff7057440482dceb4d05d3c394 +#: 221263475094489f990e402ae86805f6 +#: 0da023124b764228803413e8e928ba2e +#: 4c8415699f38454caa3f28ff7645e137 +#: 0fff7255071443deb952fb069385e343 +#: 3078f7737cdf45bc9122a254ed6a49ef +#: 2f16e9e41996491ca9e579015bc4554c +#: 8ecbca84bfa448ae82fe5eed629a6b9c +msgid "You can override this method to customise the behaviour." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_destination:5 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_destination:5 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_destination:5 +#: 7463ee9371c746469ce380c3c6a9f69b +#: 2e1e72d728684e43beda070a868f1713 +#: 01e87250bebd404b98806bb68b8da8e4 +msgid "By default, this returns the context's channel." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_destination:7 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_destination:7 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_destination:7 +#: d4a4dc4660df41218b1ef139ba681fc6 +#: 62bf6b63df5846a0835528b1ac322d2f +#: 222bd55f0c5e45b8861d569439161fa4 +msgid "The destination where the help command will be output." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_destination:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.get_destination:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_destination:8 +#: 22ac12821be84e64abe4208c66e428ca +#: 0cbd6318af51406c8643fbbee8a212e8 +#: 7f7e57ef65404c35b3d4055673884138 +msgid ":class:`.abc.Messageable`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_error_message:3 +#: ecf08844becf48199a5aba387a75a395 +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_error_message:8 +#: 91bb9645a42e40298a5fa110a0f0f035 +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:15 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:15 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:14 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_error_message:13 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:15 +#: bb2b8cf7f8da4ab498331b3d6bfb0f42 +#: 1a16d349e6b147ea8072bbe46e99443b +#: 145f3f00a2854c308de39ac9f2935d3d +#: 44d8a4471f8d46199d03cf08d9d852fb +#: d383f46bc639467e976a67a497aeb10c +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_error_message:16 +#: f7931984f74a4af5a0f13a3131100e8f +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.on_help_command_error:3 +#: 62a23463e67743778ff5b5ffda0e1cb5 +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.on_help_command_error:5 +#: 2b2100cd275e4909a0cc009c6a3d63d9 +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.on_help_command_error:8 +#: f9b68e3eab0e4186b0e12bab0d4c59e5 +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:3 +#: b1bcd236de8d485e97c9dcf3a2b6c09c +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:6 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:6 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:5 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:6 +#: 2d550440e5cf4edc8ced1cacaeea627b +#: d2912db2232849caa145cdcedd335057 +#: 92cd46fd01884b549196ce7d6f3affaf +#: 8733bb9051b04e2f91d902a402af6929 +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:17 +#: b39a59a79b09468a9c8275ebfce85a16 +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_bot_help:21 +#: 02dcb1f0bd02493bbe5ae9e872616207 +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:3 +#: a828d648b1ea4065b69f360aaf334a2e +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:17 +#: 0fca5ad2726a4da3aa2b4cd57bc85212 +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_cog_help:22 +#: 98ac7e67a5fa4e958a227fe3594c0796 +msgid "The cog that was requested for help." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:3 +#: 27ac13aaf6a54dcd9614dba2b03d98c9 +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:17 +#: 8bc4bcfb9f3141838dbe400cd555c11c +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:22 +#: 481ed9cbfcfe4d5c945aedb7f564be2e +msgid "The group that was requested for help." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:3 +#: 55e69ff04387467396ff5f080c4b729c +msgid "Handles the implementation of the single command page in the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:16 +#: 15230ebc88374c4696b38f30fd9070a2 +msgid "Showing Help" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:19 +#: e5bdf0c519cc42b5ba11a16bd65b33aa +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:22 +#: 3491b2a4d9d74002b8ead57973164b4f +msgid ":attr:`Command.help`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:23 +#: 0d6cc8451c074f339f08d2ea9ff6f289 +msgid ":attr:`Command.brief`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:24 +#: fd4e0a0770cb4dd583602d3067e81b24 +msgid ":attr:`Command.short_doc`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:25 +#: 76ce4a6e88d444ecbad32de75bc5fe22 +msgid ":attr:`Command.description`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:26 +#: 20889f14e1744f53bf91b3810fd8bf36 +msgid ":meth:`get_command_signature`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:28 +#: 3049f2cecc1b439da3d78baacd2005e2 +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_command_help:32 +#: 0a14d7e642ed4889b30688b6c0048821 +msgid "The command that was requested for help." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.prepare_help_command:3 +#: 404a74fe43794d0fbed34f5c3d1ea920 +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.prepare_help_command:8 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_ending_note:3 +#: 85592828042a4467a6777ebda074bc0c +#: dc22e7922ddd41f89fa7eab934507ba0 +msgid "The default implementation does nothing." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.prepare_help_command:12 +#: ea87701788ad4a47b061de81d0fe4850 +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.prepare_help_command:19 +#: 210b8f6390bb4dc69b4eadd6b4ddfc9b +msgid "The argument passed to the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:3 +#: 11a8f56569d6415181816fa4eefa4fb6 +msgid "The actual implementation of the help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:5 +#: b6cdc3d230bc4daca9399775d44f4ce2 +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:8 +#: 3f473bec01bb44ac91e8ff68715f11e9 +msgid ":meth:`send_bot_help`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:9 +#: 80edd5df25254ff99b0ad02aa9274411 +msgid ":meth:`send_cog_help`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:10 +#: eb6bdd4d05734e8991acd54e5104d075 +msgid ":meth:`send_group_help`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:11 +#: 6dee8753a3564294b028a06230aeb65f +msgid ":meth:`send_command_help`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:12 +#: 3c5f3d8e5cbe4e5aaa7c3f131a3045de +msgid ":meth:`get_destination`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:13 +#: 39474771f7684d45b5373b17b69f2f6e +msgid ":meth:`command_not_found`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:14 +#: f3c5d3d6839c4af5ba7d4184930ea80f +msgid ":meth:`subcommand_not_found`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:15 +#: d5005de494d94770b7117858517d4bad +msgid ":meth:`send_error_message`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:16 +#: 83cbfb0f715e49a2a63f2b66d6fc98ff +msgid ":meth:`on_help_command_error`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.command_callback:17 +#: 05293fc84d7d40f29448138536a0d84d +msgid ":meth:`prepare_help_command`" +msgstr "" + +#: ../../ext/commands/api.rst:216 +#: 280052a3bfce4f8a8146f4f398509707 +msgid "DefaultHelpCommand" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:1 +#: 9de62005f62e44ff9931e1d9a2f0d6a2 +msgid "The implementation of the default help command." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:3 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:3 +#: 98cc93d14ebe483c8ea65f00dd5b35bb +#: f137fa3aaa744ad4a7c97440ae3983d3 +msgid "This inherits from :class:`HelpCommand`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:5 +#: 2d8f18b9ac2a4f7ebcfbc98885b666e5 +msgid "It extends it with the following attributes." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:9 +#: df8735e1f5c348a88ce9829e4c3bd4da +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:16 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:7 +#: ad75381379ab48acb3057dc68b6c4a37 +#: 635b1071dfb34ad7a5a1fe786e7753d7 +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:22 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:27 +#: fcb81f11c0f146b49699484d0ce0f808 +#: 1eb3ffc5b45a4bfc82ffa5b72fe62a6b +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:33 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:38 +#: bdb32d5c391a4020a14aa9e04df4dfb3 +#: b1431743c60d48b79201f850d039bc89 +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:36 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:41 +#: 3ed75e87187148e5b3a2193a292ef53b +#: 25b1480306b84b2e81b4615d3d7f3569 +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:40 +#: ca0e9178e75445c5bc4e6128b058880c +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:46 +#: 0ccd0499465045b780f7a265704d5d53 +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:53 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:45 +#: 506d95ebb9664f17a10381534561613a +#: cb07a3595ff242b58e2245dd1a66f1c6 +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:60 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:52 +#: 1ad02dd72b1b4b84a48ebbb3b20dcf54 +#: 0961aacb619d447db16361dac484a415 +msgid "The paginator used to paginate the help command output." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand:62 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:54 +#: eb7ca19c2ce740f49eafb5aa2225772f +#: 2397b0d2829a49baaf106f467381b948 +msgid ":class:`Paginator`" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.shorten_text:1 +#: 94814d7b6a2f4e74a8ef24ccfb43fc0b +msgid "Shortens text to fit into the :attr:`width`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:19 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_ending_note:4 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.shorten_text:5 +#: ea5d814f698e427c927fe26e57311142 +#: 3272f6011c3041e58cd0f0df8a119d80 +#: 0bcbc4129fd84097a0e51b1aec662294 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.get_ending_note:1 +#: d2d8ce0a6f2947739d49d1a3d2b80967 +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:1 +#: 561ce69694644ee584ffcd113fb09369 +msgid "Indents a list of commands after the specified heading." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:3 +#: 02d98ac7859f4ade9548622bb854fc31 +msgid "The formatting is added to the :attr:`paginator`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:5 +#: d1c297d5dfe44c07ab17475943a517cf +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:11 +#: dacbb4c5af9145caac90d727d81893c0 +msgid "A list of commands to indent for output." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:14 +#: 9a760df2465e482a9ccab7abd60204a4 +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:18 +#: cd7322b48f414511b8f0e5a791f99e01 +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.send_pages:1 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.send_pages:1 +#: 604e96dc969d4a16ab5e5513a0590f96 +#: 20ed64e5eb7d429785548843d77bef83 +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_command_formatting:1 +#: 0c64282ae9a7447db39ab64e33fb73aa +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.DefaultHelpCommand.add_command_formatting:4 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_command_formatting:4 +#: 56429d0375c84befb1b01caa55354f47 +#: 5555ad5e34224e918e4ce233976e8983 +msgid "The command to format." +msgstr "" + +#: ../../ext/commands/api.rst:225 +#: b08b39dd303f4219b5448e9c41960424 +msgid "MinimalHelpCommand" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:1 +#: 782cc545def54629a84441b98b842142 +msgid "An implementation of a help command with minimal output." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:13 +#: 0d0161510712488bba1af85693fb13c1 +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand:20 +#: 2a3d9de0455d454db86f48ea4fce0bee +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_opening_note:1 +#: bf9bfcfccb6d4729ab5e79ca296f4be7 +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_opening_note:3 +#: 89825549a52b49f0b61ce22ede84a59b +msgid "The default implementation returns ::" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_opening_note:8 +#: 1b33ab9eb24c4202a2d0f6d49d35944e +msgid "The help command opening note." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_ending_note:1 +#: c7be250c990b40f894b42471edbb3f04 +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.get_ending_note:5 +#: 73dd495170d14ddb8230ad7b4b9fde74 +msgid "The help command ending note." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:1 +#: dc6008496d7f47f98cba8124a45e9fd8 +msgid "Adds the minified bot heading with commands to the output." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:3 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:3 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:3 +#: 7b8dc415474a458294ed699b814d8908 +#: 09c2d6055395468daac5f486f490699d +#: 55aa94f5eb8b4778ae954b22c1e49c20 +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:5 +#: 173c5382465042adb49b12d09c20a4e9 +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:9 +#: 6bbc75e158a44e9ab07b181c71107a32 +msgid "A list of commands that belong to the heading." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:12 +#: 812ae0735d0048639c1084356979556a +msgid "The heading to add to the line." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:1 +#: 432e24a0d5014f5f9fd67c74acc6e33c +msgid "Adds formatting information on a subcommand." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:5 +#: 8680c6a80a314ee4867833116e05da47 +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:9 +#: 36593ac4e6934eb69a5ebb891697a668 +msgid "The command to show information of." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:1 +#: ab5863e544b64f7b87d3f984d5c394d4 +msgid "Adds the formatting information on a command's aliases." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:5 +#: db40888f62d34d5aaba4d8576d27cbf4 +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:8 +#: 57236ac0df9640058e87d6c99e2af3e6 +msgid "This is not called if there are no aliases to format." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:11 +#: 9c56559714724ad8804be05c5188648a +msgid "A list of aliases to format." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.MinimalHelpCommand.add_command_formatting:1 +#: ef842cc9007e4bf4967e22877b29c9b3 +msgid "A utility function to format commands and groups." +msgstr "" + +#: ../../ext/commands/api.rst:234 +#: e087918d096d4026ae2a63986aa52427 +msgid "Paginator" +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:1 +#: f4b68527e826465aa64533fd9b28a338 +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:7 +#: 198c467dbad64882b4699ce2063dc523 +msgid "Returns the total number of characters in the paginator." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:11 +#: 528352da5fe14198a01e6fef61626b57 +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:17 +#: 457c0e8dfeaa4f79955f96a9ebe8f605 +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:23 +#: ef009d5cd2d84fce81fd6b4f1782cb73 +msgid "The maximum amount of codepoints allowed in a page." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator:31 +#: 3bd1178464ce48e4bd3fd97e62c20268 +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.clear:1 +#: f2fe538d81054b20bc5330048409a978 +msgid "Clears the paginator to have no pages." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.add_line:1 +#: a889ff4c34e14afb871b9789e307a078 +msgid "Adds a line to the current page." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.add_line:3 +#: 46f22c4041284ea785c2e00a9d318648 +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.add_line:7 +#: f0def295b6fd46abb95f378c74fd8d1b +msgid "The line to add." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.add_line:10 +#: 5c5acb52ec8841aa917643fcee21679e +msgid "Indicates if another empty line should be added." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.add_line:13 +#: 9b7fe0db24cc4c3ea3a7265e7dbe6695 +msgid "The line was too big for the current :attr:`max_size`." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.Paginator.close_page:1 +#: c7e11f385ddf48978184752e980418d2 +msgid "Prematurely terminate a page." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.Paginator.pages:1 +#: a117c5b0ea474b4391c3709d34b040dc +msgid "Returns the rendered list of pages." +msgstr "" + +#: ../../ext/commands/api.rst:242 +#: 32059f72f8f54d26835e62adf60c9b0d +msgid "Enums" +msgstr "" + +#: ../../ext/commands/api.rst:247 +#: e4a49416872d4ff8938b8ee02ce3e083 +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "" + +#: ../../ext/commands/api.rst:251 +#: ede6efcacb2449b4bae045591438d616 +msgid "The default bucket operates on a global basis." +msgstr "" + +#: ../../ext/commands/api.rst:254 +#: b2dfdaa7dd0d4c73af1575cec0eb30a2 +msgid "The user bucket operates on a per-user basis." +msgstr "" + +#: ../../ext/commands/api.rst:257 +#: 5b9ba9dc86144fd78ff0344a4e94c378 +msgid "The guild bucket operates on a per-guild basis." +msgstr "" + +#: ../../ext/commands/api.rst:260 +#: 50a3c2d61733481f855ca57326ac580d +msgid "The channel bucket operates on a per-channel basis." +msgstr "" + +#: ../../ext/commands/api.rst:263 +#: e2627dc43a1646aaaaea2f01d1ee3f45 +msgid "The member bucket operates on a per-member basis." +msgstr "" + +#: ../../ext/commands/api.rst:266 +#: 42fba9ff10cd483cb92dc22f6fa9eb97 +msgid "The category bucket operates on a per-category basis." +msgstr "" + +#: ../../ext/commands/api.rst:269 +#: 2d885b860c264455889f5e4443d092f5 +msgid "The role bucket operates on a per-role basis." +msgstr "" + +#: ../../ext/commands/api.rst:277 +#: 3697effeb84b450380a6217332bf7ed3 +msgid "Checks" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:1 +#: 8f81b5584b3b4d4fa4663b09d276fa5a +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:4 +#: 3c2d00f8a23041ec9335281080bf4edc +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:9 +#: 4f5494b1e3554410800f085bfbffbf9c +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:14 +#: 3d1a87c8862542469116e77863535058 +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:30 +#: 9e93c35970eb43ecbdeb837dfcff73da +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:33 +#: 5c3b4dcd8381445fabe4944d88c6c1e8 +msgid "The ``predicate`` attribute was added." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:38 +#: 0bcd317d5e9f4e9e91ca1b060403a727 +msgid "Creating a basic check to see if the command invoker is you." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:50 +#: dd48570384ea4a05aac75e08169fd0f8 +msgid "Transforming common checks into its own decorator:" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:65 +#: 02a2a5184ec947eaaf5460150b287c2c +msgid "The predicate to check if the command should be invoked." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_any_role:15 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_guild_permissions:8 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_permissions:9 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_role:15 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check:68 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:21 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:27 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:29 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.guild_only:9 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:19 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_guild_permissions:11 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:18 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:25 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_owner:10 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.max_concurrency:24 +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: d1219c96be1d44378e6cc2e7e6537aaa +#: 89930b85abbe426da95d66ca271318e9 +#: 8e38e77d7b9048f2bb71dda1a34412b4 +#: dc0b53a10b534e759a2ff174f1faacf2 +#: c633df8dfdcb4403bd0c45271b7a2253 +#: 4126d460737041968caddf0baba48778 +#: f4f0624ec0014fe481fc087caf0be757 +#: af87e75ce57a4eb99ebae04d7a43d6d9 +#: 9b50a467341249fc9dda9cf32ef6e290 +#: 450ddaa136654cb2805349c90971dbf7 +#: 641aba9d9e1242ee81b39f49ea575ac7 +#: de9d3c6cfef5413591a039d9f0f07d0c +#: 2107be0b0c4744d689fa1f41bc86c2de +#: 80e69ee4c0944d2a8056466337360895 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:1 +#: 649033939727472cbd4f8a6f09454810 +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:4 +#: 5e230c760ea048268aa0056ae3f03f4e +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:9 +#: e990ee703a2549a897471de430a1da05 +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:14 +#: 4a7b81eca1c3484fba8cf44b85ba6fdc +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:18 +#: 0a3c24e60414491ba64d3853fc673029 +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.check_any:23 +#: e375d514f6dc4418ab45510e055e9919 +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:1 +#: 81ea5857330741739c83ed3dc41dde4e +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:4 +#: ca512848d2bb4648a0bdb9addbf84a42 +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:7 +#: 393358caeb1f4b51b551ddb9b959abef +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:9 +#: 78c59b4d3b6349ba846bc6eb0826344b +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:12 +#: 8452153ef43340fba093ab84f4df5a56 +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:18 +#: b03d3b707fb44779acdfb64a04c67537 +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_role:22 +#: 5cca5ffe93f440dd85df9dc52292045e +msgid "The name or ID of the role to check." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:1 +#: 72a7042c5b714f9a82015a2f50305e10 +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:4 +#: b36c2e278059410ebb228e8102743974 +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:7 +#: bf44a1aa790e4c76b7585d4744c49ade +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:10 +#: b65895b130444cd3b829c68a0599c012 +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:13 +#: 46edcac0a3e6496ea9e80f35ca24f270 +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_permissions:16 +#: a4c609c072e54e3f84a6a00d7843380a +msgid "An argument list of permissions to check for." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_guild_permissions:1 +#: 93b6336c75374f4d84a059524c59dff7 +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_guild_permissions:4 +#: 6b5b1ee1f906410abcadc2b79fc8dad4 +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:1 +#: 7c5a4039354e4b71b6f01196a16a2740 +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:5 +#: 6fc2639d3bfe40a3983045e6959bd1a5 +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:7 +#: 5da254078bdc405689d63c4229f9bf8e +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:13 +#: 35ade017b87c4fe4b05145ddc2f2f201 +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.has_any_role:17 +#: a94c7b20e99a4d3d8b7b90aa74e6271c +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_role:1 +#: ab9f894a18c44d9e9a4899949d10abcd +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_role:4 +#: 8ef5c87638f942bf8deadf8ebbd596d5 +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_role:10 +#: 94f6e1f2bbe042f7b4d946ecfa351b19 +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_permissions:1 +#: 31696f0d12c64bcba9fe56a3e1a6e3c0 +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_permissions:4 +#: 649ad7d58605463aba43ee78c2fe92ca +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_guild_permissions:1 +#: 6e1dea28f1e242dcb89ac9f27aba156f +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_any_role:1 +#: 504a86050e164f1cbc2ef3dfab214b6e +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_any_role:4 +#: 85b5f7bf08514667a71efb8c49f1dcf8 +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.bot_has_any_role:10 +#: ac715be0bb8a4b75b4be55e531a54809 +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:1 +#: e9dbbf29266342019191e100cc14b33e +msgid "A decorator that adds a cooldown to a command" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:8 +#: a718cc3afe304175996a7f319afead4a +#: 46e1cbba4c484f43878a27339e7e0cfa +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:9 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:14 +#: 1a5e6e01b634462489aa2c9b72d75c8e +#: 6c80cff4c0474fd69519848f236df8c7 +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:12 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:17 +#: 4149b91a8b9b4f4ebcb203d68f34a4c2 +#: e8879267db884ecca4f97076cf232bbd +msgid "A command can only have a single cooldown." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:15 +#: f571532f4e36472da1ad4894c98e70f2 +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:18 +#: 3c9e0cce40ef4459b3b93b81f9112985 +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:21 +#: 768f7ee582bb422f8b4f95c93a20d22f +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:21 +#: 2dcd9030125648b1b302cd76f6a181e4 +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.cooldown:23 +#: 2f0d5a5a8e65496d84352249b0582557 +msgid "Callables are now supported for custom bucket types." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:1 +#: 6094d0e28a9c4019a165562f2964df1c +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:3 +#: 079f58510a774037972396f8a7e81087 +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:22 +#: 672cd5f2ef144f6fbad1395b2f5c0b95 +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dynamic_cooldown:26 +#: 593c7a5e5b1d4edda83dc41a14a274cd +msgid "The type of cooldown to have." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.max_concurrency:1 +#: fa44abacc86b4549a649aa49b5b6ac82 +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.max_concurrency:3 +#: e94f4d66c33a4a8095e7fbf8d1a92968 +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.max_concurrency:11 +#: a11c0e11f70d46c9993cbeeadecc0979 +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.max_concurrency:14 +#: a412433be92548c09349f173e0f21567 +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.max_concurrency:18 +#: 4606a73966d64b4a90a6cdd92f2e88aa +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.before_invoke:3 +#: f5e756aa4e554e66a3257a5129c4ef4b +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.after_invoke:3 +#: f74267b631a5439eb0c212f5feded4e0 +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.guild_only:1 +#: 6e1c6fc4c43844059652d7bf1c1d21d5 +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.guild_only:5 +#: 51b7f083cf344183970934ed917e18fc +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dm_only:1 +#: 887a1905103842a688e15cf1b6ee6216 +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.dm_only:5 +#: 590b200bb7aa4c1080ac46793bed34f7 +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_owner:1 +#: 887311557f434bafa7caf9d0257629cb +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_owner:4 +#: caeb6f7d083e49cab51f2b82ee02f9ee +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_owner:6 +#: c1106d33034b4444bbbcbf91375f5fcc +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_nsfw:1 +#: 1b423666d7694ad387cc429489d03abe +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_nsfw:3 +#: fba7938014474c98afff1432159e3000 +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.is_nsfw:10 +#: 7588f10840c442aea15f191eac9ae20c +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "" + +#: ../../ext/commands/api.rst:339 +#: a1663529490742deab91241c83f67df8 +msgid "Cooldown" +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown:1 +#: f693cf1699b84066aad9b40c50de702a +msgid "Represents a cooldown for a command." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown:5 +#: a8e6375201964283838d7bebb18fd640 +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown:11 +#: 9922824a0cb34709ac41ec5fb31849e8 +msgid "The length of the cooldown period in seconds." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_tokens:1 +#: d95a9dfdb80445d98472f84997e7fc9a +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_tokens:4 +#: 94930446a5ce4847b1c683389d552a57 +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_tokens:8 +#: 37c64c1f6261438891a797a6a574ac89 +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_retry_after:1 +#: ebc6225bfbf4471ea8705b0813f0c2ca +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_retry_after:4 +#: e762ab85aab44884be1d2bd769467a1e +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.get_retry_after:8 +#: c6cf86ab00b84adbb67edd54f9fac287 +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.update_rate_limit:1 +#: e116ae67c1cd4dc285f47b3476ee09be +msgid "Updates the cooldown rate limit." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.update_rate_limit:4 +#: fe6e90f08c66469ea5d5f007bd8444b2 +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.update_rate_limit:8 +#: 451125af000a49a4a8a75a4da1012f89 +msgid "The retry-after time in seconds if rate limited." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.update_rate_limit:9 +#: 337ae2421ec549f8afa675182a9a8eab +msgid "Optional[:class:`float`]" +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.reset:1 +#: c37c3555b58b45a7804186ddaefded8d +msgid "Reset the cooldown to its initial state." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.copy:1 +#: b701fd3d4965415e8b93f8b7254478ba +msgid "Creates a copy of this cooldown." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.copy:3 +#: 958e6160c5d34c63afa9f3c9414d1927 +msgid "A new instance of this cooldown." +msgstr "" + +#: ../../../discord/ext/commands/cooldowns.py:docstring of discord.ext.commands.cooldowns.Cooldown.copy:4 +#: dac0d660be9a427495f6cbf44647e95d +msgid ":class:`Cooldown`" +msgstr "" + +#: ../../ext/commands/api.rst:347 +#: 4942dd8081954a83978bfc1c1e8ae392 +msgid "Context" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:1 +#: 2a57cbae1bfa4447b0bc2a09e3f4f878 +msgid "Represents the context in which a command is being invoked under." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:3 +#: 8032257bdf734e74b87c614d3237173a +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:7 +#: e0c4816bb06d4bd2a34987e6818214c2 +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:11 +#: df100d3bf6124f60895f455a7f705170 +msgid "The message that triggered the command being executed." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:13 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:9 +#: e1bc43a7b22b49f7bb9f4ba8e292f620 +#: 6c79017c8b06446498c3190155904db2 +msgid ":class:`.Message`" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:17 +#: 6004a27f6c4540209779e671c47e15e3 +msgid "The bot that contains the command being executed." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:19 +#: 7e00bcb1f585437696837bdd6b95547f +msgid ":class:`.Bot`" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:23 +#: 708802b8cfb84541895d3b8f333bd922 +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:27 +#: 1b9289e73d8242c7ba23ba6e1e013dde +msgid ":class:`list`" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:31 +#: 44a48bb25cec474f9ee80bd4f8294ad8 +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:39 +#: d8ba277419e4447db3c9c9a0f367840b +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:44 +#: 87b4052a2fbc4a99b8faca40162e548e +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:48 +#: 35b629babfae442680af8ef790c77862 +msgid "The prefix that was used to invoke the command." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:54 +#: 010aa10818794f5e9150e284ed0e5d53 +msgid "The command that is being invoked currently." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:60 +#: 12b1f3d1af694899946545d0df78f3c7 +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:67 +#: 2d3c6624565f41f183a437ef5099cc50 +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:70 +#: 23c2f761a59c4f3bb5fdb60ddbd0b33b +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:74 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingPermissions:10 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingPermissions:10 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:17 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:17 +#: 9205feec771a4b34b5d819ac90529941 +#: cb84117325504c15a7af5fcc2e9da119 +#: d22727e1ca3d4290a38364a0494b33db +#: 5355406b12284468bf9b09f32c008471 +#: bfd88b1db0fc4c3b8e82ca1be41b36c4 +msgid "List[:class:`str`]" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:78 +#: 5bb9c8cd59e1402ea7fcc3bc6401b70e +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:85 +#: 269228517d874a2984924a4675897cfc +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context:94 +#: 7f645d52858449aa8a2efd0f66f235b4 +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:1 +#: 61fb3dc224d44b0783c3b04b7fea1ddd +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:3 +#: 89afaf721f6643aab53272b5f881dec9 +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:6 +#: 51ebc16f2d4d414a99faa0ae6bcf7601 +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:11 +#: eaf31d1fd11746ff859caaec64b90ca1 +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:16 +#: 57b793e910ca43faadaa044dc537fe87 +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:21 +#: f1761b940ade4a788c4e8430b8edaf05 +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:28 +#: 53fb69e1b6954079bd5f2985c156bf5b +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:32 +#: 83b8d6805ef1420b87d97e31bc10efdf +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:34 +#: 9510fd4d07914ac0a5d62b96ad673bbc +msgid "You do not have permissions to get channel message history." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:35 +#: 4355deb6fa9d4bdfb104c171c05cdabd +msgid "The request to get message history failed." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:36 +#: b2ded6cd5eef4474a03a58b81418e0fd +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:47 +#: 1cad16da9e4a4a039e1c0be9c6789df6 +msgid "Flattening into a list: ::" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:1 +#: 36d6064ff8644307a143e9643a73d3b1 +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:3 +#: 186d34907d0f42f0be28a22e9c5d48f6 +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:9 +#: 03c747a982a54571968a3331429f7a20 +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "" + +#: ../../../discord/abc.py:docstring of discord.abc.Messageable.typing:12 +#: a48fc9f9ab9846158116f6d2cd0dee5b +msgid "Example Usage: ::" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:3 +#: 0c5cca1e94144653989d617b781dc61a +msgid "Calls a command with the arguments given." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:5 +#: 3c31d3de30834b32ad5f1b70ba33922b +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:10 +#: ba95aa92309b4ac1bdcb9344fcd4f787 +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:14 +#: c027a3c528604f43b1436b5cfa0640c5 +msgid "You must take care in passing the proper arguments when using this function." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:18 +#: 721b6a15a25543cebe7d83e0ffac4465 +msgid "The command that is going to be called." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:21 +#: 99d44329ceb947579cd3bce2c2cf2aa6 +msgid "The arguments to use." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:23 +#: 63e53520af0043749b354138ad9211a1 +msgid "The keyword arguments to use." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.invoke:25 +#: 05c7de921b3f4b9c9df3814555cc5fd1 +msgid "The command argument to invoke is missing." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:3 +#: c7fe99da5385412abfc8c220108ef77c +msgid "Calls the command again." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:5 +#: 04d502dbc692422eaceb397b4b6ad11a +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:10 +#: 1cdff60fefdc4f86b552f02bd81be288 +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:17 +#: 075d311288124d9996697486ed5104e7 +msgid "Whether to call the before and after invoke hooks." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:20 +#: 203459acad88404ab30cd45897df3052 +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reinvoke:25 +#: 2f6aa4215b0a4936bb6bacfb0d2b72af +msgid "The context to reinvoke is not valid." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.Context.valid:1 +#: e537426c5a4243f3980cb0e87280d9c6 +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.Context.clean_prefix:1 +#: 78c10dddc1524e24aa3ad63f554c414f +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.Context.cog:1 +#: fd2658097cc24f7db5314f08ca902c2c +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "" + +#: ../../docstring of discord.ext.commands.Context.guild:1 +#: 3b3b16de997e4e54877d2d70b173cfe2 +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "" + +#: ../../docstring of discord.ext.commands.Context.channel:1 +#: 40a2b9fd266f44c69a5de1c7ee7ed5ff +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "" + +#: ../../docstring of discord.ext.commands.Context.author:1 +#: dd56849813db4c7299d6a6f2757ca297 +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "" + +#: ../../docstring of discord.ext.commands.Context.me:1 +#: a3c47787a8d44d61ba8043b2dcfd58ab +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.Context.voice_client:1 +#: a3ce24b8f1b54cb7bad801cd08901ef2 +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:3 +#: b801313d2d364c268100784609b70816 +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:6 +#: 45cea76cc29a4eb1b767fc7c489a81e5 +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:9 +#: e49a64b80a234858915386f65ba97580 +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:14 +#: 2d8cd3a7d42f4f7faf846ef88b04a2e5 +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:18 +#: 13a046373ec84445af9a1a75a3426873 +msgid "The entity to show help for." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.send_help:21 +#: 68525271233843f89cac1a272fb172f9 +msgid "The result of the help command, if any." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.can_send:1 +#: 2f8ba1ce6e854c78bb794c8d818a52fc +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.can_send:3 +#: caa6e97a4c40413b818721112e133895 +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.can_send:6 +#: c9c33719233542fc9ab097fbef9946b7 +msgid "An invalid type has been passed." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:3 +#: 39474d78af2f441d818ba1b7ccdeccd0 +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:6 +#: 680a3c9536194ffd9086dc8f20207694 +msgid "The message ID to look for." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:9 +#: 3f227eccd4324618943ec343072814bf +msgid "The message asked for." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:10 +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:100 +#: 2f6f2c77fe9f49d6af547d8b4d988847 +#: a3dd41fd9ab742efab20144a613098de +msgid ":class:`~discord.Message`" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:12 +#: cfef24f3237e4958816a5a01baa12172 +msgid "The specified message was not found." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:13 +#: 93b6c7c33ef84abfa0fba2952731ae42 +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.fetch_message:14 +#: 87417e86a48a426f9a94bb355a04bab5 +msgid "Retrieving the message failed." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.pins:3 +#: c0f7203f91234dcf9b71d4aa08c2743e +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.pins:7 +#: 5897281b37544f1ab20f5339ce9ab3ed +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.pins:11 +#: 7bad27e461a740d299b8c4bd148fd4e3 +msgid "The messages that are currently pinned." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.pins:12 +#: e8b1b5f758104e489149fdbb07deeafb +msgid "List[:class:`~discord.Message`]" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.pins:14 +#: 46fce97e3e2044b9812605b7371e03c5 +msgid "Retrieving the pinned messages failed." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:3 +#: 666fc58fd984426b9fc3697183d98530 +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:99 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:8 +#: 07908514f89544cd8fadb56e8b84c9ea +#: ac88707568634877a39e9c25dc0f979f +msgid "The message that was sent." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:102 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:11 +#: 44cfdba165a2496f86c393e4ff002312 +#: c0d6405ddb4d47eeb299d8bddc5da20b +msgid "Sending the message failed." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:103 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:12 +#: 1baacf7f645a4a3e98b1d53ae7e82fa4 +#: bbb276f2186048e394723cd4f7145d4f +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:13 +#: dd5c11c9c7f04d8da2c0fcf683585cbd +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:3 +#: 233e5db05eb849cc92f9a5d67a3c1cb0 +msgid "Sends a message to the destination with the content given." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:5 +#: 401b162816dd4269983af2a0953407c2 +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:9 +#: fc1fb167cc7c4368938fbc342518f479 +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:14 +#: a67e87cd5c8d44fdb709013d4ff36929 +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:20 +#: a59873e3c70548c5a2419384906c6096 +msgid "The content of the message to send." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:23 +#: c4b9c97ff6d14d1bb9ea552fb6386908 +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:26 +#: 75e503161f364fa5a593ca4873cec071 +msgid "The rich embed for the content." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:29 +#: ce1d5306f02a4b228235ba11840ae1da +msgid "The file to upload." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:32 +#: 657cdc05b2744bf99bd70c4f327ae6a6 +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:35 +#: 5dedce0b1ad64c5f98413e459d91b5d9 +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:39 +#: 9e1547829fc343e9a1b366baf07c9b31 +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:39 +#: 4210f7e257dd4a96af7c38683f665d88 +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:44 +#: a634d6f1d80b454f9468298d1ddef3d6 +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:49 +#: 8e05171456134fe3b53ec51198be752f +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:49 +#: 310aceb3d63846e8a3c93bc70dea8dbe +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:59 +#: db923c5ea4f34a8ab38cd7fd07aa8f96 +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:59 +#: e35ba87b49314f98b33ba3227b02d2e0 +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:68 +#: 1124d9197c524ad5b4c48f4a10574a39 +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:68 +#: e5ea147dab2a42f9a952890a2690940b +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:73 +#: 23c9f13fa7754faf8b1ab81a09dc4688 +msgid "A Discord UI View to add to the message." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:76 +#: 3ad8c72fa9314999b37d175de732583d +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:76 +#: 1ee790371a76498aac1fa3332d7a306a +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:81 +#: c01e8fe8d227480387cf8df951050189 +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:81 +#: 8e58570511c14eba84fb64fefa25077d +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:86 +#: 30c1bd01caa44c0693f3a649d876db8b +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:89 +#: 4a4c60e54808412797081f64973c2198 +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:89 +#: 8007bf6be7b3451e82b1bb3047cfe9cd +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:94 +#: e4817933749f49f39bff7308c3294a2f +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:94 +#: 29bd5583d5a045a7903518ab2ed3337d +msgid "The poll to send." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.send:104 +#: 92fd7f8bda8f4e59a6add001c2ae563e +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.trigger_typing:3 +#: 7e981ac3a20345ffb61daf4c3509de80 +msgid "Triggers a *typing* indicator to the destination." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.abc.Messageable.trigger_typing:5 +#: b663ff6e5f654ad88fa62051626ab64d +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "" + +#: ../../ext/commands/api.rst:365 +#: 6129e2344292447d859948329c263665 +msgid "Converters" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter:1 +#: 646dda467a2949ffb2a6f2b4d12b9da9 +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter:4 +#: 736c189e21924d62b1bca6145d56aaa5 +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter:7 +#: b09220a3e54145b982ce91fd4028ad9c +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:3 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: c80b06adf0834c27b7829ecf51a82248 +#: fb5313d7741b4d2db6e60b570df6f6a0 +#: dd158fda9cfb4b529973c525fee854b6 +#: 9607702eab6c49efb9a4119103b82e75 +#: 2f85dd4f1ca8478f9dbe2a257cb89cff +#: c2381d04b19c48cd814600aa7d9b51bb +#: 4b4a02edc9c44e89b0bd8c2bccd2aefb +#: 763a419f7cf649ffa2d96aeb207e46e9 +#: bb34b8eea54841858ae8180949dda017 +#: 6158085ed9c341788ea52cf9a21e1e80 +#: aa8d4d6a3f344d44a48ddbd1f693c98d +#: 0894909649984af7a845e3a97413eb2d +#: 0e2fef5009db4f8489492d0cc605b95d +#: f26f4284b0fd4d47bf389f7ce2a6047e +#: 03ac8e250866477eba49ff42e1081834 +#: 965100519d294e26870fb58afeb8ead8 +#: 782cd08c1d144644b8ddc56d60fe60a9 +#: 433f4f87aa8b4e7bab48d506933668c7 +#: b8784b1abd1e462f8d597aebccf0d202 +#: b2fef925c9614c268a53eefdce785932 +#: c3cbd4319cd249ca84a90c1514d4857c +msgid "The method to override to do conversion logic." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:5 +#: 9d9f9443ace94d45aff747a2a2a753af +#: 61749b0fa40841509969b156cb4fc95c +#: 87d86e66c055407981a64ed0d0f7a44f +#: 66bafe73e2ce4667b9b5f267f8b27f1e +#: ff846990677f4e76845d95c4d243c062 +#: 608e4ac034cd4913ad106135e7dfbd9e +#: 3d7b5fcd80624f5194711b260a731768 +#: bf66dbfeff2a43f993109f0f86fb0fed +#: 1ff60739e5f94e6aa2c34071170a578a +#: 62787fc58116488e9c1eeddfa0334306 +#: 453d258be4174b7d8ffad4fdf5d587cb +#: 11281e1427e7446692183a0b4e838f62 +#: 8cd86b4216854206af2d0d9b74e9b97b +#: c4ad195a6fec43b1a9d51974007d15ec +#: f4e357e24f444e06bf20c2971f4a72aa +#: 8e3cbf7624e2443dbba0617bd0f3a878 +#: 192b8464d0e346b39f1baa2a24f03486 +#: 18fff5827a084c8e899a2017a8f41dab +#: 9c2a2411d01e4315b1ae7871666182cd +#: bc0ed62ba2aa4314888dc88d419d16d6 +#: cd87d2df86834dfb83842807b031f670 +#: d392bdbffeb94cfbb91753e1b1cc7808 +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:10 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 26053ad61bd14083a0fa5c3f21a15690 +#: 0377135bec0747498096bcabdf3bda64 +#: f41e322438324260aa3226c7db0da2cd +#: ea1916f8e368413e84c356c8b477a32d +#: 8fcedd9d3de64753b9450be37eabd56e +#: 8ff0fe1b9b214b97a38cecf4b7b036c6 +#: a71bb051c3eb40128548912ee1acc1a7 +#: 9d95b5a9d537401d96785660bb0a0cc7 +#: 26234b30120e46e2bff55fdb28137baa +#: fb72d0c678b544f2ae220bc0b5fdb65b +#: 20e3d9c95a4a4118ab6a001508e47c6f +#: e12af6db5fe241439f9e52b4bd54566c +#: 1da1ec9afa364b6fbc79bd3ab8be1e9c +#: e60fdc13522c4e0ea1c9387b86db298d +#: fe99711342ac4c1696b488b7e5b38243 +#: b8cf950ec32b4b26b3bb6ce2dcf088ef +#: 32f1fe6e49844a17932aeb138781458e +#: 5d1ddb0825224e9aa3a5f0c2d73c2cc2 +#: 3927eab227fd4f02b5401a0635787e12 +#: a1dbd5971e8441f0868768c3c4b01f00 +#: 333d065956af4fcb8ddf86558448db15 +msgid "The invocation context that the argument is being used in." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:13 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:13 +#: 28f8742b518343c0a0621906d8c7afa4 +#: f1cea8cee47a41f88dc13b80e74d25a8 +#: 5deead321bca4d8cac11642572a62635 +#: 887aaf09b81b4452b176dde9412f91bd +#: 731c781990a9499ea545c9f3a71d80ef +#: e8aed93391624f259fa7d53f5c1f3edc +#: 519fe8adb0ef4e78b67d8fc1642b2e34 +#: 13bcdebde4c84d71b7f80740c76f4f8f +#: d55568c471814d9bbfbe12869cfd3c0c +#: 4a53277cca2b4c63a91604dae3045ecc +#: 2fdab0a02b9f4ac5a8278719d371b8a9 +#: 2e52ee90fa4042859d990b24e4436373 +#: fdd4efec269642d9a9afd7d4e04d8ea0 +#: 2bd50ecd03f64482803f854a5122333d +#: 36e20427405640278964dbb93d6f2ba7 +#: 091776a2b20d44c9b12d3b8163579a8f +#: fb69f0179f3f47f5a5756406f7dc7b18 +#: a4ab97ada0a9446f8ef5516ed38b5801 +#: 5adb9168e7734a519504b83485124358 +#: 47960f49b79f4bb09e082eff5b511f35 +#: 08887446e06144f19e0c9f2514401c78 +#: ca90f8c68313448da679c8e1e2fb0815 +msgid "The argument that is being converted." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:16 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:16 +#: 4d5298f99ee649468bc32cbb48858423 +#: ebd0e9f6267243d8b55a6dca7efddffd +#: 7d1b8f07ca8a42fca08ac93bd83f6a8d +#: 0392fda2f1934c128f3bf9e6294f148f +#: ec999d55690e41c8942af23ee5d61141 +#: d71d44f3486a4a83a8fac2eef60a204a +#: f16a51d1da3c479db55f99f8abc476da +#: d88552c40d7841a6950037a985001dee +#: e30fb3e6e33b412d9bda0be3e9f50959 +#: 6c5f557c09f1482e991c4e33856e7638 +#: f5e0ba5b07de450683c27032399f24fe +#: 72eb22a44b5c4b0e8235892bd49c238d +#: c3d888a3d793492d89677d42c98a4d22 +#: 989688916dec4c338cae9d74eb6a1160 +#: 1b356031147f4d29a367daace3bf677c +#: d77d78ed4141490f9bb103eac73a3579 +#: 10ffd1c14923493dab9b1cde81ae4656 +#: 470ac2a31a33477c81fdabf5d0dc64b7 +#: dc1a8b57d5354f5e9998787e3d70a8b9 +#: 01e1670ee5dc476e9370a09e982d497c +#: 2bb2bb0fa3164365a56b837300c68860 +#: e5cd34bf59d6488bb223319d8b0ccae9 +msgid "A generic exception occurred when converting the argument." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:17 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content.convert:17 +#: e5f482e53ee44aa2a15113dc1e1e41de +#: 1bdff14d6ea04a96956beac5db88ed78 +#: 45f175a6b0ef4805996b8cffa955564b +#: 1d3b9ccdc83040ce819b9ac26e540a1e +#: d261d1a1b3b9482bafe0fa8b99e21722 +#: bd16b62ba8b64889ad89b7f584cc6590 +#: 90903fdf2f024e179df55ebb6455a70b +#: 9f033b1863e54b8f89680778305b66ab +#: 257cb4c9a5d7476f98b54f00262ad1e8 +#: ba78da3ed1c44b9bab85d15ac3e6cfc9 +#: f9df7856846441228f7f785f390c6921 +#: 32bd8486294f479a80d15e461a280344 +#: ee564e40643c4401bb82e0dc2bf43268 +#: 85197754b7114c158824d2a1d1ff57bf +#: dbe450333afc4a4cafe21338194258f7 +#: 54d7e6dbb6d347529a754bc46eb1c7e2 +#: 911042a2e9894197b21494fc62a90bcc +#: a106860838054fa997a30f13587b0a0a +#: f60d295265d147b9991ef14733a3107e +#: 318572dd2b294de0830f604d4a6f3ea0 +#: 48b49c6cfa6e48fd86c509c32a4996eb +#: 449dde9a1963411083a13e48662b0de9 +msgid "The converter failed to convert the argument." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Converter.convert:19 +#: c601cdd1c13e49e1995ff8a62823953d +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter:1 +#: 0e92c7b2d8f147b69988c8e009418b69 +msgid "Converts to a :class:`~discord.Object`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter:3 +#: 727747e448be408ca7871bda57d10222 +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter:7 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:6 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:6 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 6c313daeb5054f25889659daa32d384b +#: 80e04b4b26074832b2f2f07c77f2e2a4 +#: e07f31ad79f14e99a85922694b4f4920 +#: 3a2af135dc784c60ac29c4a0649e253d +#: 84ffb1ca7ef84accab70835497ef486b +#: d4b15b39cce64c89a6ece0af3497c570 +#: eb2cb83749194d0290a369a737e28899 +#: fa825f72296f4752a117c9828ec5d292 +#: 4a03b0df07e242769d6ed9c2d3bdcb46 +#: ce415c21524844e4ad01332a3c598e26 +#: 4b18b34d875b4272a4340c89dc8203f8 +#: 7c403823f551492aa780e79fb4d670ae +#: 17074f679cae4115af37541fcdb58787 +#: 0fb936fd1d554bc3bfadbf35a1f9386e +msgid "The lookup strategy is as follows (in order):" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter:7 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:7 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:8 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 040ed554ec214f6ab37856785fff8206 +#: f81a0e6ba9364a2db58dcd1c4f761069 +#: e37c084371064cb3b1628a589de013d5 +#: 7709bef938f94a6ca0da395e1e06dc13 +#: ac1ef23521824893ad5a2a2d9f502b3a +#: 745ec61cbe3d4940a0795cd70d13cc14 +#: a79e0d52f0ff4c1c86127ae0c1c600d8 +#: 45fcff4439774f7eb3f769b1d130cc22 +#: f67c33a8b3d34309b6096ae52f8a6bdc +#: af8296a98de54746a0d22f8ec06dc96c +#: 4e66429118ab40719bbdea262c3eff78 +#: caf3207e1a9f464f8fa841808c703833 +msgid "Lookup by ID." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter:10 +#: afdd2a4d0f1840cfad2fbddc72f9d667 +msgid "Lookup by member, role, or channel mention." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ObjectConverter.convert:19 +#: 76bd5224cbd7404a82a7e1a65a2ba7e7 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:1 +#: 742769f030bb4786b80dbd891805017e +msgid "Converts to a :class:`~discord.Member`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter:5 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:3 +#: 437a2f3b32a94663b8596fabd903f9b8 +#: 9675215bceaf45119a5789b4a7db5b58 +#: b6fb06cdb51b4059937bc81fe418d358 +#: c8112c1dddc2424daac85bde0c2d17c4 +#: ca9c5df708fd42728f8d8fb1b5f38449 +#: 6108c40b76484fada01af75814d25b7b +#: 6c15c116566d42dd9b65fd00251ddf01 +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter:11 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:9 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:8 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:9 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 46040944f3b942b18e7c7aff837c860f +#: d94875a4f5254232ba80affb090404d4 +#: ef17c9a7ac24416dac6e94b12ee287b8 +#: 221c3c0b6e774dd0b4ced6ef3ecb4f05 +#: 0d8a415e20004c1f830e6ebf3739fb90 +#: dd5c03183305401883d09621d09878c6 +#: 2fed7cbb86e543f4b899af980bc904fd +#: 94d36787b5f8413fa5712930cfbb1bad +#: e224674b1a3f4919b74b26ea3c67e197 +msgid "Lookup by mention." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:9 +#: 0d48779a2f444266936b946c2049cc49 +#: 0681c445215f4ba5816a7bc77fd3a132 +msgid "Lookup by name#discrim" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:11 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter:12 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:10 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: f58f9b8f8ab04dbba72f5f63bc0e77ad +#: 144db27523d44f9598bd44681e8a8312 +#: 51069ab088584037a102672ceb0672da +#: 48860f6203004441816c07ce7033dcbc +#: 19ebc9a4da6d407194f707f047aee8f5 +#: ce98c47ac278478e8dcb4ff6b56c35aa +#: 09dbc0dddf0d41d6919bd27fe5cdfaa7 +#: 99c550e1c5ea4d489ab781956664f7c6 +msgid "Lookup by name" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:12 +#: 24bf57716efe420eb9723a91f138c0b1 +msgid "Lookup by nickname" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:14 +#: 4cf7868345df4c21a983edab41b1b0d9 +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter:17 +#: 5e76492d4be6488b995dabf985898d99 +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MemberConverter.convert:19 +#: 8d06743c4aaf4e759f2e26bec639327d +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:1 +#: 412f9a2fbaf94008a49dc5d7e0485240 +msgid "Converts to a :class:`~discord.User`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:3 +#: 974a011359994de7af1c409ba415d6b6 +msgid "All lookups are via the global user cache." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:12 +#: 9f3a5094c8b04217b84085255960e9cf +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter:15 +#: 3bee8790498d44a396c4c3893cf43aa0 +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.UserConverter.convert:19 +#: 18ca02cf99df44a79e77275819dfec4b +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter:1 +#: 2a032d08244340bfa4dc4be912b4932c +msgid "Converts to a :class:`discord.Message`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter:7 +#: bfabc815487148ad94863e1ac2f8634f +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter:8 +#: d5024e9b27bc4c5bbac52cc20e642175 +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter:9 +#: 32e249ca19b74aa09bfbd282a5f9c214 +msgid "Lookup by message URL" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter:11 +#: 2abe1582bd5341d5bf25227a0bc0cb70 +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.MessageConverter.convert:19 +#: f69d6050db19450db3668e8de5bcfd6f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter:1 +#: ae67fe03686c4532bdc49de9b2070f16 +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter:5 +#: d924d7ff07ac42489f5c1ce537fa7b03 +msgid "The creation strategy is as follows (in order):" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter:7 +#: 85bdb7294d554afbabc5e1eb19bc11c3 +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter:8 +#: 8a6d3c3213c644568d162301e0ce3fe6 +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter:9 +#: 76454ca185ae45b1bd5cb22ac59e1909 +msgid "By message URL" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialMessageConverter.convert:19 +#: d9900b47bbf7468e8ac55515c260f4ca +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter:1 +#: 2cfea3fb0254411fb0b6754daa3ce282 +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter:10 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter:9 +#: 34555afe05c64c22ba65fa8c467758fb +#: 53291d7eb1b740d88e2678077a6f846f +msgid "Lookup by name." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildChannelConverter.convert:19 +#: 1196b93dbf1843f9871f472f0fdaa174 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:1 +#: 6c443151bd9b488ea48551a8364f6d33 +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:12 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter:12 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:12 +#: 4ea1417c2e794a5e9f8755ffbf256902 +#: 8082774452284a90b95eeb7018ab4c45 +#: 9c9003e9e7944050bbaa8b69a9fcb55a +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.TextChannelConverter.convert:19 +#: 9acb0ac5aac34aa78efac7c13d4a1331 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter:1 +#: 8ccdd108a7064b83aca8e4ab62fd305a +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.VoiceChannelConverter.convert:19 +#: 2096498a3b5340ad90200fbfb19632ff +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter:1 +#: 20f52a031cab406dab1a51afced52432 +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.StageChannelConverter.convert:19 +#: a929e67bd3d04b41a0dabcb8512f778a +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter:1 +#: a83f903ad1b34ad487fb7a4a03dc5b27 +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.CategoryChannelConverter.convert:19 +#: 2623771c36a040caab45e6a378ce74e0 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter:1 +#: 172a64bd6247459f9b5b43137b24c5bc +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ForumChannelConverter.convert:19 +#: 0de36a5f0a2b41c1b482db1e3a98f017 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter:1 +#: b779ed1feb044884a3e36e41011028ba +msgid "Converts to a :class:`~discord.Invite`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter:3 +#: fce31dd1ef1141ddbd7d7502bcab8a40 +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter:5 +#: 77f0d4a2234e4ddf85645b0da2eac317 +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.InviteConverter.convert:19 +#: bc6ce10d467f4390ac66c2d5d0ca23ca +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter:1 +#: 6b7a74325383465caf8f1f009428b33b +msgid "Converts to a :class:`~discord.Guild`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter:6 +#: fd52a4dd3bc0463c896b76e00dde8a04 +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildConverter.convert:19 +#: 39ab7f0b8b79427689539f5cef19c853 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:1 +#: 7c2bee80870241ea9d20251d3217dc89 +msgid "Converts to a :class:`~discord.Role`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:3 +#: 61d67e8d54b04821a028d8ab39e6c98a +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter:12 +#: 08b6aa908bb64dcea42329171a14f5c2 +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.RoleConverter.convert:19 +#: 45e204c610ee43ed950dcc22b1ecac5d +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter:1 +#: f68137599ad141848aea62797bd0b069 +msgid "Converts to :class:`~discord.Game`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GameConverter.convert:19 +#: 7dbcdc21d90f448b9d1efd11e118645f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:1 +#: f4e87a79041a451c801d3b6c0c26393c +msgid "Converts to a :class:`~discord.Colour`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:3 +#: bd1d31daa2fe4f7ba99d73ef48a4d20a +msgid "Add an alias named ColorConverter" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:6 +#: 7e8e22e6115f449b8de9d66de21770ea +msgid "The following formats are accepted:" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:8 +#: 2975fccff559428e99d149e8fd618d24 +msgid "``0x``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:9 +#: fd078f70f7a1418a97ecd2b2d1bd1084 +msgid "``#``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:10 +#: c278ff33210c42e2a6f842916a54f37c +msgid "``0x#``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:11 +#: d94660f553f04addb931a9aedf36734c +msgid "``rgb(, , )``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:12 +#: b6271dd49d2b4d08b612c7f8ad362306 +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:14 +#: a3a933b8465e4e2aac98efb09e3792ff +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:16 +#: d8013b78f4674f15b973ba505866fe32 +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:19 +#: 0fe40cd0acb149afb058b8a72858a814 +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter:22 +#: 678c8011b29a497caae665ce41559203 +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ColourConverter.convert:19 +#: 4633cc38f1954c9fb988d94796c138e8 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:1 +#: 5fe8c3fcda8a4f62af280c4d6ab3397a +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:3 +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter:3 +#: b0e0e871ab064289a32c66c40214fd9e +#: fdba8cd87a844bf9bfb59502d1dbdc5e +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:9 +#: b07065acb83c45b486baabdf63179771 +msgid "Lookup by extracting ID from the emoji." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:12 +#: c4d58c4ef0a6423da6a5e5b6eb0d6be9 +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter.convert:19 +#: 97ae2776efac4d31b3a7edda0567ced5 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter:1 +#: a6e1bbb66c634ba882343850f5060099 +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter:3 +#: 42c767df989a4c90b5d6b441a08d7df2 +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter:5 +#: 07638781992545e39720fcaf86933a79 +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter.convert:19 +#: 1e63c68c4f734c36b2b9f66fcf8eece7 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter:1 +#: ce9f0c4726d04dee89258a89147f1c84 +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter:3 +#: 790b28ad496d47d8ba6e1763d3ee0ad1 +msgid "All lookups are via the local guild." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.ThreadConverter.convert:19 +#: 9fd932f95910427882b21cd8049861b0 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter:1 +#: e61870d441594fc08984aae236b3c1da +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter:8 +#: f6697785b6e9452dbb7a1e3d2e50e6c1 +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.GuildStickerConverter.convert:19 +#: e659cc67ce3f47b49647be349da570fc +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:1 +#: 26b5eaad74174413ad5f62f07c19e04e +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:4 +#: 222b174f45a6491685b454e0ca7ac505 +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:8 +#: cd20087853094691a18a67dfa932b7e7 +msgid "Whether to clean channel mentions." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:14 +#: 3d7a283473d84c54be777d237ce9b0ea +msgid "Whether to use nicknames when transforming mentions." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:20 +#: cad7e9188975461bab6898228488e849 +msgid "Whether to also escape special markdown characters." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.clean_content:26 +#: ac08fe2514bd4811b892d04d1aaee218 +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Greedy:1 +#: 693ad27846404f11a8c7dcd918b18571 +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Greedy:5 +#: 65c82b1d226e4019830193c66d7b71fb +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Greedy:8 +#: eea47d9f94744e9b917b9d652e66a173 +msgid "For example, in the following code:" +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Greedy:16 +#: 8d160e434a7f4a6ab63e90f02f9906c0 +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.Greedy:19 +#: 4c73772c707a41a8bca1bc1d45003b4f +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:3 +#: b8cb297c3d1e4c6590617210c3e66258 +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:5 +#: 76a8a32516ab489385eead76873a3063 +msgid "This function does the same work that the library does under the hood." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:10 +#: 26189e1dade84d1695feb50b0f581be0 +msgid "The invocation context to run the converters under." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:13 +#: 7d0cc1620d474215b3792c80011ca01c +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:16 +#: 3b33275cf8bc4265ad0e767e85abf029 +msgid "The argument to convert to." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:19 +#: 70f697fdaf9e420197d1e7b68bacadd4 +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:22 +#: ca628a1c253c4ef09eba37baf33c7df8 +msgid "The resulting conversion." +msgstr "" + +#: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.run_converters:25 +#: c0ae70d2dde14c5ba5ea30a0e9ffeca6 +msgid "The converter failed to convert." +msgstr "" + +#: ../../ext/commands/api.rst:438 +#: 1e2749402e7849088fc29daf98fe46aa +msgid "Flag Converter" +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter:1 +#: ebf35e6c9cc74dfea31978fe12ef8441 +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter:3 +#: 9cd13fd1f8fa45eb928cd329ee9c0b6b +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter:12 +#: e2322223de744e58bfd011edac6861bc +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter:18 +#: d315ec7b9ea34fa69b128dc9251defe2 +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter:22 +#: 5cbcd48f9c6a4f3a946cb7f7d31ace3a +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter:25 +#: b288c7ce85f543eab6734e8f8af233ad +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.get_flags:1 +#: b88d014bc2fe4314b4cfc532d2b4a53d +msgid "A mapping of flag name to flag object this converter has." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.get_flags:4 +#: 71f48457a02b4dd6aed21b6792ad8e49 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:3 +#: c80c9b5b801e4b62a57251824320bace +msgid "The method that actually converters an argument to the flag mapping." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:5 +#: eff33f3c050c4e038d09a2a9bdcc8efa +msgid "The flag converter class." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:11 +#: 76a247e0e011404e9c25960694f09952 +msgid "The argument to convert from." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:14 +#: 818f36c5b4cb490aae6b80095dff1b0f +msgid "The flag converter instance with all flags parsed." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:15 +#: e3615b359fd44a1fa52dd21c0878e6b9 +msgid ":class:`FlagConverter`" +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:17 +#: 7c7a50f6b7434393951a3c121025f908 +msgid "A flag related parsing error." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.FlagConverter.convert:18 +#: 5e97f1db6bc948e9afa242cbf64fbbc2 +msgid "A command related error." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:1 +#: 45e7a4bb9a3f4ced97c9384d6f7b1df7 +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:3 +#: 56adcf6a1e7e4dba975c4276d615605d +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:9 +#: 0fd508502b6142d693389cf1f8ef3d9e +msgid "The name of the flag." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:15 +#: 9fd4ac94309f4005a49ca8a1845f8f02 +msgid "The aliases of the flag name." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:21 +#: ba6fbc2b3b924e09b4847d09c9265c3f +msgid "The attribute in the class that corresponds to this flag." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:27 +#: 42585df2efea4584b149b8afaf0017da +msgid "The default value of the flag, if available." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:29 +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:35 +#: b755efe3ab02421ebf20dd845a99ba63 +#: fdaa02cfc0eb4d9ab28f94ca9cdd74a4 +msgid "Any" +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:33 +#: e380378a9b484f9a97ae7cd84cef8d0b +msgid "The underlying evaluated annotation of the flag." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:39 +#: 994cd4022bc249d6a975fc2c6d060ef9 +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.Flag:46 +#: 9bcc7c0f11ce42f68c9b4e442b1bd117 +msgid "Whether multiple given values overrides the previous value." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.Flag.required:1 +#: 639c1e5bc42f4c34b75f3a1d21ac5f49 +msgid "Whether the flag is required." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.Flag.required:3 +#: ed39444a85a541809414f9fb64c50751 +msgid "A required flag has no default value." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:1 +#: 361b8bfe96934487a49fe9586d484562 +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:5 +#: 88f1bd71d9cf4cb09270bb77151b8277 +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:8 +#: a6bcfd20152f405a86597c00bed08f64 +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:11 +#: 80b9750cb95441f4b9f8e74b1ebc5ce1 +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:16 +#: 1301032487f84c4b983ffd5cc18cd69f +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:21 +#: 9d12431a536a41a196ca323965285a01 +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "" + +#: ../../../discord/ext/commands/flags.py:docstring of discord.ext.commands.flags.flag:25 +#: 739a359756dd4d95bcbb386fc201f629 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr "" + +#: ../../ext/commands/api.rst:451 +#: 9f12f5caa99e439489d62576052ce36d +msgid "Exceptions" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandError:1 +#: de8054c7a89f40cc9c628cd008ed4c08 +msgid "The base exception type for all command related errors." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandError:3 +#: e3a7a1c8784e4b0391cba40b4b86bc07 +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandError:5 +#: 28c66f1b65264ecbb347abcc7549e452 +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:1 +#: 775da09f3b11433c96643d4bd6880d60 +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandNotFound:7 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserInputError:4 +#: c1628f75af2142f1a0c57e3232afa38b +#: 13db61c05b1b4e04b27efa37e14c4f66 +#: c5c5445d371a4f4ea2b53ae59c7b64f2 +#: 31168ecb046e4b09b9b8990786ee236a +msgid "This inherits from :exc:`CommandError`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:7 +#: 5f5b0fab620946b7b1c3c64f32df513d +msgid "The converter that failed." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:9 +#: fbe4c703f5a84067985a716e2052e9dc +msgid ":class:`discord.ext.commands.Converter`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandInvokeError:7 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:13 +#: 59bc4fd8d04e4eec9b78caa9b9dcee7d +#: e2e36020767542dfb72881191ccf41d5 +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandInvokeError:10 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ConversionError:16 +#: a7b6a5d248994baa9f94e2df8562e74b +#: 3e3097a935c64e1bb80093115da29f28 +msgid ":exc:`Exception`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredArgument:1 +#: 14e0a4d933194585bdad3d9f70b27f50 +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadArgument:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredArgument:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyArguments:4 +#: 165ab37adc89428e90ff4df2f0b80314 +#: a7a35e014f89478ba11d9547be20ace5 +#: 209075dfbc294a06828d0a763cf89f7d +#: 0b61ef6da82249058667f3ec70def158 +#: 1ff963bb685e48ffb27cf6ae82cab551 +msgid "This inherits from :exc:`UserInputError`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredArgument:8 +#: be98043a63b449a988de52a1b8df47d6 +msgid "The argument that is missing." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:12 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:10 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredArgument:10 +#: ac767ecf96d642aeac005e669fd48fea +#: 6c09f2b8237f4bc1983b3b265299ec8f +#: e0cfebc844a741209fc1d7724a6f17f7 +msgid ":class:`inspect.Parameter`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ArgumentParsingError:1 +#: 99f048e71ece48c19ae6f915f5dcee0e +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ArgumentParsingError:3 +#: 197972f134b643a4bcc356605c847a4f +msgid "This inherits from :exc:`UserInputError`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ArgumentParsingError:5 +#: 19a270dea6a84fb4b01280520155719c +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UnexpectedQuoteError:1 +#: c6f44123c0d8446688a895b2dab96f02 +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ExpectedClosingQuoteError:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.InvalidEndOfQuotedStringError:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UnexpectedQuoteError:3 +#: 71e587d424b0450b9e26f4c4abad9240 +#: 10654cf1124f4168b40dfa7a1118d2c6 +#: 101abb0a0f9d4b7eab738e982c153887 +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UnexpectedQuoteError:7 +#: 452b63fa0e564a6ab5468150309d0422 +msgid "The quote mark that was found inside the non-quoted string." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.InvalidEndOfQuotedStringError:1 +#: bc59593a8a08405c86a2f64f83389d40 +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.InvalidEndOfQuotedStringError:8 +#: 1f7b37cfa2b44800b2a62fc6b846c7a0 +msgid "The character found instead of the expected string." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ExpectedClosingQuoteError:1 +#: 302d5d1597f04b16a58937bcc46bebba +msgid "An exception raised when a quote character is expected but not found." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ExpectedClosingQuoteError:7 +#: 8fcd7001236a4867b6766ec2fa48fa79 +msgid "The quote character expected." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadArgument:1 +#: 1407890e0c744feaa93d64791a0ceb59 +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:1 +#: 3f5ca23837a541c288466959940aa1ab +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:10 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:8 +#: bfb5f51c531d44e49c5ae964e7432593 +#: dceaa44fe277495d858055502577aa8b +msgid "The parameter that failed being converted." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:14 +#: 885d985954d94bcfa4bd9e86dbbade74 +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:16 +#: a50f4bbb339542909f100b744c975ce5 +msgid "Tuple[Type, ``...``]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:22 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:20 +#: e17c717ab6224038bba2f6a093d6be4e +#: 1f218cdd16354c588bb9f914d778f692 +msgid "A list of errors that were caught from failing the conversion." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:24 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadUnionArgument:22 +#: 9cfe57c2d101467d87400e0d145a2c08 +#: 3a1b3ce0e85f46929bd528e32718b476 +msgid "List[:class:`CommandError`]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:1 +#: d65d70b1132a4bbaa0c1c0e749f7278b +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:16 +#: 94ba1f40a50347beb65c73d6279c02d7 +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadLiteralArgument:18 +#: e563d171b653419bb5ebffa44618706e +msgid "Tuple[Any, ``...``]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PrivateMessageOnly:1 +#: 4accdd8a5de0454d836bcb7a601d2249 +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingAnyRole:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingPermissions:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingRole:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingAnyRole:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingPermissions:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRole:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NoPrivateMessage:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NotOwner:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PrivateMessageOnly:4 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: 1c942045917f462880341087e9b10eb7 +#: 4cb90939ba084eddafc29360b8f465d3 +#: 01be2a7d21d64890973ed43977170ec0 +#: 9b5f68e8d2854613abe7c6a535babb66 +#: e74264cf7fd649189e5f9999907f325d +#: 7806fc4b53874a759aaecb560a22218e +#: c5f0d4cc9e1e48ac995ff47372cd84f2 +#: effef19716664bd9a096218fa35db7c5 +msgid "This inherits from :exc:`CheckFailure`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NoPrivateMessage:1 +#: 96608eb292b948cbac864b16f33f6e05 +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckFailure:1 +#: 03237b06950349af8b5877c3b0865393 +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckFailure:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandInvokeError:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.DisabledCommand:3 +#: 21521951fe3645c599f43042bd74017f +#: 8e32f06ae82642d59734f3b2c713f37e +#: def48bffb2424c1cbc20dd8ff9f3104e +#: 90c77ccaa1d148eea7c01ec882ec4120 +msgid "This inherits from :exc:`CommandError`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:1 +#: fdf4dcd227e148228e21d1948cb2676a +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NSFWChannelRequired:3 +#: e51c110bd8cb4f13b2f0dc5eb781134e +#: 691ace1fc3054919a0009f3006311bbd +msgid "This inherits from :exc:`CheckFailure`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:9 +#: 4ff5239ba6b048c492f5196098784413 +msgid "A list of errors that were caught during execution." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:11 +#: e6eef43806f64b449d040306cc418c6c +msgid "List[:class:`CheckFailure`]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:15 +#: 72280e5b7a9247358710cf411d55e66f +msgid "A list of check predicates that failed." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CheckAnyFailure:17 +#: 9c95362945e54d249dfb1f53c01df57a +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandNotFound:1 +#: 6d3a08a8839845fca30e84b8a4b306e2 +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandNotFound:4 +#: 4e2fbed34f904d2f803049cdfda27e2a +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.DisabledCommand:1 +#: 9f86073a221845eea8f7c391b8bdde72 +msgid "Exception raised when the command being invoked is disabled." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandInvokeError:1 +#: 7075cb5d93a942a884908449fe8754c4 +msgid "Exception raised when the command being invoked raised an exception." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyArguments:1 +#: 52d12ffa6eeb41e2880bed34a9b4bbce +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserInputError:1 +#: 7eed2c49b4da49a0b1895c22914b4e6c +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:1 +#: 7e037c297ba143e4805430b144f46bbb +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:7 +#: ee6083fa81ee4a83874d43c623041852 +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:10 +#: 2fd7d25d75794561a8a2d78143ec44fa +msgid ":class:`.Cooldown`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:14 +#: 9fc0412e234440a194944d2b45b92fe2 +msgid "The type associated with the cooldown." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:16 +#: 3cb421159c314fb4adf5e168945317ab +msgid ":class:`BucketType`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandOnCooldown:20 +#: 8d2ea9a9b813410eac680f92f1b344f6 +msgid "The amount of seconds to wait before you can retry again." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:1 +#: ec430b1c0a9549cfad0cdde9485394d1 +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:7 +#: f686fa32c5764e62b8b8bd10fc099503 +msgid "The maximum number of concurrent invokers allowed." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:13 +#: 6410e5d4f966442db39c50132e842e6c +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MaxConcurrencyReached:15 +#: 8adb54bbebb74a19816d333471507599 +msgid ":class:`.BucketType`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NotOwner:1 +#: ca0fc435abf24248bb4790c352b24822 +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MessageNotFound:1 +#: c9e4459728ac4cc6a27b56a6defdcf14 +msgid "Exception raised when the message provided was not found in the channel." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadBoolArgument:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadColourArgument:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadInviteArgument:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotReadable:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.EmojiNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildStickerNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MemberNotFound:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MessageNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PartialEmojiConversionFailure:4 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.RoleNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ThreadNotFound:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserNotFound:4 +#: cafbbd3a5904470cbe7817bdf3a418bf +#: d918b90f9b3e406ab6863685a4a15dc8 +#: 0353e51a6ae9408abd5db422efda0f72 +#: 2f259a27f7d04ac189d21d2d9e6e741a +#: e0e3f143cfc94b11a51ef976128414b6 +#: a24965dca78f4cff81d6cef40667dc9d +#: 569ba7eae418443a96081e108e750877 +#: 27f73ba1f02c40a29de8fc6a62accf38 +#: 7e2e8e9ba2604434b5f2bf970c86c3fb +#: 236d7bd6ea474500ad6ab93f345d8788 +#: 553468f3e2d7417abcf052cae0703286 +#: 607c13f9ace345c0a2159108ae5b985d +#: 55034633b55445a1966a02441a0d1db7 +#: 877748a574c3485bab608fc2fd1f734c +msgid "This inherits from :exc:`BadArgument`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MessageNotFound:9 +#: 919b214d6e7b45fca37e039161972510 +msgid "The message supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MemberNotFound:1 +#: 53aa71c340174d789b45ad3fd9260c8d +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MemberNotFound:10 +#: 7bb3f96e98cb461d8a0c7ce08b497005 +msgid "The member supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildNotFound:1 +#: ea7ce6eabe934c1fad2a3c1988cebefa +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildNotFound:9 +#: 01925b74dade4730a5bcefbfa11d69dd +msgid "The guild supplied by the called that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserNotFound:1 +#: c7c19e3d8c6c4893b5f8b6e9867b16f5 +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.UserNotFound:10 +#: 0f431bc819e74530801b87d339ec4ada +msgid "The user supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotFound:1 +#: f6b591356c80408192207ebfbb8ebfe1 +msgid "Exception raised when the bot can not find the channel." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotFound:9 +#: 5921dca926fc477e9a91b1d7696c508f +msgid "The channel supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotReadable:1 +#: 9fa4e65ac9814e07b00cfd524eeca282 +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotReadable:10 +#: a38283be5eb8407680d6eb16d0fee127 +msgid "The channel supplied by the caller that was not readable" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ChannelNotReadable:12 +#: 36582766bdc1404fba01c7e34a7d291e +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ThreadNotFound:1 +#: 43052fa171924f6998cf30a4408d2d3c +msgid "Exception raised when the bot can not find the thread." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.ThreadNotFound:9 +#: 1dea63fd1bb84e059219eae7f81fd40d +msgid "The thread supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadColourArgument:1 +#: 05e8d50caba64b2184fbf03a21b366f9 +msgid "Exception raised when the colour is not valid." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadColourArgument:9 +#: 66b2891f3b2f48619d3d939bc9bcee37 +msgid "The colour supplied by the caller that was not valid" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.RoleNotFound:1 +#: ed0be8e86e444e4e8c850511fc8e48c5 +msgid "Exception raised when the bot can not find the role." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.RoleNotFound:9 +#: 11a097db73c2490497cb7b7429cb7d40 +msgid "The role supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadInviteArgument:1 +#: cd6ec6e8aa3345b5968634efb9fdbfb6 +msgid "Exception raised when the invite is invalid or expired." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.EmojiNotFound:1 +#: dbfafb99d9924e058e9f4085e51b4e85 +msgid "Exception raised when the bot can not find the emoji." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.EmojiNotFound:9 +#: 79c87d5b8880428daee4e62770468475 +msgid "The emoji supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PartialEmojiConversionFailure:1 +#: af44f3e759ca46c0ae4b639c71e28277 +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.PartialEmojiConversionFailure:10 +#: 6c1c2df0327a441bbe1c96a50ba39d49 +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildStickerNotFound:1 +#: e43d76903cc749c78ccd3ca87300ebfa +msgid "Exception raised when the bot can not find the sticker." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.GuildStickerNotFound:9 +#: cb6279d6304e4c069ce89ef37082f364 +msgid "The sticker supplied by the caller that was not found" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadBoolArgument:1 +#: a815b02a064846279adc4f121cc2b07f +msgid "Exception raised when a boolean argument was not convertible." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadBoolArgument:9 +#: 2982ea51ace646d8bd8c2fd76d7f9b7c +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingPermissions:1 +#: f7c1e866271f4a6284aee4c6711c27d7 +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingPermissions:8 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingPermissions:8 +#: 5ada78a870114789b2525dfb7258f469 +#: 78aa106edb4a46de94286be760c33b99 +msgid "The required permissions that are missing." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingPermissions:1 +#: 17bbff2318d343aab6e8abf37d823b00 +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRole:1 +#: 69a44f4ec8e946ff86107a955100b0dc +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingRole:9 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRole:9 +#: 464aff7b7d6d4edab7c5c9f1d4b1390e +#: 377c051309d24613927473de9ae3ae0c +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingRole:12 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRole:12 +#: 495f17f5f821498f8c20b5437e881ce8 +#: 5604752432a5425b9c521adaa5348c51 +msgid "Union[:class:`str`, :class:`int`]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingRole:1 +#: ea6884c4574d42039894bd8eda813eeb +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingAnyRole:1 +#: b51a7d82c7ae471c9e0927f161646b60 +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingAnyRole:10 +#: bb3b944232324fe987d73d6df70499d0 +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingAnyRole:13 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingAnyRole:13 +#: 4800e7486dea463f9b780669f880aaee +#: 9dd1fd485a3e418ba73c8243e915704b +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingAnyRole:1 +#: 91d8c29682f5470aaaa17fdd9e54ab7c +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BotMissingAnyRole:10 +#: 03dff160785045fdafd78a2d6dc2ec69 +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NSFWChannelRequired:1 +#: cdd99306574d42fbbdca211e043eb448 +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.NSFWChannelRequired:8 +#: 03481b87678a41ab8f534266523f04e3 +msgid "The channel that does not have NSFW enabled." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.FlagError:1 +#: 397619a293eb4871a61c96cf18d8966c +msgid "The base exception type for all flag parsing related errors." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.FlagError:3 +#: 4df1966bd2224d8097e05de8614e0ae1 +msgid "This inherits from :exc:`BadArgument`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadFlagArgument:1 +#: ad1d800328234006bb717f17aaabd02d +msgid "An exception raised when a flag failed to convert a value." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadFlagArgument:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingFlagArgument:3 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredFlag:3 +#: 91798d8c295b4e5a95ae65bc3717c132 +#: 08f7545ae315436bafc9375f5a97af6d +#: eb8d1bca49794d079eaf5cc21d6aa133 +msgid "This inherits from :exc:`FlagError`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadFlagArgument:9 +#: 3169dff1f74241f4b187f32057eee70a +msgid "The flag that failed to convert." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.BadFlagArgument:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingFlagArgument:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredFlag:11 +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:11 +#: 53f5b703a1754889b6501bc0bb13587d +#: 9c06d617eae94974bb6653f2c4986973 +#: 2f4dc1a7109a45039c601c9fc374d705 +#: 232ca52569e74d95afa9ac0c2fd07f50 +msgid ":class:`~discord.ext.commands.Flag`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingFlagArgument:1 +#: b2fb965c7465456f99ebd4e00ac3e6b8 +msgid "An exception raised when a flag did not get a value." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingFlagArgument:9 +#: 51f3abb37a5e4994ba35116283b2a5b8 +msgid "The flag that did not get a value." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:1 +#: 41386efb30914b5190300d75a9841355 +msgid "An exception raised when a flag has received too many values." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:3 +#: 81da839939ae4de9ac168277a8d393b3 +msgid "This inherits from :exc:`FlagError`." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:9 +#: 22360e7ef17a43adafe941a0a99e9cea +msgid "The flag that received too many values." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.TooManyFlags:15 +#: 523b4c7b89a04e638cbca478a4086147 +msgid "The values that were passed." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredFlag:1 +#: 8ecebd5789744f5eb9e9fb41f2de3718 +msgid "An exception raised when a required flag was not given." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.MissingRequiredFlag:9 +#: 7eb7e6f4248e4600b9881f494de33f37 +msgid "The required flag that was not found." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:1 +#: 33517164ec0241ad90d22b66b1bb6681 +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:4 +#: f911fded08e14082a434d5415f49a0dc +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:10 +#: 944edaa1770a49f09cb67186b72b3a46 +msgid "The command name that had the error." +msgstr "" + +#: ../../../discord/ext/commands/errors.py:docstring of discord.ext.commands.errors.CommandRegistrationError:16 +#: c786264a69f741c6abc2b1c87a4bc9e7 +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "" + +#: ../../ext/commands/api.rst:602 +#: 6437c792279b485bbe8d09df28d18259 +msgid "Exception Hierarchy" +msgstr "" + +#: ../../ext/commands/api.rst:606 +#: 6ccb8ffddb0e484bb2823ab2ad38df23 +msgid ":exc:`~.DiscordException`" +msgstr "" + +#: ../../ext/commands/api.rst:607 +#: cd13764d1d8e432d8b1e3d0814e8d01b +msgid ":exc:`~.commands.CommandError`" +msgstr "" + +#: ../../ext/commands/api.rst:608 +#: 74dd05d87e664d6d95e7431e0ee657a2 +msgid ":exc:`~.commands.ConversionError`" +msgstr "" + +#: ../../ext/commands/api.rst:609 +#: cbd5441518e842c8996b1af7e7cf5866 +msgid ":exc:`~.commands.UserInputError`" +msgstr "" + +#: ../../ext/commands/api.rst:610 +#: c4e241c2d65c47c081ffdb98d83bbdb9 +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:611 +#: 549d8f93ab4d49b2be2af635f5b5ded4 +msgid ":exc:`~.commands.TooManyArguments`" +msgstr "" + +#: ../../ext/commands/api.rst:612 +#: 34fa2ca053544615886a62a4fb15cf9e +msgid ":exc:`~.commands.BadArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:613 +#: ebd1c85ac0d74fc3911f70d08f47aee6 +msgid ":exc:`~.commands.MessageNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:614 +#: 8be5ab33fc4d4805b9734dd6928d9f94 +msgid ":exc:`~.commands.MemberNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:615 +#: e06c986c07094e5f9040701bd22424c3 +msgid ":exc:`~.commands.GuildNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:616 +#: 3412788dfaee4dfdb7576009a8022e55 +msgid ":exc:`~.commands.UserNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:617 +#: 7c3e338f517048f490ef9d7352a5816b +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:618 +#: 69dbf7468138443090ca532bdab29342 +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr "" + +#: ../../ext/commands/api.rst:619 +#: 9c632c188fe549fab83e69867e4cf5dc +msgid ":exc:`~.commands.BadColourArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:620 +#: 1a5d869d53b249ee83a6a9608181feed +msgid ":exc:`~.commands.RoleNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:621 +#: 0e23b8b1753a47ad914a2f634f6c5a75 +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:622 +#: babc7a4834054c0f9eb01b4b1d64f977 +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:623 +#: ba36f4798dc34d64909d605b8a5e4453 +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:624 +#: 63a02aeefdfb490780e73b6dd9505648 +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr "" + +#: ../../ext/commands/api.rst:625 +#: 97151bf22296452995480b2439c01b71 +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:626 +#: 6d98af8c8f5c4c40a636637cd679c60c +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:627 +#: ff88bf5dee89418ab1bde698b5775a02 +msgid ":exc:`~.commands.FlagError`" +msgstr "" + +#: ../../ext/commands/api.rst:628 +#: 4b6702835e9b4ff1bcf15e4941476819 +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:629 +#: d7c035251022468babb19b341ea436d7 +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:630 +#: 575fc9981e8c4eb2910b06750b0fe36b +msgid ":exc:`~.commands.TooManyFlags`" +msgstr "" + +#: ../../ext/commands/api.rst:631 +#: b2cce1d15e71410daf628c5a6949389b +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr "" + +#: ../../ext/commands/api.rst:632 +#: df0b5dadeb2d44b081075aa573d01645 +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:633 +#: 40e1173bc57148c28a96e7f0c80d4d4b +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr "" + +#: ../../ext/commands/api.rst:634 +#: 1e2d26f63bb043598bc4fa594a8ed65a +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr "" + +#: ../../ext/commands/api.rst:635 +#: 0656fa3277af4737ac155d5dc3703193 +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr "" + +#: ../../ext/commands/api.rst:636 +#: 89c3c6a87e704b4c841cb49e5cafa5a8 +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr "" + +#: ../../ext/commands/api.rst:637 +#: cd335c6f525a4e138f33c86be1ad5095 +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr "" + +#: ../../ext/commands/api.rst:638 +#: a55562b662b14287a9e30435a4f8c089 +msgid ":exc:`~.commands.CommandNotFound`" +msgstr "" + +#: ../../ext/commands/api.rst:639 +#: ee6a30f21bcb4f52a759629ba49d364e +msgid ":exc:`~.commands.CheckFailure`" +msgstr "" + +#: ../../ext/commands/api.rst:640 +#: e14ded2b37b246ef958773e93c8ea54d +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr "" + +#: ../../ext/commands/api.rst:641 +#: 73f3258338c7444bbabffe3ce0af02a7 +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr "" + +#: ../../ext/commands/api.rst:642 +#: 13a9d422fc834b23b13c7bf1b953553c +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr "" + +#: ../../ext/commands/api.rst:643 +#: 4f5ddbcf5b784ba1839dd46e27544112 +msgid ":exc:`~.commands.NotOwner`" +msgstr "" + +#: ../../ext/commands/api.rst:644 +#: 79464ba408914e209155f9a2243560f7 +msgid ":exc:`~.commands.MissingPermissions`" +msgstr "" + +#: ../../ext/commands/api.rst:645 +#: c8f7675df7144f5b87ea91e17c7150d3 +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr "" + +#: ../../ext/commands/api.rst:646 +#: 59945fa448824e41ac8f29db56a05d04 +msgid ":exc:`~.commands.MissingRole`" +msgstr "" + +#: ../../ext/commands/api.rst:647 +#: 0d9c0b55f5da4d48a7004cce52e8da65 +msgid ":exc:`~.commands.BotMissingRole`" +msgstr "" + +#: ../../ext/commands/api.rst:648 +#: 8f8fc0b9b36d4cd5b9bfe96cab259c5a +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr "" + +#: ../../ext/commands/api.rst:649 +#: 31f9f0b532764958b15cd54bc163cfcd +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr "" + +#: ../../ext/commands/api.rst:650 +#: cb8ef5fc8c4f408587530e3e3dcfd8eb +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr "" + +#: ../../ext/commands/api.rst:651 +#: 1b82bb11d2024000bcd5bdd37bec251e +msgid ":exc:`~.commands.DisabledCommand`" +msgstr "" + +#: ../../ext/commands/api.rst:652 +#: 27d038f16ba1480eb3090e9ffdf4e253 +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr "" + +#: ../../ext/commands/api.rst:653 +#: f967b74af44a404586c877989e180bbd +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr "" + +#: ../../ext/commands/api.rst:654 +#: 03326f2822f449699fb31a42b80628b5 +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr "" + +#: ../../ext/commands/api.rst:655 +#: 68e91270b3d54214bc9d6f05ae905658 +msgid ":exc:`~.ClientException`" +msgstr "" + +#: ../../ext/commands/api.rst:656 +#: 74f572dd584c4c7ead229a600acc880a +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr "" diff --git a/docs/build/locales/ext/commands/cogs.pot b/docs/build/locales/ext/commands/cogs.pot new file mode 100644 index 0000000000..600e15498e --- /dev/null +++ b/docs/build/locales/ext/commands/cogs.pot @@ -0,0 +1,217 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/commands/cogs.rst:6 +#: 7d8a14b96db54be3b73b46f1162cfd57 +msgid "Cogs" +msgstr "" + +#: ../../ext/commands/cogs.rst:8 +#: 41ef7d4debd54cab990dc125e2249c37 +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "" + +#: ../../ext/commands/cogs.rst:10 +#: a21a197b686a425399b4053a1c4a3b4c +msgid "The gist:" +msgstr "" + +#: ../../ext/commands/cogs.rst:12 +#: 761abe3bf60b4bde8cbdf6e3a55371be +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "" + +#: ../../ext/commands/cogs.rst:13 +#: 9517e5384a094f2bb1f431d2ce713ac6 +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "" + +#: ../../ext/commands/cogs.rst:14 +#: d21d904b74eb4e89a2a4bc661d4aa00f +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "" + +#: ../../ext/commands/cogs.rst:15 +#: e5459a2d0d6141ec8145b7ae5ba0600a +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "" + +#: ../../ext/commands/cogs.rst:16 +#: eccd2572c7734092aacd752b4ae72121 +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "" + +#: ../../ext/commands/cogs.rst:18 +#: df03b5d52bef49abb33191f556a196d9 +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "" + +#: ../../ext/commands/cogs.rst:21 +#: 9629417da52d4bc796c9f2d88f7c0d3c +msgid "Quick Example" +msgstr "" + +#: ../../ext/commands/cogs.rst:23 +#: 398644f0c77043148ebb2331f2c41a7d +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "" + +#: ../../ext/commands/cogs.rst:48 +#: af7c9e23c9e34661b1978bd16b5f5d2f +msgid "A couple of technical notes to take into consideration:" +msgstr "" + +#: ../../ext/commands/cogs.rst:50 +#: 14622d4a1d7947e89b70882dd6311e88 +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "" + +#: ../../ext/commands/cogs.rst:51 +#: a3e030dda8d84fdfa20ac0b4745d3e66 +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "" + +#: ../../ext/commands/cogs.rst:52 +#: b8b3cbe90a264a4c9664e7c55cfa033a +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "" + +#: ../../ext/commands/cogs.rst:55 +#: b00093673c624886896e49bc30d483b5 +msgid "Cog Registration" +msgstr "" + +#: ../../ext/commands/cogs.rst:57 +#: f133cc0e24b84376a8df459fb95e2fd2 +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "" + +#: ../../ext/commands/cogs.rst:63 +#: d6b663ac6c7e419780246e450051d1e4 +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "" + +#: ../../ext/commands/cogs.rst:65 +#: 72947ff2c39045ffa1c88c854d997425 +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "" + +#: ../../ext/commands/cogs.rst:72 +#: 21e748a565fa4b6a8a19aab2ccdad567 +msgid "Using Cogs" +msgstr "" + +#: ../../ext/commands/cogs.rst:74 +#: c33c65a090bb4cbba543946df62d8476 +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "" + +#: ../../ext/commands/cogs.rst:109 +#: 70ea1a2dc1f346e89f071b2a90daaa32 +msgid "Special Methods" +msgstr "" + +#: ../../ext/commands/cogs.rst:111 +#: 0be6debcef404ea9b950aeec82453364 +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "" + +#: ../../ext/commands/cogs.rst:113 +#: 24f5ccc99dff448bb57383ef47388bce +msgid "They are as follows:" +msgstr "" + +#: ../../ext/commands/cogs.rst:115 +#: 97d2ba6b9f644b8a8b1aac7ade166884 +msgid ":meth:`.Cog.cog_unload`" +msgstr "" + +#: ../../ext/commands/cogs.rst:116 +#: 992d9055babe4cd68c4802a454c0db57 +msgid ":meth:`.Cog.cog_check`" +msgstr "" + +#: ../../ext/commands/cogs.rst:117 +#: 22aae6ba82674e9f94b09e54c316c361 +msgid ":meth:`.Cog.cog_command_error`" +msgstr "" + +#: ../../ext/commands/cogs.rst:118 +#: b6a3156bc70c4a838f82be1bac2547f3 +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr "" + +#: ../../ext/commands/cogs.rst:119 +#: 738a0b7b5afa4502a5cd77c2799c6038 +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr "" + +#: ../../ext/commands/cogs.rst:120 +#: ac053e4b875445869f0d9a05f14ab202 +msgid ":meth:`.Cog.bot_check`" +msgstr "" + +#: ../../ext/commands/cogs.rst:121 +#: a82d2f25c8ec483c92e1692eff3ddb39 +msgid ":meth:`.Cog.bot_check_once`" +msgstr "" + +#: ../../ext/commands/cogs.rst:123 +#: 4ce764c85d3742cf82684298f7449053 +msgid "You can visit the reference to get more detail." +msgstr "" + +#: ../../ext/commands/cogs.rst:128 +#: 9d637060d66d49269866dc85d2f23b23 +msgid "Meta Options" +msgstr "" + +#: ../../ext/commands/cogs.rst:130 +#: e314efe09f51456391d68e01b94401e2 +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "" + +#: ../../ext/commands/cogs.rst:137 +#: 05e7b018ab0a462390d00af651d0cd48 +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "" + +#: ../../ext/commands/cogs.rst:140 +#: 53da0f2c6f8c48a8a2b89433afd2a30e +msgid "Inspection" +msgstr "" + +#: ../../ext/commands/cogs.rst:142 +#: 0dc059e5db484b5e8b1b035f344b7519 +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "" + +#: ../../ext/commands/cogs.rst:145 +#: 4913166c56a642bb8af6e4b6fb34e4c2 +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "" + +#: ../../ext/commands/cogs.rst:151 +#: 6f5856e1cd37414cb4b8f70288f9bed1 +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "" + +#: ../../ext/commands/cogs.rst:155 +#: 81b21d41a70242aa98044d585561b21c +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "" diff --git a/docs/build/locales/ext/commands/commands.pot b/docs/build/locales/ext/commands/commands.pot new file mode 100644 index 0000000000..d5f9366928 --- /dev/null +++ b/docs/build/locales/ext/commands/commands.pot @@ -0,0 +1,1006 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/commands/commands.rst:6 +#: 2eb0da10d5464bf79c53ce786a7cbae8 +msgid "Commands" +msgstr "" + +#: ../../ext/commands/commands.rst:8 +#: e4214a427a3348428cd35bc578a9b0cc +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "" + +#: ../../ext/commands/commands.rst:13 +#: 9b47c6f1429d4c33b0c9b05ef9488102 +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "" + +#: ../../ext/commands/commands.rst:16 +#: 4d13402b19da4759b264517f6a201364 +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "" + +#: ../../ext/commands/commands.rst:19 +#: 9dc0a8568bbf47dca6c89b0bde20afdf +msgid "For example, in the given command definition:" +msgstr "" + +#: ../../ext/commands/commands.rst:27 +#: 5de5e8c8225c420d9b6f525df5ed59f0 +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "" + +#: ../../ext/commands/commands.rst:33 +#: f4adfe7d30a24a849a8b343dcf007477 +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "" + +#: ../../ext/commands/commands.rst:35 +#: 81eceea83b70446d842cb4c33d5c0872 +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "" + +#: ../../ext/commands/commands.rst:39 +#: c49bb2d2b689445e84e7f2fb85af7a2b +msgid "Essentially, these two are equivalent: ::" +msgstr "" + +#: ../../ext/commands/commands.rst:57 +#: 89a15da928b045c180932fca669b2337 +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "" + +#: ../../ext/commands/commands.rst:60 +#: 4672db0e89d94b759ed873937a925b0d +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "" + +#: ../../ext/commands/commands.rst:70 +#: d17bed7a62ff4323921ff5b2caaf4273 +msgid "Parameters" +msgstr "" + +#: ../../ext/commands/commands.rst:72 +#: 97ae07f056144eb48fb0139175734dd7 +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "" + +#: ../../ext/commands/commands.rst:75 +#: 93a623991c8d401a890de01634ff9d10 +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "" + +#: ../../ext/commands/commands.rst:78 +#: fa4304f52a0e41f2a371397e47fcce9b +msgid "Positional" +msgstr "" + +#: ../../ext/commands/commands.rst:80 +#: e883e4a474714e48a6aeb726eeadc3dc +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "" + +#: ../../ext/commands/commands.rst:89 +#: 8cf8d9493b1041559256e087ef413a4a +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "" + +#: ../../ext/commands/commands.rst:93 +#: 23f921048feb424090895504e729b98c +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "" + +#: ../../ext/commands/commands.rst:97 +#: 3ab21401c05843bd9b1455e46d69b18c +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "" + +#: ../../ext/commands/commands.rst:101 +#: b38c6f36a4984b1383dc229230a04be3 +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "" + +#: ../../ext/commands/commands.rst:110 +#: 69e2937645db4001991a3a19cd1b3808 +msgid "Variable" +msgstr "" + +#: ../../ext/commands/commands.rst:112 +#: 308d1f46baa648118a4492116a1e0e50 +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "" + +#: ../../ext/commands/commands.rst:122 +#: 19b4063c5f5e4147acd5ff0877eb603f +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "" + +#: ../../ext/commands/commands.rst:125 +#: 1760c96b472641e3bbca0de1f872745c +msgid "For example, on the bot side:" +msgstr "" + +#: ../../ext/commands/commands.rst:129 +#: 675386608fb74796ad09e212c7122bf2 +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "" + +#: ../../ext/commands/commands.rst:133 +#: 29ebb86baa1740099c73ca8546bc0ade +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "" + +#: ../../ext/commands/commands.rst:138 +#: 67c020b1c65944dda2ed2652d0ae7c58 +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "" + +#: ../../ext/commands/commands.rst:142 +#: 6b8c16edb4a1403da128255ee43f1238 +msgid "Keyword-Only Arguments" +msgstr "" + +#: ../../ext/commands/commands.rst:144 +#: 6f25d36da8be4318b7517f46553f1e21 +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "" + +#: ../../ext/commands/commands.rst:156 +#: 38db3e0ed2f348e0bb7d6801c86317fa +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "" + +#: ../../ext/commands/commands.rst:158 +#: 9fe6edffe03e4084b0258a60580b7419 +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "" + +#: ../../ext/commands/commands.rst:162 +#: c37edc09abe943d6b3ae7043d3503481 +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "" + +#: ../../ext/commands/commands.rst:166 +#: 481826d85cb845e08e2af89f17e5a0f9 +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "" + +#: ../../ext/commands/commands.rst:172 +#: 67c96f9d17044584a1553ae412eb8f49 +msgid "Invocation Context" +msgstr "" + +#: ../../ext/commands/commands.rst:174 +#: 90307116bb3c4e2380082d039bfa0a72 +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "" + +#: ../../ext/commands/commands.rst:176 +#: df6777a0ac024b7fb5d7c9c767d880d6 +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "" + +#: ../../ext/commands/commands.rst:179 +#: 04404ff085ff4a2f8f0b30ed463cccad +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr "" + +#: ../../ext/commands/commands.rst:180 +#: 4b015547e4cf4589bb40234602d7d7d2 +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr "" + +#: ../../ext/commands/commands.rst:181 +#: 93a632c429f142a28542853f69bf1bc5 +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr "" + +#: ../../ext/commands/commands.rst:182 +#: d5b8d8fc811d40dcae3b834e512c565d +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr "" + +#: ../../ext/commands/commands.rst:184 +#: dd42fc20238e42f1a0ee1c45bb01bcb1 +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "" + +#: ../../ext/commands/commands.rst:188 +#: 9323b08475884e81a24402b57d0e4f64 +msgid "Converters" +msgstr "" + +#: ../../ext/commands/commands.rst:190 +#: 94093319a7b54fdfa6e31db0dca531fc +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "" + +#: ../../ext/commands/commands.rst:194 +#: 3c6b6053a7ff41ddb294cc3bdf33c5f4 +msgid "Converters come in a few flavours:" +msgstr "" + +#: ../../ext/commands/commands.rst:196 +#: 03037c0bbd2c4d4f8763155062d78123 +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "" + +#: ../../ext/commands/commands.rst:198 +#: 98c76a42c234410a8ed70b5be84229be +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "" + +#: ../../ext/commands/commands.rst:200 +#: 4da775ab6c054ad0860c7bef0330ca3b +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "" + +#: ../../ext/commands/commands.rst:205 +#: ff55ecdf59f047bcaaef30853af31630 +msgid "Basic Converters" +msgstr "" + +#: ../../ext/commands/commands.rst:207 +#: c3456b954e774e7a8f35ed7fe291cd85 +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "" + +#: ../../ext/commands/commands.rst:209 +#: 324d460f3f8b4c7dbce5f75874dbc256 +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "" + +#: ../../ext/commands/commands.rst:218 +#: 3fae99b42a2f443d874be5482fa0e936 +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "" + +#: ../../ext/commands/commands.rst:221 +#: 3740f2a511be4ca58de8ede0336e0615 +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "" + +#: ../../ext/commands/commands.rst:233 +#: e173cfce78a641fa8c1e3ec388743ef1 +msgid "bool" +msgstr "" + +#: ../../ext/commands/commands.rst:235 +#: 2b509e4de4e44b74bcccc8bc76160457 +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "" + +#: ../../ext/commands/commands.rst:247 +#: 99b4ee76fbdf4bfe8318bf4634fd1e86 +msgid "Advanced Converters" +msgstr "" + +#: ../../ext/commands/commands.rst:249 +#: 1dd87e5eb49442b5b2b8be597b97e9a6 +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "" + +#: ../../ext/commands/commands.rst:252 +#: 06673a8c2e984113aa51eb9bebd30c13 +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "" + +#: ../../ext/commands/commands.rst:256 +#: 3acb0b6c3c3b45d7947a41f55264d0ea +msgid "An example converter:" +msgstr "" + +#: ../../ext/commands/commands.rst:271 +#: 319ff0abdddd44abb73c9c4df69ea757 +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "" + +#: ../../ext/commands/commands.rst:285 +#: 4eb7fe42c4cf4cc49381b065a3f6d608 +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "" + +#: ../../ext/commands/commands.rst:301 +#: 313d06a63c464db6bc50a9417e7fc09e +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "" + +#: ../../ext/commands/commands.rst:305 +#: 762af1541599441dbe658f34ed6d88e9 +msgid "Inline Advanced Converters" +msgstr "" + +#: ../../ext/commands/commands.rst:307 +#: d2d137d0557a462faad7c955183cab1b +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "" + +#: ../../ext/commands/commands.rst:310 +#: 579183b09bd04a0fac0e147c369c8f6f +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "" + +#: ../../ext/commands/commands.rst:336 +#: 9ae2c2bc6bcc4522a18ac8423feb315c +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "" + +#: ../../ext/commands/commands.rst:363 +#: 3131fccf4fad41828e2b2b27b42bcc45 +msgid "Discord Converters" +msgstr "" + +#: ../../ext/commands/commands.rst:365 +#: b4c52244c9be419fab06827b57f495f3 +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "" + +#: ../../ext/commands/commands.rst:368 +#: 137f5ef96f53464c8a251cc4118b1308 +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "" + +#: ../../ext/commands/commands.rst:376 +#: 57184e3586fc42288c7c5f42ccf466b1 +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "" + +#: ../../ext/commands/commands.rst:380 +#: 3ef3174367f14f4aa3154ceba29fd202 +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "" + +#: ../../ext/commands/commands.rst:382 +#: f06b9b69f544438f98c0d86a14a56473 +msgid ":class:`Object` (since v2.0)" +msgstr "" + +#: ../../ext/commands/commands.rst:383 +#: ../../ext/commands/commands.rst:412 +#: 03938a54fa284120b0e6bd437416f4db +#: fc8b4340e84844c6845fd5b5cc6ae6d3 +msgid ":class:`Member`" +msgstr "" + +#: ../../ext/commands/commands.rst:384 +#: ../../ext/commands/commands.rst:414 +#: b5c11ba0502a4e51815954014a35ff1b +#: 2ed2e5e8c91c422e8df4d374c103c019 +msgid ":class:`User`" +msgstr "" + +#: ../../ext/commands/commands.rst:385 +#: 0f89da062de548ac8d36018cbaa52c6e +msgid ":class:`Message` (since v1.1)" +msgstr "" + +#: ../../ext/commands/commands.rst:386 +#: 9016f8974d594cca9e58ca054892ea95 +msgid ":class:`PartialMessage` (since v1.7)" +msgstr "" + +#: ../../ext/commands/commands.rst:387 +#: a50044b9a37c4977b4d659c5e91ec9fb +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr "" + +#: ../../ext/commands/commands.rst:388 +#: ../../ext/commands/commands.rst:422 +#: 24a187d6918f41e3931a19cd1358794c +#: aad4ae0d99db4541a9c2f8c026d8fb39 +msgid ":class:`TextChannel`" +msgstr "" + +#: ../../ext/commands/commands.rst:389 +#: ../../ext/commands/commands.rst:424 +#: 1721b9a57a6a4aae8ea61ddb939d062a +#: dcf70ccb30684fba934a549b90af7d76 +msgid ":class:`VoiceChannel`" +msgstr "" + +#: ../../ext/commands/commands.rst:390 +#: 1eecfbb240364ef39e7e60d8f3b89d43 +msgid ":class:`StageChannel` (since v1.7)" +msgstr "" + +#: ../../ext/commands/commands.rst:391 +#: ../../ext/commands/commands.rst:428 +#: b788f3bdc63245029e6611c29fda9078 +#: f87fe6cf01774f82b54da0bc6ef3271c +msgid ":class:`CategoryChannel`" +msgstr "" + +#: ../../ext/commands/commands.rst:392 +#: ../../ext/commands/commands.rst:430 +#: 44e5f88bb2bd43fc8d51b66475fdb05c +#: 59e1e1a2f9b348ba922ebca969831825 +msgid ":class:`Invite`" +msgstr "" + +#: ../../ext/commands/commands.rst:393 +#: cccd4ef2cc3443b98d13104f83a7990b +msgid ":class:`Guild` (since v1.7)" +msgstr "" + +#: ../../ext/commands/commands.rst:394 +#: ../../ext/commands/commands.rst:434 +#: cc025777e0c641e193733daff072b0a5 +#: 1ec8a898c9914345aca3d9abd69c13b3 +msgid ":class:`Role`" +msgstr "" + +#: ../../ext/commands/commands.rst:395 +#: ../../ext/commands/commands.rst:436 +#: d6e648eab28640d58ef49d32b79f77c8 +#: 2024345e0b124791866b632b87ada241 +msgid ":class:`Game`" +msgstr "" + +#: ../../ext/commands/commands.rst:396 +#: ../../ext/commands/commands.rst:438 +#: c3c6a678814a43ad8823e8ea97fc0f3b +#: 3345d10003a643f89ce0e50c4017ea99 +msgid ":class:`Colour`" +msgstr "" + +#: ../../ext/commands/commands.rst:397 +#: ../../ext/commands/commands.rst:440 +#: 60107320d7654b6a9154ea6e51181a3d +#: dd3916f6d6e54dfbb9f2094c34b320b8 +msgid ":class:`Emoji`" +msgstr "" + +#: ../../ext/commands/commands.rst:398 +#: ../../ext/commands/commands.rst:442 +#: e4ff43d5b0184c3dafc1e721adc80b5d +#: a741c083d4934dddb1ec2bd513f5680c +msgid ":class:`PartialEmoji`" +msgstr "" + +#: ../../ext/commands/commands.rst:399 +#: 1704896317af4edcbd8a20f03b096c52 +msgid ":class:`Thread` (since v2.0)" +msgstr "" + +#: ../../ext/commands/commands.rst:401 +#: 1dd242e642794a8ebfe2fb8cbb66e299 +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "" + +#: ../../ext/commands/commands.rst:404 +#: bdba697f4265483b83a9c31e3fb5698c +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "" + +#: ../../ext/commands/commands.rst:408 +#: 5c905d9d5e334e4a86ef7617d6db7a41 +msgid "Discord Class" +msgstr "" + +#: ../../ext/commands/commands.rst:408 +#: 67fdd7c779ec4d64b19aa85130bdb445 +msgid "Converter" +msgstr "" + +#: ../../ext/commands/commands.rst:410 +#: 069bf03bc858444a95904e15c00d8e56 +msgid ":class:`Object`" +msgstr "" + +#: ../../ext/commands/commands.rst:410 +#: 84c08b9c121f42128c829bba6e5d4625 +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:412 +#: 9316e8d30b654f4aa42f06854d6d2ab3 +msgid ":class:`~ext.commands.MemberConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:414 +#: 221d879af97f45bfb7c10ab47c5bbae7 +msgid ":class:`~ext.commands.UserConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:416 +#: 13e666233a2d4531ad53d8f63a8a7341 +msgid ":class:`Message`" +msgstr "" + +#: ../../ext/commands/commands.rst:416 +#: b2390c1a4b124b0e9485bb81b6be4d88 +msgid ":class:`~ext.commands.MessageConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:418 +#: 7c8c0614d60b4ac59697cebf6e90353c +msgid ":class:`PartialMessage`" +msgstr "" + +#: ../../ext/commands/commands.rst:418 +#: 45477fb6f9234e8e8f5a9787b75c83c7 +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:420 +#: 2a6dcd1fbe804287a6ac3cbdf06832fc +msgid ":class:`.GuildChannel`" +msgstr "" + +#: ../../ext/commands/commands.rst:420 +#: fdd4a6c2755c4cadbd4ce5e39a476355 +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:422 +#: 10eabd39fe9d427ca1e1f7eda0ae18eb +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:424 +#: 0779f3bcaa7d414f8f5bb2394e2208c0 +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:426 +#: 5f746a3119ff4dffb44d34a44a4b09f6 +msgid ":class:`StageChannel`" +msgstr "" + +#: ../../ext/commands/commands.rst:426 +#: d62ca9d8eec0480f86cfe4a7b3c0af64 +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:428 +#: b114fc4054654e0eb90cbac0547fe194 +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:430 +#: d758ba3981ab4eaeb71713c2fca6b1e2 +msgid ":class:`~ext.commands.InviteConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:432 +#: ed840f87331e46c4945db51a5cb8387c +msgid ":class:`Guild`" +msgstr "" + +#: ../../ext/commands/commands.rst:432 +#: 9f4e5c7b9add4e79b211760f4951e5c2 +msgid ":class:`~ext.commands.GuildConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:434 +#: 61c50c3976884ca0827c47e686f0fc79 +msgid ":class:`~ext.commands.RoleConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:436 +#: e7f1471e45bf4680857187d2bbcca54f +msgid ":class:`~ext.commands.GameConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:438 +#: 0aa621d4ffe54212a2995e0e467fcdb0 +msgid ":class:`~ext.commands.ColourConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:440 +#: 3be8dd3c867f4dd2b8a034b26f5a2bca +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:442 +#: bd131a47e41e42469043bfe18d7bfe1e +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:444 +#: 3b482c8f6eec4e688855568dc22e21b1 +msgid ":class:`Thread`" +msgstr "" + +#: ../../ext/commands/commands.rst:444 +#: 427ca932915b4160b892e09aaba9632b +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr "" + +#: ../../ext/commands/commands.rst:447 +#: c2aa82fcf8b4403893fb5e8656e7de53 +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "" + +#: ../../ext/commands/commands.rst:464 +#: 0b2af3c5e1b14c40a8dc5b2f2b8f7a87 +msgid "Special Converters" +msgstr "" + +#: ../../ext/commands/commands.rst:466 +#: d77ff9d9366546aaa0386b97b392a6c7 +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "" + +#: ../../ext/commands/commands.rst:471 +#: 8e2d4b7f44e24d65aed8dae238908d5a +msgid "typing.Union" +msgstr "" + +#: ../../ext/commands/commands.rst:473 +#: e4d4b494d9aa4143b810ce61ef9e260e +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "" + +#: ../../ext/commands/commands.rst:485 +#: d4e822131ed34ddaa15e3d339e4c7232 +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "" + +#: ../../ext/commands/commands.rst:490 +#: d09570daaf804f8c82c2bbde59e088c5 +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "" + +#: ../../ext/commands/commands.rst:493 +#: 3a590d16bb51472fbe1cfa2980c9f65e +msgid "typing.Optional" +msgstr "" + +#: ../../ext/commands/commands.rst:495 +#: 8362c9e7126d47c49332ae4b67b20dbc +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "" + +#: ../../ext/commands/commands.rst:499 +#: ../../ext/commands/commands.rst:547 +#: b9723a06f2f940b89af2ddb90dd6b3f8 +#: acd3e73ab332454c88ae1f945d276569 +msgid "Consider the following example:" +msgstr "" + +#: ../../ext/commands/commands.rst:512 +#: f4027d15748e45cfabfe3b021ce5fe6e +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "" + +#: ../../ext/commands/commands.rst:517 +#: 3dd8f48f74554d1ca649179f2cd6802b +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "" + +#: ../../ext/commands/commands.rst:520 +#: 708fb1c0594f44959957cd8151e7fa27 +msgid "typing.Literal" +msgstr "" + +#: ../../ext/commands/commands.rst:522 +#: a7e116a5932c429db1da9943a1832665 +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "" + +#: ../../ext/commands/commands.rst:534 +#: 49bda5647fa94357af6826cb98a2109c +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "" + +#: ../../ext/commands/commands.rst:538 +#: 9875bef593fe4a81b69a31d1cde619a2 +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "" + +#: ../../ext/commands/commands.rst:541 +#: 900a1bd1b7b040c7918bcd96141e219f +msgid "Greedy" +msgstr "" + +#: ../../ext/commands/commands.rst:543 +#: dc6419905b4c42f392d5297e10403aa1 +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "" + +#: ../../ext/commands/commands.rst:556 +#: 9ca09d5845224050b1ba70c540a4d691 +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "" + +#: ../../ext/commands/commands.rst:560 +#: 57eebac9d1114112b17e1b5b9a0221b8 +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "" + +#: ../../ext/commands/commands.rst:562 +#: c8fc91d2357f439cae4e9c538d7b653e +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "" + +#: ../../ext/commands/commands.rst:563 +#: 70ebeea864744098a0fe0e3e814c8a3e +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "" + +#: ../../ext/commands/commands.rst:564 +#: 9377041e060c46218b4a1f1f08ce9a88 +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "" + +#: ../../ext/commands/commands.rst:566 +#: 3b7168cd7fb949c58a321e4fc9b6d170 +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr "" + +#: ../../ext/commands/commands.rst:568 +#: 23c4ca604a5b4f7e8686bee24d5be9d9 +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "" + +#: ../../ext/commands/commands.rst:582 +#: 6fb3cc84a76d43809fd0d3a93f54a13d +msgid "This command can be invoked any of the following ways:" +msgstr "" + +#: ../../ext/commands/commands.rst:592 +#: 8af43a82e1eb487cb004540c857d9ab1 +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "" + +#: ../../ext/commands/commands.rst:595 +#: 802179685fdb4ac1adb5d926cb493c60 +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "" + +#: ../../ext/commands/commands.rst:601 +#: cd8e0c725cea4d518ac24bfbda7f8f61 +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "" + +#: ../../ext/commands/commands.rst:607 +#: acf73775f5cc4276abfecdcc82e43ec6 +msgid "FlagConverter" +msgstr "" + +#: ../../ext/commands/commands.rst:611 +#: debdef48375c43fca3d1da0d3a7ce781 +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "" + +#: ../../ext/commands/commands.rst:614 +#: 3b966e812c1c428bb30a92f10bcde540 +msgid "For example, the following code:" +msgstr "" + +#: ../../ext/commands/commands.rst:631 +#: 52518462957f45708676f99d1f50305f +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "" + +#: ../../ext/commands/commands.rst:635 +#: 107af728a5b74d11837998b7ce303131 +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "" + +#: ../../ext/commands/commands.rst:640 +#: 1d843dcb7fd94078aa969a0468f5e39b +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "" + +#: ../../ext/commands/commands.rst:645 +#: a3840ce333d14d5ba23224f900541479 +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "" + +#: ../../ext/commands/commands.rst:655 +#: 3d27dfa303ee4e8ea2f0e4e3be0c0baf +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "" + +#: ../../ext/commands/commands.rst:659 +#: 68bab2dab4884032ae4373ac62a556fc +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "" + +#: ../../ext/commands/commands.rst:680 +#: c3bf2a623f5648ab8aa15e111502969f +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "" + +#: ../../ext/commands/commands.rst:684 +#: ed1aeaf64e074b11b91bcc233a505165 +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "" + +#: ../../ext/commands/commands.rst:689 +#: 1ffb1e24952f41ff8806882dd4a0d913 +msgid "typing.List" +msgstr "" + +#: ../../ext/commands/commands.rst:691 +#: 737132d99ad74d6ea4e7b93155b9053c +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "" + +#: ../../ext/commands/commands.rst:693 +#: 71dfe029bdd44663a9c4c0a6a2e67965 +msgid "For example, augmenting the example above:" +msgstr "" + +#: ../../ext/commands/commands.rst:715 +#: 35e687a664834729a0fd8e46ab8a3809 +msgid "This is called by repeatedly specifying the flag:" +msgstr "" + +#: ../../ext/commands/commands.rst:720 +#: 8b29c4c6720648d38f2a568216ddfb9e +msgid "typing.Tuple" +msgstr "" + +#: ../../ext/commands/commands.rst:722 +#: 885f6f663dfb47b4a25f4c3cc0a703d8 +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "" + +#: ../../ext/commands/commands.rst:736 +#: 843f4bf315a34e7cae7e40f5ee256109 +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "" + +#: ../../ext/commands/commands.rst:740 +#: 40f2697e104e445c9fcc969725c14d4e +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "" + +#: ../../ext/commands/commands.rst:751 +#: 9db24b481c4d46e2bfa6afe2add40360 +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "" + +#: ../../ext/commands/commands.rst:756 +#: ba0ee993018246da96bd9c3e81676795 +msgid "typing.Dict" +msgstr "" + +#: ../../ext/commands/commands.rst:758 +#: a8ae009b053846efa18a133112ab62a1 +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "" + +#: ../../ext/commands/commands.rst:765 +#: bc61f9d1ddef4471be4891bddb9c09fa +msgid "Error Handling" +msgstr "" + +#: ../../ext/commands/commands.rst:767 +#: bf56a9433566476cb8376ca10f51d027 +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "" + +#: ../../ext/commands/commands.rst:770 +#: 2a05152d6bf84317ab95ae2560b075bb +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "" + +#: ../../ext/commands/commands.rst:774 +#: ef55bb05708d4afcbde2b1e63982f33d +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "" + +#: ../../ext/commands/commands.rst:790 +#: 963d52d0558e4331b43c492f46fa70d7 +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "" + +#: ../../ext/commands/commands.rst:794 +#: 80c197d18789467fb4a077f7dd6d612a +msgid "Checks" +msgstr "" + +#: ../../ext/commands/commands.rst:796 +#: 6385fb377ffb43d087b788f62480b7f8 +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "" + +#: ../../ext/commands/commands.rst:800 +#: 90ab3c4a75024d579205f055a8794bb7 +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "" + +#: ../../ext/commands/commands.rst:803 +#: a6623c48167943e79f6a8b60f467d264 +msgid "Return ``True`` to signal that the person can run the command." +msgstr "" + +#: ../../ext/commands/commands.rst:804 +#: 0dea62b4176043998aefe9cac5132676 +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "" + +#: ../../ext/commands/commands.rst:805 +#: 87ac00a762c44d85aa555a32c00abbc2 +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "" + +#: ../../ext/commands/commands.rst:807 +#: ab29e9a85151443fba8fc98d3c272a56 +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "" + +#: ../../ext/commands/commands.rst:810 +#: bf9b734bf41d496a8cab527d2f5982a8 +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "" + +#: ../../ext/commands/commands.rst:824 +#: 78a6e2319b784e57b1564ecf7e34b49f +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "" + +#: ../../ext/commands/commands.rst:841 +#: fec2c90754cb4ca19551a1fca47dae06 +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "" + +#: ../../ext/commands/commands.rst:851 +#: 731344d1c242492384f42d6376ad3b07 +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "" + +#: ../../ext/commands/commands.rst:867 +#: 0a3c34ae9c0d4b6392a9b04d5d36f5dc +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "" + +#: ../../ext/commands/commands.rst:869 +#: edec23dfc5b3498caef57c62a9315264 +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "" + +#: ../../ext/commands/commands.rst:887 +#: 9447373776c540b194831a3f6b7d4f5d +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "" + +#: ../../ext/commands/commands.rst:913 +#: cef95191baf442dea17daa9019db6a10 +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "" + +#: ../../ext/commands/commands.rst:916 +#: 30ab1860927f45f6a807fbfb9a671bed +msgid "Global Checks" +msgstr "" + +#: ../../ext/commands/commands.rst:918 +#: d6aa174f32114ba5bec3c650983fce91 +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "" + +#: ../../ext/commands/commands.rst:921 +#: 864c9abc219b4f689672f5e30a68d47b +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "" + +#: ../../ext/commands/commands.rst:923 +#: 1ea11f45d1814ec8912e90d0390ef694 +msgid "For example, to block all DMs we could do the following:" +msgstr "" + +#: ../../ext/commands/commands.rst:933 +#: 3a2a1fb8a3cf4b48b42209cf4f80bb61 +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "" diff --git a/docs/build/locales/ext/commands/extensions.pot b/docs/build/locales/ext/commands/extensions.pot new file mode 100644 index 0000000000..baf8856d66 --- /dev/null +++ b/docs/build/locales/ext/commands/extensions.pot @@ -0,0 +1,97 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/commands/extensions.rst:6 +#: 11a3dae9fe1c4db2baffa8e52bb87925 +msgid "Extensions" +msgstr "" + +#: ../../ext/commands/extensions.rst:8 +#: 3fc6d3b82099427188caf088434f07d8 +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "" + +#: ../../ext/commands/extensions.rst:11 +#: bff72545dea84615898459176c227829 +msgid "Primer" +msgstr "" + +#: ../../ext/commands/extensions.rst:13 +#: a5c7cefb93c340738086ceb82d719d19 +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "" + +#: ../../ext/commands/extensions.rst:15 +#: b37c970baeb94c608f23fae4c5d6d128 +msgid "An example extension looks like this:" +msgstr "" + +#: ../../ext/commands/extensions.rst:17 +#: 5cd7440657e24c0fb0725a2812f35088 +msgid "hello.py" +msgstr "" + +#: ../../ext/commands/extensions.rst:30 +#: 30f94a1e54d9426fad010da9c908c02e +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "" + +#: ../../ext/commands/extensions.rst:32 +#: 1795f2297a5041ac844add5bfcc88d3f +msgid "Cogs" +msgstr "" + +#: ../../ext/commands/extensions.rst:35 +#: 7c01406819564f4ca4a2656c49cb2f0f +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "" + +#: ../../ext/commands/extensions.rst:39 +#: 98dd5e13250045039e1a563db8bfea2f +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "" + +#: ../../ext/commands/extensions.rst:42 +#: 489bef81f93f4304b279bdd12bfc9338 +msgid "Reloading" +msgstr "" + +#: ../../ext/commands/extensions.rst:44 +#: 650562a4f9b2420788d14c656036f668 +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "" + +#: ../../ext/commands/extensions.rst:50 +#: e9fb9d0f34b842d1a12b88b29236c81b +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "" + +#: ../../ext/commands/extensions.rst:53 +#: bd94882163b141b38360855852e799d3 +msgid "Cleaning Up" +msgstr "" + +#: ../../ext/commands/extensions.rst:55 +#: bb55f99d145d43c6b21bc41ff14e7f14 +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "" + +#: ../../ext/commands/extensions.rst:57 +#: 7d0766fd4f7542b09453f795836c0ad3 +msgid "basic_ext.py" +msgstr "" diff --git a/docs/build/locales/ext/commands/index.pot b/docs/build/locales/ext/commands/index.pot new file mode 100644 index 0000000000..fd4d0770cf --- /dev/null +++ b/docs/build/locales/ext/commands/index.pot @@ -0,0 +1,27 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/commands/index.rst:4 +#: 411aa48dd0464f02b4c2121068b0fa3b +msgid "discord.ext.commands" +msgstr "" + +#: ../../ext/commands/index.rst:6 +#: 65489e71ff11461f87742161290cc9c6 +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "" diff --git a/docs/build/locales/ext/pages/index.pot b/docs/build/locales/ext/pages/index.pot new file mode 100644 index 0000000000..14c8efae27 --- /dev/null +++ b/docs/build/locales/ext/pages/index.pot @@ -0,0 +1,1257 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/pages/index.rst:4 +#: 2437ba416cf848d9a3d8222dc9eb281b +msgid "discord.ext.pages" +msgstr "" + +#: ../../ext/pages/index.rst:8 +#: 5cdbc5387d524c98acf4e627941314f8 +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "" + +#: ../../ext/pages/index.rst:10 +#: 1bdddfae47c249d2b2299c043a10b84d +msgid "Example usage in a cog:" +msgstr "" + +#: ../../ext/pages/index.rst:292 +#: 9e46b970fe514e50ada40895294dd205 +msgid "API Reference" +msgstr "" + +#: ../../ext/pages/index.rst:295 +#: 5d9b9cc1f79549f38b8a4d3b2f0be4c8 +msgid "Page" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page:1 +#: bd25b5c331004759a671ad50a0fb4b41 +msgid "Represents a page shown in the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page:3 +#: ae8bacdd6f74434091d786f43b97b4e3 +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "" + +#: ../../ext/pages/index.rst:0 +#: 697e50f1545c45f4b9e7370baba6fb36 +#: 9a2b6c56e51f47e6b866350220f8c0f6 +#: 1ed97b7d592d457e91f0607e776a78d6 +#: 5d0da1f34118460c8f4eddf4eedb0437 +#: beac103455d843ac836e933650a4dd62 +#: 063bbc6f3e424780b3fca294ca70043c +#: 001d8bed52f640e6b65faeb5e57cd564 +#: ac20d3e78ca94a39857c8376d4001b92 +#: 99a76d768ef6423e9a3952a8dec21a78 +#: 422220e75757468b9e523551808c390d +#: 5526f25c16e840daa4ff844390a50843 +#: c11dd90c56d64c83a8bbac2e2b0f341e +#: 6a04ca7a36094db29f14c6fe2ce8b176 +#: df1997f923f64977a58153c7935dca20 +#: 6bf63b66304d4c34b3dee842785b34c1 +#: 341e6342cd654d72a002d8bc1bbf025a +#: c6df38aa49414da5a6de205f703db624 +#: 655fc98117b74364b87cb5d49111b23f +#: 13ad2f1d0c7641d59bec5738903ebd38 +#: 6e0c755cc95c460dacb7bb287f7856fc +#: 0e9e89efe9e643c3acc962e0648c89a5 +#: 34ba1e0e3f634a529e2461c1c8d10b16 +#: 4ebe1f73ecfe4d27aff3c7e8aca24bfd +#: 09ddd6dd6d764f9d8afa0a4291730274 +#: 4c13c6d74aac47ba8b3ab6fc503d4c08 +#: c1d3f802b5e54055a23682050656d600 +#: d5bca9a9f4e3404884791ef3d4aca196 +#: f2a2b2cd04354ce2b4dbcb6e77dd1bd1 +#: 5a2d03e908f5498ca371e47073d60077 +#: 148f4b586e154d7b9784cf4e6149b19c +#: 0ee33849feaa4e1c9b968a1b176c4840 +#: 075fafed1a384290b249cd03322da598 +#: dbf01b3b2c5841ba9be4972edf38c752 +#: 5d6bf83ea6804891811293d85965e471 +msgid "Parameters" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page:6 +#: 11cf6e703d674e4b84c439e1aa100391 +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page:9 +#: 838dc022445d4c7288ddb26f9b9e7b79 +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page:12 +#: 7863a87aab514116a1c91370164c4eff +msgid "A list of local files to be shown with the page." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page:15 +#: d9743329c81241099f5684a505c85dd2 +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page.callback:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton.callback:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu.callback:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:1 +#: 0ac477cf619c420fafdaac5b6a1fbd18 +#: cfc9f4305077455fad6922d274bc383d +#: 0e2e6db2218f41dc81c2bbdf0354cbe4 +#: b2df49c3af9a4c74bb099b83349ddcfc +#: 5d024d19341544b2a7a40d0969eef03e +msgid "|coro|" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page.callback:3 +#: 00e243c7a32046b3bb334815364cd744 +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page.callback:6 +#: a43956ce2cc443b4a7dc593c11685574 +msgid "The interaction associated with the callback, if any." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page.update_files:1 +#: 14dc2bbbfd654ccea6ef76d9d586e887 +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "" + +#: ../../ext/pages/index.rst:0 +#: be696f9851b549dc9e9ac50b6f55f198 +#: 5f9e2f91dd6f4ddf8aba9945c851a7d0 +#: 89185399683243b8a8161ef2321fb944 +#: 2b3e3b8a6018461984a424487aa9e6ab +#: 4cee4928e1df4606b6ef905abbd63533 +#: df303e968a55460b84813fa21867fc46 +#: 7fae07446dae40adbe93cfc309708f70 +#: d4e5702bc04a4bc4b7641557751fde48 +#: aeb2988a559840d3ba83ac47b72253f7 +#: 550c48f6c2e1423ba8c77b021dbb3dcd +#: e5bcc53a42f240c9b5ff34f27d6f0bc4 +#: 2aef4bef743e42c6b10dc7dc409dddee +#: 44df48e0960e411391d8959fd9d11450 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: 371cb60b44484310bd22f6a9197741e9 +#: 0df6b7d0cf984f17843c219c54453fdd +#: 20aa4fd3a1ba4a329e930300f1bfec70 +#: 08830e24540a4075a566ce6b6055bf58 +#: 1f00671156554ebb8b1e8e178a7e76bb +#: 38bb18eb66264addb0e210e066903922 +#: abda4ea8404f4fd1b6ff60b850d9f36b +#: a97d7cfc0d8547fba1a07c473d6aa220 +#: 68cd1cac42dd4ab384b9d993fd5b3d3d +#: 8b422ca21de24735a81d7c356e107d08 +#: 4d583655849d4c3eae271f096ea6e32a +#: d5396ed79c0a49578511de018e0b2963 +#: 1562ad6d689b4e78a93104700ab3429f +msgid "Return type" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Page.update_files:5 +#: c00ec830bb5c410f8a62d21db42e50e4 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.Page.content:1 +#: ffe769a89ef340cd91dac029ddf8a270 +msgid "Gets the content for the page." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.Page.embeds:1 +#: 4a20614242ff49c98c15934b6aacaea9 +msgid "Gets the embeds for the page." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.Page.custom_view:1 +#: 734b759d6f34415790c449280122f7c0 +msgid "Gets the custom view assigned to the page." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.Page.files:1 +#: c7ec9a0c9bf34cc8831e0cedb813b560 +msgid "Gets the files associated with the page." +msgstr "" + +#: ../../ext/pages/index.rst:303 +#: 35d41aaa665649e88470e1f4d3913ae4 +msgid "Paginator" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:1 +#: fd8a1d163c3a4ee1945a7434adfec3b8 +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:4 +#: 8cda8ae5c6884250afa6014ccd2d1518 +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:28 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:9 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:8 +#: c1ef75e202bf43d089126729e2fbfa5a +#: 9db02074d9c94a49bb0521fec4c63a78 +#: 9862f559cf4d46f7a8dddfd90b6913db +msgid "Whether to show disabled buttons." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:31 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:12 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:11 +#: 20144622344a4ac6a82ba99b28691461 +#: 7bae99044a5a4aa9ab38e9546c5f3427 +#: 9f7169cd5e0841edb66e3b4afc357032 +msgid "Whether to show the page indicator when using the default buttons." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:15 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:14 +#: 7350d44eca9e4b60ba03f3756966c84d +#: 87d7b2f7eda64012b345e45181b5aa9a +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:18 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:20 +#: c80991802f7749b7997151be89ffe3ac +#: 48cdaafe961448ea8435a914b65d59b1 +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:34 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:22 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:17 +#: bfd67da67dc84a2db829bcfb79ae099d +#: 899bfeaaf84b4233aa6a174ab45803d0 +#: dea0f3e5ef3c4c6ea0067ef707954f13 +msgid "Whether only the original user of the command can change pages." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:37 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:25 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:24 +#: cf4e82cd445643499f51a23de19eea56 +#: 779b82d3374f4bab948e1fe6d9fedd84 +#: f55070f9c63b4f438d22e271d923e292 +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:40 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:28 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:27 +#: a97270c704f840a79d3a26539fa11c44 +#: 9d80446d78c74078828826d8fad283fd +#: 7c8f9e0762e4471a8f475ad877770d3f +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:43 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:31 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:30 +#: b521eded949b46f39de788085cad3ac5 +#: 3d89ab0ca1ca4ddf95a66e1052b1416b +#: 359dca5b47f9408b86cc5b913f19ae1a +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:46 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:34 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:33 +#: d4e55005744346dfa8bec1e681ba7b61 +#: 28f65f81ba3a46e6aae6abe2d4ff3ef1 +#: 98a9d82f780e433d8df62c12f3ba9583 +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:37 +#: 4d2ba455eeef4ae0be01901805d02dde +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:52 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:42 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:39 +#: b4dd779623cc447686e75ded05b049d5 +#: 7cfd82ebd0c3445fbc2e87f9cc91d6c9 +#: 060cb092dcd84afbab1654c4a673ae40 +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:55 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:45 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:42 +#: 53a7f7e412d544caa4ea3554dfcd74c2 +#: fcff089de6814bc8b2b2bbd270418f40 +#: 61407496e9e345548b4662bf9c3f4420 +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:59 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:49 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:46 +#: a606dd1d1de94ab685aa1d8ce6e80fb8 +#: 554037abcf4f47588ac9452c56ce0e92 +#: 3724bfedfe9d4166b773ce52f6f96b10 +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:55 +#: 756df0e58bf4427d9c783f16cb3c0e4e +msgid "The page group select menu associated with this paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:0 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:0 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu:0 +#: 3bf364dda08e4407b362896b9f58c12d +#: 0018653201484c08a1efb39a95e5496a +#: 95024e9505d948148493ddafe8b895de +#: db10884582044f4e9c0b780d876ae769 +#: 10fc8a4ebd814531a213613eb9c1a227 +#: cf1fd8809876457cad8b65bb8ecdff62 +#: 5ab60fb665a04f979c0831942086c3de +#: 370e4876a6f44d2fb97522e2d6436744 +#: 6463e465ccd0446d997680daed481da6 +#: 25f5deaf82234969896d2ff9af594576 +msgid "type" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:57 +#: b4c0337d404a45e8892fe156cc9bd943 +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:61 +#: f93be253c778483880b98ed031460760 +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:63 +#: bf99cdb634044fbdaa3eb8afab3539a1 +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:67 +#: ebe7495d7a554db8911766d9a94dda30 +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:70 +#: 9427ff2e436a432290830b7a5ed07653 +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:74 +#: ce115ee07db249d3b02b2739d39dfb9f +msgid "A zero-indexed value showing the current page number." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:76 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:82 +#: cd1000c6b1654d0f856cdf9321d03a5c +#: 2ac3cef8cda94569a45f9c40a7419fcf +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:80 +#: a3dcbf307b9f4881923e5a7270193d27 +msgid "A zero-indexed value showing the total number of pages." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:86 +#: 4e8469fd89304c68966aad2f8bc27030 +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:88 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update_buttons:4 +#: 603b801b380945289ad846d62a25d0f3 +#: 6f163c5ef9af46fb96941b6d6f597e70 +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:92 +#: b8fbd37143be495fa07f7afd6e225bee +msgid "The user or member that invoked the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:94 +#: a193d3a3f88146cdbc98453f06ba4224 +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:98 +#: 3434a6aec3d144e28ca23d5691b76c64 +msgid "The message the paginator is attached to." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:100 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:25 +#: be60611a1e5f4142bc4e8c2825ad0bce +#: 249266a0e6c24ccdbd83f6d3b93049b7 +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:1 +#: 02e566c042de48b1841f604571514d29 +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:4 +#: 429d25bcb3884adca03177c1cf56439d +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:36 +#: b3c853535a3147128ef4397cfa4c2631 +msgid "A custom view whose items are appended below the pagination components." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:50 +#: da4ea72df96a4fbe99896196a3b51693 +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update:54 +#: 32cf976654204696bcf4a6210302ffe3 +msgid "The initial page number to display when updating the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.on_timeout:1 +#: 0a8139d4555647b2bb348dabbddcbc6e +msgid "Disables all buttons when the view times out." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.cancel:10 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.disable:10 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.on_timeout:4 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.page_action:7 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.add_item:10 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.clear_items:4 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.disable_all_items:7 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.enable_all_items:7 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_check_failure:9 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:18 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.remove_item:7 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.stop:6 +#: 68e2cc93f0e6490b8f2f6cee4790cba9 +#: 718868e38cac43a586cfbd4a6305d236 +#: c2fbf9bef8224850b4afa5ea4c5afbc2 +#: e63b8fb4db3b4bee81d67b79af441412 +#: 3c63f3adb2364adead3012e035129ebc +#: a7be2bff8d9e4794b701800978b38389 +#: 128c5298c9494f91a4b3f649fa6df996 +#: 948ff3860b7449e189966372f0999657 +#: 1b99936247fa444d8f760ffecb3bfbeb +#: 73506917c2ae4d10839ac863f15c0649 +#: b6e8b71f2e914b7aa52f4bf5895f9498 +#: e7e7b98e6e7b4408b492675432ece6e4 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.disable:1 +#: 8d470e192c8f45a28576b5da00104921 +msgid "Stops the paginator, disabling all of its components." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.disable:4 +#: 1c19001e498d4934b264501cf3f195de +msgid "Whether to disable components added via custom views." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.disable:7 +#: e09e9f0034204fa084519c19526ececf +msgid "The page content to show after disabling the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.cancel:1 +#: 385f026c4c984195899345daeff900dc +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.cancel:4 +#: d92a2abb21bd49f0b1a6c02cb2f1b83a +msgid "Whether to remove components added via custom views." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.cancel:7 +#: 5ced813a67dd4e249de76fa20d2cbfe4 +msgid "The page content to show after canceling the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:1 +#: 273705cd08924bcc81e0fb7eb24ab41f +msgid "Updates the paginator message to show the specified page number." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:4 +#: 86705ad6d652450a8187cf631ecc4aef +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:4 +#: 8e4069b66dfd41f9a73acb1874a5723d +msgid "The page to display." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:8 +#: a05df0eb26fa4b9ebaf18d70d4d979f2 +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:12 +#: b46a6169ff5b433981d54d5239460cc7 +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "" + +#: ../../ext/pages/index.rst:0 +#: 23d2d513e75249be834c3da0e3806faf +#: 433ab35ccdc34f8a8721f26b0e699f02 +#: 60cad8cd26d448e497604cad7a23855a +#: 9d3a83013ff043eda39a19a8533e2db2 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 5b58697a956a4cf4a58ce5a800e4deb1 +#: afe45ade9581404fbe8fb11422546746 +#: 7194b0de3a6c48f09395740786c65dfe +#: b76f2a1bbef34d9e922ff8ccd944e554 +msgid "Returns" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:16 +#: 395be673321547f88323e638d86c0bbf +msgid "The message associated with the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.goto_page:17 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:35 +#: b6dcdd3d4ca34722a9e4b56af3acc19c +#: 1e69c14db8ce48d48ba9c2d633221880 +msgid ":class:`~discord.Message`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:3 +#: 9bde443dec424572b5043c1a1666c470 +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:6 +#: 1ab2878c6df045968a80c9a6132ff611 +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:9 +#: 74ea1075550e4bfead0fa3cc3dedbcf3 +msgid "The default implementation of this returns ``True``." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:11 +#: 327caaf61c324a10a0dfaf64d5f4e77b +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:15 +#: 504f795f741c495fab7278de056195c6 +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:19 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_check_failure:6 +#: 62c2722e6b6a40fd8c8a215d7cb11a21 +#: 616d5c00eb544301af1b0d00548c865e +msgid "The interaction that occurred." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:22 +#: cf58c9c3031c44dcbcc4d6428b2e79ca +msgid "Whether the view children's callbacks should be called." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.interaction_check:23 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.wait:8 +#: c5464d8a113b4293be79478ba33f200d +#: 607f9270f774451e96d48d6a223876de +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.add_menu:1 +#: 3cb43fceb24a4303a7740545bbb7404d +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.add_default_buttons:1 +#: abdf9feeb622435d94c856d8fcc2d2ff +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.add_button:1 +#: 16033ccfd3734326b67553524cb67b97 +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.remove_button:1 +#: ac7bec46e3714d67afca04109440ae90 +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update_buttons:1 +#: 4658b4a4f750447183ee2ecd2cbaadfe +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update_buttons:3 +#: c2d8bc65b789479db1e60116d49bab98 +msgid "The dictionary of buttons that were updated." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.update_custom_view:1 +#: 638eaa550f0547419dffb949d7e9ceb6 +msgid "Updates the custom view shown on the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.get_page_group_content:1 +#: 997aaa398a3a43b6b53b595557fe623b +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.get_page_group_content:5 +#: d51ced468afd49acbb4cf1d506cd4f1c +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.get_page_content:1 +#: 0ee5e3fd03144afb81fc1a6c6c12210b +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.get_page_content:5 +#: a0ccbe1c8fc4425295588d16116d15d6 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.page_action:1 +#: 5de60ff973594979bbbebf60e8de1154 +msgid "Triggers the callback associated with the current page, if any." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.page_action:4 +#: 12777550042c4fc88db802149be1f8c1 +msgid "The interaction that was used to trigger the page action." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:1 +#: d38f6b90fb214fd2a38c0598a305e9a6 +msgid "Sends a message with the paginated items." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:4 +#: abf2c08783684a009f6acb497aefbc07 +msgid "A command's invocation context." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:7 +#: 6b819a6920f04efdbefbc83eff28faaa +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:10 +#: 9630cacaacc24ddcb6ffc7702609685e +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:13 +#: 867846727c0943ff80115b0482336ac1 +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:17 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:20 +#: fba3e242c89c4eefab5d66255b0cf54b +#: 65b0b09d70bf4e49b640609c5e99a404 +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:28 +#: 060f7bfa5d004b3d86d6a1c172bba770 +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:25 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:31 +#: f202d710e2904f8a8f758be7d1f8e13f +#: 669ef73d878345249fe2920dcef25bb4 +msgid "If set, deletes the paginator after the specified time." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.send:34 +#: ac39d8da08a34f0dae55de6f23200c09 +msgid "The message that was sent with the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.add_item:1 +#: 0d286971aaf84f359ea3f2b868341679 +msgid "Adds an item to the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.add_item:4 +#: b596145e148445798536949956fec5b6 +msgid "The item to add to the view." +msgstr "" + +#: ../../ext/pages/index.rst:0 +#: db25be38ef7749eab275cfcf7ce4fb30 +#: b67cd9be980a4fdf8e179a3825ce7070 +#: 9f2e580e981742ac800ab0c0ffa636e3 +msgid "Raises" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.add_item:7 +#: 799eb95c1d8f40df9edcf9e5b694789e +msgid "An :class:`Item` was not passed." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.add_item:8 +#: e69d7b97a3c8409c8efd81ad1626f25d +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.clear_items:1 +#: f7b8e5d7c4304348abcbfbc505545cf3 +msgid "Removes all items from the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.disable_all_items:1 +#: 1a4ac6f032f5427aab3f14952bb0a9ae +msgid "Disables all items in the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.disable_all_items:4 +#: 115ed036dbed4b93bf59511d61482bc4 +msgid "A list of items in `self.children` to not disable from the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:1 +#: db376aa4460347ecaa0cc6a71294ed64 +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:5 +#: d041a66736ff473ea7a033d2a180a519 +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:8 +#: 698e3ece2a734f139df7af407e051dc5 +msgid "The message to edit with the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:11 +#: 8eb175cbee9947f89eee0e3239a53d93 +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:28 +#: 441faf97de83480f8e9acd0688378a8c +msgid "If set, changes the user that this paginator belongs to." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:31 +#: b9b96a33a4134ec08e531b25ce552a7b +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.edit:32 +#: bde2084b48ec4c9787e78682dcc81fb5 +msgid "Optional[:class:`discord.Message`]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.enable_all_items:1 +#: 5529aa1751fe48a1aac3071120fe5b99 +msgid "Enables all items in the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.enable_all_items:4 +#: b115fab8e9f441ae97058262b47e4eeb +msgid "A list of items in `self.children` to not enable from the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:1 +#: fb9fe3622ae9490eba53b40685382759 +msgid "Converts a message's components into a :class:`View`." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:3 +#: a5239e55bd5d43f5831e3e995120db1d +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:9 +#: 5e13e4d3661642fd8e02726cc001660a +msgid "The message with components to convert into a view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:12 +#: 1830d4b99a8e451d8fc931733f8bfd68 +msgid "The timeout of the converted view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:15 +#: 9bc9774d4bd74c418de1d9b36c3c5c8a +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:17 +#: 086f552dd0d342c290385bf3bdf985ab +msgid ":class:`View`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:1 +#: b2a30fc2dab449648d3ccac33a6713a4 +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:4 +#: 39c8c0f1510244288c5734268ff2ecfc +msgid "The custom_id of the item to get" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:7 +#: d3278dd56b5e4104b98070ea85764693 +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:8 +#: 49f9aab462e146199bb0ad2eb8987e74 +msgid "Optional[:class:`Item`]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_dispatching:1 +#: 1d7e2b0e1c18422c9227cbe351a94a36 +msgid "Whether the view has been added for dispatching purposes." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_dispatching:4 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_finished:4 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_persistent:7 +#: 47016b19dd1741b1a063b2f5068dd3ec +#: e528916f3a854bc58c88136808c5e02c +#: 7ebc8aa9eb5a4749b302688f0898a9bc +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_finished:1 +#: 37860b521c8143f3833fb4beb0a1a2ea +msgid "Whether the view has finished interacting." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_persistent:1 +#: 8fcb089aef584d57b8d0165e8a22048e +msgid "Whether the view is set up as persistent." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_persistent:3 +#: b1fe671c39f5430baade51f464b8eaf2 +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_check_failure:1 +#: 26ea98091eed4b37a02e4fb299ce6413 +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:3 +#: de6e9c49e57d45b2a3a59296cd5da7c8 +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:6 +#: bf46d9fcc45d4f1b885a743615cbd049 +msgid "The default implementation prints the traceback to stderr." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:9 +#: 955a74f46d014b4db4a84da5f9e43c02 +msgid "The exception that was raised." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:12 +#: f882a5d3e3cb47b1bcf9d7c720cf97d7 +msgid "The item that failed the dispatch." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.on_error:15 +#: 0eaa94893f944a62a87305a25f22ee07 +msgid "The interaction that led to the failure." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.remove_item:1 +#: cb2bb9fa0f2d4adf8ae284983f41b8eb +msgid "Removes an item from the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.remove_item:4 +#: 13af2b65c7a6448b89c506d4b733b44a +msgid "The item to remove from the view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.stop:1 +#: cd3fd1e5c76042c8896020ad68e3d6ed +msgid "Stops listening to interaction events from this view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.stop:3 +#: da2a7c40b68548eea51cd5f66cd11ea1 +msgid "This operation cannot be undone." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.wait:1 +#: a7fd726fe8824da08c1ef4726cb85e56 +msgid "Waits until the view has finished interacting." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.wait:3 +#: 2c6c8756f7ad4b758c243288a6f448be +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.wait:6 +#: 3c69a4b00f914f128f11aa2b8240d061 +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:1 +#: 5a13e5a534e2484180375a59f828dadf +msgid "Sends an interaction response or followup with the paginated items." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:4 +#: da2b82bc0dac4e5e9ffff1e289a0efc3 +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:8 +#: f5d2bd10e4864a64b7bb4175916dc97c +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:8 +#: a5b209f9e41c40668aa22f24ab3cc043 +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:13 +#: a5a9d6f0eeae435e85be10f33420ae78 +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:17 +#: 050718b89ecc46ca8d2bc5eb98e6e72c +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:21 +#: 095ca86d10b7456e90419b5b5023b0d3 +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator.respond:24 +#: bd17bd959c86463c8dc7581e9843ad82 +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "" + +#: ../../ext/pages/index.rst:312 +#: 20630bd0e40b4eeaa17398c49bc9c715 +msgid "PaginatorButton" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:1 +#: 9d89624578c7499fb29f824d9a4a0336 +msgid "Creates a button used to navigate the paginator." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:4 +#: ef90e083b4c24a29b99dc4bbe2197f46 +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:8 +#: d839761b333045e49f5c7ae824615764 +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:12 +#: e3c16ce4afa94d8099e73c3985fde852 +msgid "The emoji shown on the button in front of the label." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:15 +#: 33acfd60dff04f368d4eced4ccde5acd +msgid "Whether to initially show the button as disabled." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:18 +#: 629096497ac84fc69a4ff620e40e46ff +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:23 +#: 5161e3d1f2ea4042bcf7f389c9cb86fe +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton:26 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu:12 +#: 65b16c206cc54c01a115ae6dd829d2c1 +#: f24f43ef85fc4fa49db3873d9f486199 +msgid ":class:`Paginator`" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.label:1 +#: 19fef157664f4c64a9b773232fe202e6 +msgid "The label of the button, if available." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.emoji:1 +#: 9b573729b4a841b88ca87d1314759096 +msgid "The emoji of the button, if available." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.style:1 +#: e095e568418b49cdbbac418b65bddc4a +msgid "The style of the button." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.disabled:1 +#: 73ee32fb4f884db8a2baaec52956a4ff +msgid "Whether the button is disabled or not." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton.callback:3 +#: b2dbc527cb194711bb5c77bedc10c1e1 +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorButton.callback:6 +#: 9b2955fae778492b859452b34a58b65a +msgid "The interaction created by clicking the navigation button." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.custom_id:1 +#: cd80cb2731d3486b84b9c1a19aed382d +msgid "The ID of the button that gets received during an interaction." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.custom_id:3 +#: 57fd2e9ba90f45fc9504e7438dbe787f +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.sku_id:1 +#: c87c8240e5dd4ff69d19866fc6522c5f +msgid "The ID of the SKU this button refers to." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.url:1 +#: dda9b3885e0a4250979ffbca77e592f9 +msgid "The URL this button sends you to." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.view:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.view:1 +#: 779b1ffc73854c80b1b87b3fb7b03228 +#: b3dc3a0e33de4930b09c6128690cc85b +msgid "The underlying view for this item." +msgstr "" + +#: ../../ext/pages/index.rst:321 +#: bbee89d0c8f54cddb8d204dce6e729bd +msgid "PaginatorMenu" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu:1 +#: 11ee7599b2af45e69b577929e02558da +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu:4 +#: 93f0b0f5f5344cd7917004ed6c17ade5 +msgid "The placeholder text that is shown if nothing is selected." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu:9 +#: 733bbd198a724ff89d849e17bb4464ef +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:1 +#: fd0f251caa31466f86f28a963b80e74e +msgid "Adds an option to the select menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:3 +#: 0ef246583a96465ab9a2662925dea262 +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:7 +#: 7debbe68aa84435e8200d7e2981cd202 +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:11 +#: 08e93f8f2b6b4e2e9bc8a54af7e9cabf +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:15 +#: c8c94a6f3925491fbdbfc616e9f7a4bb +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:19 +#: 03aca7b4fad14c57a7cec8d245b4958b +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:23 +#: e73c3cef480d411881ff3001d10f64f4 +msgid "Whether this option is selected by default." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:26 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.append_option:7 +#: 8aa241191edb441496f0c1bd02fe0da0 +#: 39baed4852504458b9d8d46f72c39a2a +msgid "The number of options exceeds 25." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.append_option:1 +#: bafa80d0afd248d4b54b80365d46b82a +msgid "Appends an option to the select menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.append_option:4 +#: 2d8599f9eca74a0cb9cc8f88c0406158 +msgid "The option to append to the select menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.channel_types:1 +#: 97d6790260324dad936de6871ef37839 +msgid "A list of channel types that can be selected in this menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.custom_id:1 +#: d75ecd6ec9e44825a919ca427b5ec5e4 +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.disabled:1 +#: 4ca8076e7aa84cf0959662de2d2070a3 +msgid "Whether the select is disabled or not." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.max_values:1 +#: 89964f8198b14cc49d9b7ab8b6b5b5c1 +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.min_values:1 +#: 63d719dbf42149e1ad7e9107549a1c8e +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.options:1 +#: 6323c7b02d2242bfaec760b147775d6d +msgid "A list of options that can be selected in this menu." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.placeholder:1 +#: 2360c22bf0db488ea313baf24fc77930 +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.values:1 +#: 1a9c671416ff416a8098e527e4238487 +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu.callback:3 +#: f77011c86cae47989890beafa1381460 +msgid "The coroutine that is called when a menu option is selected." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PaginatorMenu.callback:6 +#: b46da7fdc2e2499f8b9c9229a1d4258e +msgid "The interaction created by selecting the menu option." +msgstr "" + +#: ../../ext/pages/index.rst:330 +#: 729faa6949a64481845ce15d9de049be +msgid "PageGroup" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:1 +#: 0f19f3e8fcae4dd2b7871b731090eeb4 +msgid "Creates a group of pages which the user can switch between." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:3 +#: ddf81666476e43c1b66bac8ad7016d82 +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:7 +#: ecc0ed43087e49ce9f6bc57ac582a2cb +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:11 +#: f44c1d50fe2241ae90bd68f0b86bc490 +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:14 +#: 618c8dc7c14745af8932b5e444a46f47 +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:18 +#: 6233ba31ec5d4ae6a3e21fea5df4fd03 +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:21 +#: 406c3c7333924c1a928efb524d4d59b3 +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:24 +#: 640d81823b8945488f29aa310f7b50fe +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.PageGroup:49 +#: a0d57e1edeaa4012830f0df83c584427 +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "" diff --git a/docs/build/locales/ext/tasks/index.pot b/docs/build/locales/ext/tasks/index.pot new file mode 100644 index 0000000000..9f4ddff560 --- /dev/null +++ b/docs/build/locales/ext/tasks/index.pot @@ -0,0 +1,530 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../ext/tasks/index.rst:4 +#: 59da74174e4c4214b076a3810bb95fe7 +msgid "discord.ext.tasks" +msgstr "" + +#: ../../ext/tasks/index.rst:8 +#: 3ac09d081ea348e789447c5199809ff0 +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "" + +#: ../../ext/tasks/index.rst:10 +#: 8db3c338d0cb4abfb5af02b5480fa3a1 +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "" + +#: ../../ext/tasks/index.rst:11 +#: 436e65611b4a47c4996463b1bd23c9e5 +msgid "What do I do if the internet goes out?" +msgstr "" + +#: ../../ext/tasks/index.rst:12 +#: 3e307085fe7c497c92cedd058ea8917f +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "" + +#: ../../ext/tasks/index.rst:14 +#: 555b5e79b7f74c039e7bf6b0dc625f26 +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "" + +#: ../../ext/tasks/index.rst:17 +#: e46a6ded9da3444a8831a4322b89eec3 +msgid "Recipes" +msgstr "" + +#: ../../ext/tasks/index.rst:19 +#: d1eb26160af441c3ad80b0ddacfb1db5 +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "" + +#: ../../ext/tasks/index.rst:38 +#: a7a08f1d572b44eda5576c51da81582f +msgid "Adding an exception to handle during reconnect:" +msgstr "" + +#: ../../ext/tasks/index.rst:61 +#: 16a5fd6c73024a8aa67e2197954b283c +msgid "Looping a certain amount of times before exiting:" +msgstr "" + +#: ../../ext/tasks/index.rst:77 +#: 5ec06169ced54b6690469d8b3aacb90c +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "" + +#: ../../ext/tasks/index.rst:102 +#: 4d5885d1008d4e288360ef1cc770187f +msgid "Doing something during cancellation:" +msgstr "" + +#: ../../ext/tasks/index.rst:136 +#: 784d60950fd842b88251fa1b9ad96b6b +msgid "API Reference" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop:1 +#: 0d9e3d92282d42b39abe6bda09a6c1a5 +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop:3 +#: 94f3800cced04f77866012b145727c45 +msgid "The main interface to create this is through :func:`loop`." +msgstr "" + +#: ../../ext/tasks/index.rst:0 +#: eda2eba72cd74d40a81fb96a622558f1 +#: 0430760556bc454eb496f803a14cbe47 +#: 4652ba98dd17419892fcd50a56a420d0 +#: bef7bd65f8fd40808f7c4a269ed9d7c9 +#: 224eb1ea4d464d899b6db853b26a2846 +#: 91965bac6d654b3e8109e274bdc46bfd +#: 6f12894246604c7eab1521c1bd45ca57 +#: 6c4c3d6ae0cf4dd3bf9a90b9939d1d43 +#: 7b563966d82a4f03b7d409731c7032b5 +#: cabe2bc452c248be884063fac80d1ad0 +#: 761a207eac3447b899de047d9e5ebf7b +msgid "Parameters" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.after_loop:1 +#: 8cf7f115e3e94e6491cfb5cdff90f8d1 +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.after_loop:3 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.before_loop:6 +#: d4f8de6e87f64f9bbc7b4f305e1986cf +#: ac000acd3f5743c1a5679fd61466b379 +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.after_loop:7 +#: 8cb871d1f5da49e79441d574f90ac13c +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.after_loop:12 +#: 73c64e4f2eeb4b0eaa468253fe8ab317 +msgid "The coroutine to register after the loop finishes." +msgstr "" + +#: ../../ext/tasks/index.rst:0 +#: 27b88dc7486040678f313ebaed311309 +#: a6b9eae8aff44f3ca7bd392a1f0ef0a0 +#: e37d85d7fd3a46cfb5ba0faec8cc2057 +#: 88dd06b54a304b18aaafa8828477df67 +#: 4f0346fd2f594d87bc6a71fc5f3aaf36 +#: 95e660541beb4b44a8764bd93c54a94e +#: eb4160d3b1904ad7b6fb4a90b73082a8 +msgid "Raises" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.after_loop:15 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.before_loop:12 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.error:14 +#: 34a7b1d07fa947eca3999296e8c0e55a +#: a665cd72f12f444e93e63d177913e3a4 +#: 369596d73e694c09aa9e9476267a53bd +msgid "The function was not a coroutine." +msgstr "" + +#: ../../ext/tasks/index.rst:0 +#: 54b3c2d1fd1b471b83c462abaeeedee8 +#: 6b16812b4e8d43a48dfc08003424686b +#: 0da50f3c0c5e4d7bb6fb2b2b8a3138a3 +#: bf5eae97450b4e40bd2157395afa650e +#: c236bd9da41742fa9c9399bd38e4aa90 +#: 07d97a21eac140af8f4d536dcb062e2e +#: 7d90def94e9b4721b355b5c6568e8e6f +#: 3f67b80a7be749d6b9e06e40040ba69e +#: ffc3e9102ad84c3c9424d446574b2b0c +#: a2407e90429149a79db1b5ee278a1dc9 +#: 33d39f515aa24c48a28b1f3c05edef44 +#: 8de254edf5c84d599fb5c37d26253ec0 +#: df4b78673a4946d18d2e5d56973c31a1 +msgid "Return type" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.after_loop:17 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.before_loop:14 +#: 2576cec782cf4d21bc6d4cd68fb2044e +#: 809ce216769e456b858d7830388f6963 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.before_loop:1 +#: 29ffc9a0452f4bb7b0c6d26b12bad850 +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.before_loop:3 +#: 27da0e08409c41898200b30e74fb4894 +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.before_loop:9 +#: b0c7be8d4ce84d3baa6bcd24027bee2b +msgid "The coroutine to register before the loop runs." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.error:1 +#: afec46798b8b440ba38c4fd62fa80fd4 +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.error:3 +#: c93726b33b2343148524f006e53e436b +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.error:5 +#: 7a8a6183c0dd4264a404dd9e7330321c +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.error:11 +#: a60614b72b074d8fb36796b2656d2ae9 +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.error:16 +#: db7c90536e494551a78eae3eb557d085 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.seconds:1 +#: 5e6767c4d5274c98af777dc1798705a9 +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.minutes:1 +#: cb3c8e59e3ae41ff90f25ab50b2291d2 +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.hours:1 +#: 4ec44806924247d389a4222760d17398 +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.time:1 +#: a4a728fad7b744f1b572a3c1b2d900f2 +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.current_loop:1 +#: 46a26f5c4f654551917d4052c697d446 +msgid "The current iteration of the loop." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.next_iteration:1 +#: 67cc28bb7d7f41fd98f5537ff865fd59 +msgid "When the next iteration of the loop will occur." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.__call__:1 +#: a9bf7898d326412dad82fa5a15f28684 +msgid "|coro|" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.__call__:3 +#: c3c46c7036f341b1b90e0abea8f5f616 +msgid "Calls the internal callback that the task holds." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.__call__:8 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.restart:9 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.start:4 +#: f99f14954e59457eaabda6d178089525 +#: 0eea72ae5aa84c54b46185aa5c361739 +#: 376b8508bb68448e9350e524f6d32325 +msgid "The arguments to use." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.__call__:10 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.restart:11 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.start:6 +#: 1da985900f1b4aed8d9b0c3917920ca7 +#: 1906741e1b214e448dd86dbd7128b436 +#: 185f83c525344b5fb287ea076b7886c5 +msgid "The keyword arguments to use." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.__call__:12 +#: 13e340d01db24b0eaf05daf96be094de +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.start:1 +#: 921266d2dbea49ed8cf049cea79b9eec +msgid "Starts the internal task in the event loop." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.start:8 +#: 619644ebbe9a4476af9a5564d1028373 +msgid "A task has already been launched and is running." +msgstr "" + +#: ../../ext/tasks/index.rst:0 +#: cf40520758d644df9ddec49a8aa57320 +#: f20f33b463e44af88836838ef51a6e54 +msgid "Returns" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.start:10 +#: 2de78bd7b1a447518ddece14601b9e87 +msgid "The task that has been created." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.start:11 +#: e309e5aef21247378016668a451c034d +msgid ":class:`asyncio.Task`" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.stop:1 +#: b0ed2c9ed3794b04aa76ffa817151a2d +msgid "Gracefully stops the task from running." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.stop:3 +#: 728c248aab564a90a3260107d51aba61 +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.stop:10 +#: 455bbbc49062472e84be47a8520c7a7e +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.stop:14 +#: 3adfd1fe09014389a8d77c57bc6a9a33 +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.cancel:1 +#: 3a18cece246a4010a6ab25de921042cc +msgid "Cancels the internal task, if it is running." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.add_exception_type:16 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.cancel:4 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:29 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.restart:13 +#: cc431f5256bc4e699afe36a16bb35452 +#: 5871f9579cb5482a9eb81da12f4cdd26 +#: 2efbe31b3fd64b6eacee66fb02b272aa +#: a83424395d0f4d8d8ebfd708aebfb3b9 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.restart:1 +#: a7de1ec471ef4af788957432e6df3502 +msgid "A convenience method to restart the internal task." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.restart:5 +#: f8b7b414464243bb80406dcbb475f87b +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.add_exception_type:1 +#: 327d247dc3704dcca9f385d5d879e03c +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.add_exception_type:3 +#: d0ccc7fae84244f58ab340407c73bbf1 +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.add_exception_type:7 +#: 979bf5b73dcf4870a3d33b8e994c371d +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.add_exception_type:11 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.remove_exception_type:4 +#: d46fb346a0d249eebdb303ea7b661ab3 +#: 162db15291784b0fa4b3654019ca5aa4 +msgid "An argument list of exception classes to handle." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.add_exception_type:14 +#: 5fb93a77f12e4138a319bd0fa837a848 +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.clear_exception_types:1 +#: 9567edfad8a444f6a38c8cd8ad6697dd +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.clear_exception_types:7 +#: 714a51591f9143eab9a0a994136f1368 +msgid "This operation obviously cannot be undone!" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.remove_exception_type:1 +#: f0710a79660c4be0a5d577ed8a840729 +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.remove_exception_type:7 +#: 4ca4d3d9ff2346e2a6b79c8ed24ef34c +msgid "Whether all exceptions were successfully removed." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.remove_exception_type:8 +#: afcf8b92eb0a4e10990054ad284c53d7 +msgid ":class:`bool`" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.get_task:1 +#: e1d9e16237bb4547af60a9877b90b088 +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.get_task:4 +#: 260dd2e1b8ad4da5a5a7f29ab8f540ef +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.is_being_cancelled:1 +#: 9f7395681a764732af43ed770788b329 +msgid "Whether the task is being cancelled." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.is_being_cancelled:4 +#: ca525c4cd84243e7a6954afd8c4177ca +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.failed:1 +#: b07983af01e44e859cff333049533f23 +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.is_running:1 +#: afea19295c07476b9c661c3c4877faa0 +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:1 +#: 83530989bb114f24b7e77d873f86ceff +msgid "Changes the interval for the sleep time." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:6 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:5 +#: c79687228d5f4b14a5b5cf8eedf1d2f2 +#: 9d539eda63744ec18b6422108e8dcc3f +msgid "The number of seconds between every iteration." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:9 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:8 +#: 643036f81e8548148226f98ad662f662 +#: faab724401534ba891a54abd1063b632 +msgid "The number of minutes between every iteration." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:12 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:11 +#: 6e09adb27be8418588dfd743e748f717 +#: 25e739b47679456d9706cd47304e9978 +msgid "The number of hours between every iteration." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:15 +#: 5c6fb443b2604b33af94b201f8b258d8 +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:15 +#: 6224d70d5fda4bd78858977a37bf9607 +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:23 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:22 +#: b3b725baac894dc4aec2325b26106b6f +#: 318ff42090a54ee6ba110b06461a5d2e +msgid "Duplicate times will be ignored, and only run once." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:26 +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:40 +#: d34550bdeb504b4ba94cd33934a387ac +#: b9bff9f275424b10b9b4b4a745dc7f96 +msgid "An invalid value was given." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.Loop.change_interval:27 +#: 622a6c84602644b581053d78b1619f3a +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:1 +#: d1cde6f36bb94fa8a109a7406e99305c +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:14 +#: 2730a5b0e80a4bb78a3110623b108393 +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:14 +#: 4957f25f5de04866a15143387272931f +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:18 +#: e4cdfd5e2c074237adb1bc9479a240c4 +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:27 +#: c959854a17704c0c9357e7e7922da117 +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:31 +#: 3adeed780b7b4670b41253cc6354e85a +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:36 +#: 7e644a647eaa4981aad624c207683f5a +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:41 +#: 1b6f0ce5942646378838dbe0ab4fe0a0 +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "" + +#: ../../../discord/ext/tasks/__init__.py:docstring of discord.ext.tasks.loop:43 +#: 3dd1e6ebb48849edb09bcd60b72c860c +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr "" diff --git a/docs/build/locales/faq.pot b/docs/build/locales/faq.pot new file mode 100644 index 0000000000..e1acf40393 --- /dev/null +++ b/docs/build/locales/faq.pot @@ -0,0 +1,527 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../faq.rst:7 +#: 42c694dc6243417398dfda77b5d62118 +msgid "Frequently Asked Questions" +msgstr "" + +#: ../../faq.rst:9 +#: aadc6d39fd624f2a9caf5a3afaed39f7 +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "" + +#: ../../faq.rst:14 +#: f1deeae5e8ec4fa1a960f38a3506f17e +msgid "Coroutines" +msgstr "" + +#: ../../faq.rst:16 +#: 0d979a5f910e4b458a5e259f76d88293 +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "" + +#: ../../faq.rst:19 +#: 73708e0cc4d54d139990aafd94812778 +msgid "What is a coroutine?" +msgstr "" + +#: ../../faq.rst:21 +#: 1e95db0d82644800b67bcc3db6e722a3 +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "" + +#: ../../faq.rst:26 +#: ffd553a66e4f4313b68911d1727daed8 +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "" + +#: ../../faq.rst:29 +#: 5e4c81ff3a0d48aca229db1d69f5868b +msgid "Where can I use ``await``\\?" +msgstr "" + +#: ../../faq.rst:31 +#: efa3ec603fe54b8fab857ce490ec3cb6 +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "" + +#: ../../faq.rst:34 +#: c826e0a3d9684b32be75af0a16e6c9e0 +msgid "What does \"blocking\" mean?" +msgstr "" + +#: ../../faq.rst:36 +#: f740f2b4ae774915aa7baafaa04b69f4 +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "" + +#: ../../faq.rst:41 +#: 87e4373c7de24a56af1623cc126c63f1 +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "" + +#: ../../faq.rst:45 +#: 0f6c774e82c54d809d7eab2e5343db1f +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "" + +#: ../../faq.rst:54 +#: b4f3d4ffd28b4499abc2b803cceef267 +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "" + +#: ../../faq.rst:59 +#: e745924d9a314b659d522d7e2908f735 +msgid "Consider the following example: ::" +msgstr "" + +#: ../../faq.rst:75 +#: 75b3be6463eb414996f8e998c3901719 +msgid "General" +msgstr "" + +#: ../../faq.rst:77 +#: 486e6101fbaf473ca14a3f2a2d156634 +msgid "General questions regarding library usage belong here." +msgstr "" + +#: ../../faq.rst:80 +#: 61cea3fbaefe441589ee75c6ef47044e +msgid "Where can I find usage examples?" +msgstr "" + +#: ../../faq.rst:82 +#: 75110bb3b99547c4a0785fa8b5306634 +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "" + +#: ../../faq.rst:86 +#: 4debeae373084131a5142dda06bdf003 +msgid "How do I set the \"Playing\" status?" +msgstr "" + +#: ../../faq.rst:88 +#: c1ed0473c08a4f2d84bfe7c3c0668879 +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "" + +#: ../../faq.rst:90 +#: ed575ddcf47c4421a518efbfab76cdcf +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "" + +#: ../../faq.rst:94 +#: 205690eee5334303a093ae89a20b2115 +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "" + +#: ../../faq.rst:96 +#: 1e3e9fad12604c21b0f70d73f8b72520 +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "" + +#: ../../faq.rst:98 +#: 4bcfe431e4b94a3bbb4f442963b89f41 +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "" + +#: ../../faq.rst:101 +#: e078b8a7823f45e5bb41baca9e0c9c88 +msgid ":class:`Game`" +msgstr "" + +#: ../../faq.rst:102 +#: 60eaac3fd0ec4801ae0764d3422c333c +msgid ":class:`Streaming`" +msgstr "" + +#: ../../faq.rst:104 +#: 53c37fa6b2ff42e6bb7ab64e48bdcfeb +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "" + +#: ../../faq.rst:113 +#: 445f9e722bfe4fc5bbf9640c49fbcbc5 +msgid "How do I send a message to a specific channel?" +msgstr "" + +#: ../../faq.rst:115 +#: fed233889a0040e3a7044530689843b4 +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "" + +#: ../../faq.rst:121 +#: efdd5354470e487c8e4a4ededb220e73 +msgid "How do I send a DM?" +msgstr "" + +#: ../../faq.rst:123 +#: 7c73470058c540b7b6211dde4dd78c89 +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "" + +#: ../../faq.rst:128 +#: d942a2a29c834b23a7228600a3ac8947 +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "" + +#: ../../faq.rst:133 +#: dd32f32169e44c28840bcc496597f50e +msgid "How do I get the ID of a sent message?" +msgstr "" + +#: ../../faq.rst:135 +#: 0537432c7b8c475e8dd7fcd295387b35 +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr "" + +#: ../../faq.rst:142 +#: d5d5efa3a769462896d5f4ae71592c82 +msgid "How do I upload an image?" +msgstr "" + +#: ../../faq.rst:144 +#: a27fec8be055451191c60ff0dac0389e +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "" + +#: ../../faq.rst:146 +#: ab655cc9b8db425c8a9883536ae60fd7 +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "" + +#: ../../faq.rst:149 +#: b581efc9510c4249a68da678b8f19a5a +msgid "If you want to upload an image it's as simple as: ::" +msgstr "" + +#: ../../faq.rst:153 +#: daff6be6e19b4749a1021c8240a8c2c6 +msgid "If you have a file-like object you can do as follows: ::" +msgstr "" + +#: ../../faq.rst:158 +#: c3b8713a8aef46fda35e6ac17b5e32d0 +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "" + +#: ../../faq.rst:166 +#: 15d211e0a15e4e9fb1ca3873ea167290 +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "" + +#: ../../faq.rst:183 +#: 5cbb9695485342d8ad7cb81efe8a1c9d +msgid "How can I add a reaction to a message?" +msgstr "" + +#: ../../faq.rst:185 +#: a465b71cb0bb4d93a0b93a90d4a5908e +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "" + +#: ../../faq.rst:187 +#: 5945a133b4f04ee2a5756ad1d92a69ea +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "" + +#: ../../faq.rst:189 +#: 4b2c00f729364d54ae46abe524019f69 +msgid "``'👍'``" +msgstr "" + +#: ../../faq.rst:190 +#: a16f06193ba143b7bf99419f710cc7b3 +msgid "``'\\U0001F44D'``" +msgstr "" + +#: ../../faq.rst:191 +#: 3b675c057f77434183fe3ba30d93d2bf +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "" + +#: ../../faq.rst:193 +#: ../../faq.rst:209 +#: ../../faq.rst:285 +#: ../../faq.rst:301 +#: ../../faq.rst:321 +#: d619f977a1fc4114ae22961529c04ae9 +#: 7466bd3209ed4da6a1db6c319e409d98 +#: 8a59ed4e66c942a0abc4d59c6b33ad77 +#: 4af31f34d79f4b15bdcd9f9c0ecb638d +#: 2ac40c17e7e146adaf2e1882a0895624 +msgid "Quick example: ::" +msgstr "" + +#: ../../faq.rst:199 +#: 50d17ed090ff4403a93ddb3e8e6fcf2c +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "" + +#: ../../faq.rst:202 +#: 83b6da571d72418b976c492e3fe88640 +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "" + +#: ../../faq.rst:206 +#: 2025e4eb563846b6ab9ca3c36bfbaf22 +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "" + +#: ../../faq.rst:226 +#: 8348ea888c9c4f998ce1b608a36687ab +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "" + +#: ../../faq.rst:228 +#: 31fd3ba1351f47edaf088f8a1ca132d0 +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "" + +#: ../../faq.rst:232 +#: 3a6dc9b3a9e3440eb71e0ebd4f935de7 +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "" + +#: ../../faq.rst:237 +#: c759400dc1344921970c74fdf5a861e2 +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "" + +#: ../../faq.rst:252 +#: a29ad71864ee45478c2585ea1682ce88 +msgid "How do I run something in the background?" +msgstr "" + +#: ../../faq.rst:254 +#: fc7a63eea1d941e0ba8fc931ce98d69b +msgid "`Check the background_task.py example. `_" +msgstr "" + +#: ../../faq.rst:257 +#: e123c76a03bc4bba94c4ea7823059d30 +msgid "How do I get a specific model?" +msgstr "" + +#: ../../faq.rst:259 +#: c6ea38dff8ef49dbb15674cda4f76fee +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "" + +#: ../../faq.rst:262 +#: df8275f393d74fd2b8aecc522b3b028d +msgid ":meth:`Client.get_channel`" +msgstr "" + +#: ../../faq.rst:263 +#: 1b0bd9baafff48ab8d9b51392f87cb88 +msgid ":meth:`Client.get_message`" +msgstr "" + +#: ../../faq.rst:264 +#: a4fdecfa549c4af29c85a2ac6af0adb8 +msgid ":meth:`Client.get_guild`" +msgstr "" + +#: ../../faq.rst:265 +#: e8a1b227e0bc4c4ca6ecab9de950fa39 +msgid ":meth:`Client.get_user`" +msgstr "" + +#: ../../faq.rst:266 +#: fa1ef088ffd649e7be0756077ebb5204 +msgid ":meth:`Client.get_emoji`" +msgstr "" + +#: ../../faq.rst:267 +#: ce6bba09a863412085379af1b86f43f4 +msgid ":meth:`Guild.get_member`" +msgstr "" + +#: ../../faq.rst:268 +#: cdb641bf33ca4081af71f6fbab38c7ef +msgid ":meth:`Guild.get_channel`" +msgstr "" + +#: ../../faq.rst:269 +#: 52c8ef2610ed40df9d821bd9b72f52c0 +msgid ":meth:`Guild.get_role`" +msgstr "" + +#: ../../faq.rst:271 +#: 4432c4bdbd43488497d53d09fb757cea +msgid "The following use an HTTP request:" +msgstr "" + +#: ../../faq.rst:273 +#: c33931c8a1d94df2977b7d2400e795ff +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr "" + +#: ../../faq.rst:274 +#: 6c4aeb1c43744304964e174c90155da8 +msgid ":meth:`Client.fetch_user`" +msgstr "" + +#: ../../faq.rst:275 +#: 61dbda6f00104881bebe25d22bd0b9b6 +msgid ":meth:`Client.fetch_guilds`" +msgstr "" + +#: ../../faq.rst:276 +#: 82be9a6851bb47969a025ac8a83842cd +msgid ":meth:`Client.fetch_guild`" +msgstr "" + +#: ../../faq.rst:277 +#: 22c47fa480604e00a1331d55158290d6 +msgid ":meth:`Guild.fetch_emoji`" +msgstr "" + +#: ../../faq.rst:278 +#: 280a399aea224f21b4982931f9634884 +msgid ":meth:`Guild.fetch_emojis`" +msgstr "" + +#: ../../faq.rst:279 +#: 880bae3974c640258ffbc8c38ee6b023 +msgid ":meth:`Guild.fetch_member`" +msgstr "" + +#: ../../faq.rst:282 +#: 64a069b8f1fc43fdb461eb1f0b6353cb +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "" + +#: ../../faq.rst:296 +#: 117011a3c921470791e0fb9ae1a99887 +msgid "How do I make a web request?" +msgstr "" + +#: ../../faq.rst:298 +#: a81d38db11e34929840d202e3e39e014 +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "" + +#: ../../faq.rst:308 +#: f7fcd1f2851748b496f550b00027a817 +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "" + +#: ../../faq.rst:311 +#: 33bfccbec5e44bd8875eb5535d5c4ba7 +msgid "How do I use a local image file for an embed image?" +msgstr "" + +#: ../../faq.rst:313 +#: 4ac20ca08166409b95cd618f3a9d247f +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "" + +#: ../../faq.rst:316 +#: 5a4543d51c054078a317ba9eb73ece9b +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "" + +#: ../../faq.rst:329 +#: cea3d47022ad45399532475aed28dad2 +msgid "Is there an event for audit log entries being created?" +msgstr "" + +#: ../../faq.rst:331 +#: d54188f6cfa34ff5b4f3cb79d04113eb +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "" + +#: ../../faq.rst:334 +#: af9b163a1a404649b60bc68e4aa18658 +msgid "Commands Extension" +msgstr "" + +#: ../../faq.rst:336 +#: f6b5f936ec2246b3b2f804b9f0228f76 +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "" + +#: ../../faq.rst:339 +#: 60e1562627864406bfd930e966f3834b +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "" + +#: ../../faq.rst:341 +#: eb6e93a1f5a745df9633622c9c43befd +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "" + +#: ../../faq.rst:350 +#: 3d9bcd5624e048a095c6660f92687fb8 +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "" + +#: ../../faq.rst:360 +#: a7c7415a26b048a2a5f6604066be146a +msgid "Why do my arguments require quotes?" +msgstr "" + +#: ../../faq.rst:362 +#: 86911130df094c728d135487c8732c02 +msgid "In a simple command defined as: ::" +msgstr "" + +#: ../../faq.rst:368 +#: 1c0677bdf38b4842829596fafcbef588 +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "" + +#: ../../faq.rst:375 +#: 200e58391f9f4db0a074373036d54117 +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "" + +#: ../../faq.rst:378 +#: c4f3a0dc111f45358fccaa11113f345f +msgid "How do I get the original ``message``\\?" +msgstr "" + +#: ../../faq.rst:380 +#: 9fe189d10192426288f5ea7ef96c203e +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "" + +#: ../../faq.rst:383 +#: ../../faq.rst:395 +#: 8a369aaa0965425abecf4147f8627866 +#: 2bca210db4524a3dab85438e7d12f2b3 +msgid "Example: ::" +msgstr "" + +#: ../../faq.rst:390 +#: fe8cf520d18b47a6bc64e350dced6b0b +msgid "How do I make a subcommand?" +msgstr "" + +#: ../../faq.rst:392 +#: e03e295bf8864bb3954ff5b558e7aae0 +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "" + +#: ../../faq.rst:406 +#: 293c6bec61af42d7803ffc3d3ab42a5a +msgid "This could then be used as ``?git push origin master``." +msgstr "" diff --git a/docs/build/locales/index.pot b/docs/build/locales/index.pot new file mode 100644 index 0000000000..ea2a5a7561 --- /dev/null +++ b/docs/build/locales/index.pot @@ -0,0 +1,191 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../index.rst:56 +#: ../../index.rst:60 +#: +#: 1ae15d13e49e44768f60bb75339fb69c +msgid "Extensions" +msgstr "" + +#: ../../index.rst:76 +#: ../../index.rst:80 +#: +#: 30bc87e216894f4ca6d37b14ef86b21a +msgid "Meta" +msgstr "" + +#: ../../index.rst:7 +#: 7fc8556a3c244b458a25c25a5ec92149 +msgid "Welcome to Pycord" +msgstr "" + +#: ../../index.rst:12 +#: 4ad40217636e4ea08273187545470d23 +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "" + +#: ../../index.rst:15 +#: b378fc99d4c141dd97f197490dde92ab +msgid "**Features:**" +msgstr "" + +#: ../../index.rst:17 +#: 00058e2c4cc84c8ab75c1f6d7915c284 +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "" + +#: ../../index.rst:18 +#: ba4ca36f397c470fa8c8e234f2c88d3f +msgid "Sane rate limit handling that prevents 429s" +msgstr "" + +#: ../../index.rst:19 +#: 37d28cc78859419a8292b5090a8efac4 +msgid "Command extension to aid with bot creation" +msgstr "" + +#: ../../index.rst:20 +#: 556e9957abda4f25a3d69dee87f1837d +msgid "Easy to use with an object oriented design" +msgstr "" + +#: ../../index.rst:21 +#: 63f872203a0b43b6b3b684ece5914978 +msgid "Optimised for both speed and memory" +msgstr "" + +#: ../../index.rst:24 +#: 2c529eccd4504d0e86c33655ca4ae1a3 +msgid "Getting started" +msgstr "" + +#: ../../index.rst:26 +#: 50a6a38e25a64cf6ba6381a0ae25e90a +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "" + +#: ../../index.rst:28 +#: 92ba20faa97b437f8261d25de1b656a3 +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "" + +#: ../../index.rst:29 +#: f9e28131715c4adebadaf8a6ccf4f55b +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "" + +#: ../../index.rst:30 +#: 77536c2f950248ee8fa18138f87209a4 +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "" + +#: ../../index.rst:33 +#: f9c95f56efb342749419b9eeb721f4ea +msgid "Getting help" +msgstr "" + +#: ../../index.rst:35 +#: d1616e0cba47453b9c703e0a8b07058e +msgid "If you're having trouble with something, these resources might help." +msgstr "" + +#: ../../index.rst:37 +#: 9177146fde574ce68ecdeaea6fca6e28 +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "" + +#: ../../index.rst:38 +#: f25dd5b1ebe841e3b8cd1ab6172faf6f +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "" + +#: ../../index.rst:39 +#: e606ff613d8548c59c9ca71612631ded +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "" + +#: ../../index.rst:40 +#: d89cb6709ae14999b87f6d88c57e64c3 +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "" + +#: ../../index.rst:43 +#: 09f8c18f270041028f7b6f370dd5d3fd +msgid "Manuals" +msgstr "" + +#: ../../index.rst:45 +#: ed1dadd279c6469a9a1403832b305b90 +msgid "These pages go into great detail about everything the API can do." +msgstr "" + +#: ../../index.rst:48 +#: 4691c3605db047e498071d6a80fce420 +msgid "Core API" +msgstr "" + +#: ../../index.rst:58 +#: 2920375629e14ee1891696ce1bc731b7 +msgid "These extensions help you during development when it comes to common tasks." +msgstr "" + +#: ../../index.rst:70 +#: 1ef1dffc6e3842f6bdcc182b12d3dc72 +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr "" + +#: ../../index.rst:71 +#: 29fc201ddcdd4490a1e82730319fb2c1 +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr "" + +#: ../../index.rst:72 +#: 2c32c8ad6b5344bfb22eab4dc65b2c14 +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr "" + +#: ../../index.rst:73 +#: b4294d6dd2fd4cceac15a54b6be747b8 +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr "" + +#: ../../index.rst:78 +#: 773f591cbcf94787aca8dd94e5e8d039 +msgid "If you're looking for something related to the project itself, it's here." +msgstr "" + +#: ../../index.rst:90 +#: da2f2c3d8bed495b8fe6f80aaea8d710 +msgid ":doc:`changelog` - The changelog for the library." +msgstr "" + +#: ../../index.rst:91 +#: 0e9ae46626d24e70acd686105a1dc885 +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr "" + +#: ../../index.rst:92 +#: aafdb614bd4a4f07bbc4219638635ab1 +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr "" + +#: ../../index.rst:93 +#: 0e9145aa11f846389286e01855c75217 +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr "" diff --git a/docs/build/locales/installing.pot b/docs/build/locales/installing.pot new file mode 100644 index 0000000000..128ddc95d8 --- /dev/null +++ b/docs/build/locales/installing.pot @@ -0,0 +1,162 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../installing.rst:8 +#: b987cf7921b843929fe5cce90461619d +msgid "Installing Pycord" +msgstr "" + +#: ../../installing.rst:10 +#: ff6116c1f1bd4a8ea4084082816c256f +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "" + +#: ../../installing.rst:14 +#: 99384c0e85ae44dfb29c6ffd64d07c15 +msgid "Prerequisites" +msgstr "" + +#: ../../installing.rst:16 +#: 45a4a81029114e39967f1a217892cee4 +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "" + +#: ../../installing.rst:23 +#: 3315ef6314374d80b289a31a9319565c +msgid "Installing" +msgstr "" + +#: ../../installing.rst:27 +#: 3bfcb21ea1394d478638fa54953b05af +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "" + +#: ../../installing.rst:31 +#: d3de67df16fb4a36a5a1bd15ad340bb0 +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "" + +#: ../../installing.rst:35 +#: bfb05c0721a546f1bd0444d6eedcb567 +msgid "You can get the library directly from PyPI: ::" +msgstr "" + +#: ../../installing.rst:39 +#: 7dfc0ffce098447881eddb3cbdcd90bd +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "" + +#: ../../installing.rst:44 +#: e815f26d5d194fbeb3b185e9960f01a0 +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "" + +#: ../../installing.rst:55 +#: bd4a16413b354b5f849723217b8c9da6 +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "" + +#: ../../installing.rst:59 +#: b3effdad7bf24b5387a42b48c1eea265 +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "" + +#: ../../installing.rst:61 +#: 874d8e468b3c425b892c4bbe45c64165 +msgid "`libffi `_" +msgstr "" + +#: ../../installing.rst:62 +#: 15d34551532b42cbbfcce1f27c282ac7 +msgid "`libnacl `_" +msgstr "" + +#: ../../installing.rst:63 +#: d4350b9dc07b4c2d9ed7155d3229cac1 +msgid "`python3-dev `_" +msgstr "" + +#: ../../installing.rst:65 +#: 133137400c01499f9368503dab246762 +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "" + +#: ../../installing.rst:71 +#: 647fb6f3c4294493bf010cc4b38918ae +msgid "Remember to check your permissions!" +msgstr "" + +#: ../../installing.rst:74 +#: 1505dc98348743daa96c3e2a8bb4e35f +msgid "Virtual Environments" +msgstr "" + +#: ../../installing.rst:76 +#: 2a79ff807f0440f9b29b38e5e8f34fe7 +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "" + +#: ../../installing.rst:81 +#: 2707c58339d8492cb4643fde3924e0c4 +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "" + +#: ../../installing.rst:83 +#: b4a38a361f9d4b029b782bc0991071f1 +msgid "However, for the quick and dirty:" +msgstr "" + +#: ../../installing.rst:85 +#: 875aa9044a994c748e89365a4319d53d +msgid "Go to your project's working directory:" +msgstr "" + +#: ../../installing.rst:92 +#: d3ee92e529f5468d861804a69cf06872 +msgid "Activate the virtual environment:" +msgstr "" + +#: ../../installing.rst:98 +#: 1fe5cd4ed06d4dd0bdc9c107663b7623 +msgid "On Windows you activate it with:" +msgstr "" + +#: ../../installing.rst:104 +#: fd63a39a2e324067bff700957152f4a8 +msgid "Use pip like usual:" +msgstr "" + +#: ../../installing.rst:110 +#: 4b0ca73ad69c4a339a72a3dd4405c3ef +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "" + +#: ../../installing.rst:113 +#: f05aab80a33a45088869a4951f8eff63 +msgid "Basic Concepts" +msgstr "" + +#: ../../installing.rst:115 +#: 122378e2443b4f5e9c3109ad7e84a78c +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "" + +#: ../../installing.rst:119 +#: 24eaab1e93fb4abc8f263c716591e584 +msgid "A quick example to showcase how events work:" +msgstr "" diff --git a/docs/build/locales/intents.pot b/docs/build/locales/intents.pot new file mode 100644 index 0000000000..7e40f3128b --- /dev/null +++ b/docs/build/locales/intents.pot @@ -0,0 +1,392 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../intents.rst:8 +#: 75e14bb6db424110a692aa2cd4639e74 +msgid "A Primer to Gateway Intents" +msgstr "" + +#: ../../intents.rst:10 +#: 12572facd77841d0a3f7bd1e9884b154 +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "" + +#: ../../intents.rst:12 +#: 5a94afb1d1a1416989b479d118f6a4a5 +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "" + +#: ../../intents.rst:14 +#: 1cfd25d23d9f4e8491e82d8bb9b68e85 +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "" + +#: ../../intents.rst:17 +#: 0d970b5b7ab64fccbaaee82e527c2a3c +msgid "What intents are needed?" +msgstr "" + +#: ../../intents.rst:19 +#: 122975cc28fd4dab917064a2f7ccebff +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "" + +#: ../../intents.rst:21 +#: a65b273def1046c7b65710253bad3f0b +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "" + +#: ../../intents.rst:37 +#: e934525a0f6645da864f9b80eb9ea2ed +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "" + +#: ../../intents.rst:39 +#: c4ad8729a94941c3b16889552f5f9209 +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "" + +#: ../../intents.rst:58 +#: f9bc373e5fcb4379ac7b5af6226d2549 +msgid "Privileged Intents" +msgstr "" + +#: ../../intents.rst:60 +#: 084441efe6e14d238bc031fbb2077af6 +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "" + +#: ../../intents.rst:62 +#: ba192e3588fd436991ddc6df5a0be29c +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "" + +#: ../../intents.rst:64 +#: 7f9e6a87118d4705a72fdf89a9e622e9 +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "" + +#: ../../intents.rst:65 +#: 240499007567459bb815409d6a108b33 +msgid "Navigate to the `application page `_." +msgstr "" + +#: ../../intents.rst:66 +#: 6800ad0726084ce5825c2afe9909a5b6 +msgid "Click on the bot you want to enable privileged intents for." +msgstr "" + +#: ../../intents.rst:67 +#: 676cd6606ae849a9adf0c09ac3e14a7a +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "" + +#: ../../intents.rst:69 +#: 65ddb4294bc34218ba019def7b995202 +msgid "The bot tab in the application page." +msgstr "" + +#: ../../intents.rst:72 +#: 57a29f0a7a764de69acc3572872e2162 +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "" + +#: ../../intents.rst:74 +#: 5251197e52da45ee88ae2e853d6e00eb +msgid "The privileged gateway intents selector." +msgstr "" + +#: ../../intents.rst:79 +#: 9c9f674714544275a3c7370700b19f52 +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "" + +#: ../../intents.rst:83 +#: ce58e8892c1f49708cb8427dc7a7665d +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "" + +#: ../../intents.rst:87 +#: 9ad34707ff6d44ff86c8385a25781b07 +msgid "Do I need privileged intents?" +msgstr "" + +#: ../../intents.rst:89 +#: de22bd22b4b5407da0e11b458e9617a5 +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "" + +#: ../../intents.rst:94 +#: ca193929461d41cca72bfe5ada2a8f9f +msgid "Presence Intent" +msgstr "" + +#: ../../intents.rst:96 +#: 0738b2d90ea74556a09a241d4512f0ec +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "" + +#: ../../intents.rst:97 +#: 6d59b966ccb941e1abf45501c67feb64 +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "" + +#: ../../intents.rst:102 +#: 7bf42da8054d486abd314edf3f3bf1d5 +msgid "Member Intent" +msgstr "" + +#: ../../intents.rst:104 +#: efdea7ea60cb48cea740b6c8579a4504 +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "" + +#: ../../intents.rst:105 +#: e5a9f0b0b4314506904e9b9750b73c98 +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "" + +#: ../../intents.rst:106 +#: c5a426a1754b42eda309676e96d5f71a +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "" + +#: ../../intents.rst:107 +#: e72edc0eb2124f3f9183e99d969a6908 +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "" + +#: ../../intents.rst:108 +#: 89f7b1c662b44246a76cf2cfd4e1bf99 +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "" + +#: ../../intents.rst:113 +#: d799b87ac06946669822ed2f80906606 +msgid "Message Content Intent" +msgstr "" + +#: ../../intents.rst:115 +#: 72f6bd3f0926471997e55218bebadebf +msgid "Whether you have a message based command system using ext.commands" +msgstr "" + +#: ../../intents.rst:116 +#: 5df81944be2d480186a72f1051f7b9b3 +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "" + +#: ../../intents.rst:117 +#: 4fd03b2ae3864027b6c2cdbffbe2fd10 +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "" + +#: ../../intents.rst:120 +#: d77097d463244e978486284a0a82b5f8 +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "" + +#: ../../intents.rst:125 +#: f1941c0d0c024fcb88ba0ee6184a7255 +msgid "Member Cache" +msgstr "" + +#: ../../intents.rst:127 +#: e4434f4e55db44869097da7ab2589c35 +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "" + +#: ../../intents.rst:129 +#: 6237e37074dd42ffa6459b8cf0fa60f2 +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "" + +#: ../../intents.rst:131 +#: 8f41bd98a383407e92e095abb76160bd +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "" + +#: ../../intents.rst:133 +#: b098cb161f504488abfcc7e48f268754 +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr "" + +#: ../../intents.rst:134 +#: 23e367c3f1ae47e8b618ac65d105e0be +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr "" + +#: ../../intents.rst:135 +#: 4fee7e831515409f94373f65d89358c4 +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr "" + +#: ../../intents.rst:136 +#: fa4dcc39755a4d229ce380d1577de71a +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr "" + +#: ../../intents.rst:137 +#: 7651c7bab1bb4d0094fbc5aec6c803ec +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "" + +#: ../../intents.rst:138 +#: 4a6277fc39224dd9988f0054738ef3a7 +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "" + +#: ../../intents.rst:140 +#: ee4c86c48cf74afb8e772a5dc97a5636 +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "" + +#: ../../intents.rst:145 +#: fd996e8047be424f9d03c9a477a19b3f +msgid "Retrieving Members" +msgstr "" + +#: ../../intents.rst:147 +#: b7cb072db6df40afa12a82f220fd6d5f +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "" + +#: ../../intents.rst:149 +#: bbdba0ac52d34da493c65f9758c955fc +msgid ":meth:`Guild.query_members`" +msgstr "" + +#: ../../intents.rst:150 +#: 1b5717712ae342f2abf045d036fd0c50 +msgid "Used to query members by a prefix matching nickname or username." +msgstr "" + +#: ../../intents.rst:151 +#: 25ea63172c5d4a16b4380d91d3aab4c2 +msgid "This can also be used to query members by their user ID." +msgstr "" + +#: ../../intents.rst:152 +#: 71a28a7071f14074b993c5b4173362ac +msgid "This uses the gateway and not the HTTP." +msgstr "" + +#: ../../intents.rst:153 +#: 67813d09e1154ebd81e601d7af5108ed +msgid ":meth:`Guild.chunk`" +msgstr "" + +#: ../../intents.rst:154 +#: a6315e5ea5674a2682d2d071c3eb0c1c +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "" + +#: ../../intents.rst:155 +#: 29830a31762842fbb9e025144cdefc05 +msgid ":meth:`Guild.fetch_member`" +msgstr "" + +#: ../../intents.rst:156 +#: bf6d1ac04997420f918c48b490a2d38b +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "" + +#: ../../intents.rst:157 +#: 58bf92443c3449ec83725d931bb66d9b +msgid ":meth:`Guild.fetch_members`" +msgstr "" + +#: ../../intents.rst:158 +#: da5d0a17a5f04b87aee337c3787beb95 +msgid "used to fetch a large number of members through the HTTP API." +msgstr "" + +#: ../../intents.rst:160 +#: f07f8ed6abd84630ad3414dcfcd29f50 +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "" + +#: ../../intents.rst:163 +#: d479cb036ff8488ca3f504749f838150 +msgid "Troubleshooting" +msgstr "" + +#: ../../intents.rst:165 +#: 3cf14432784b4e5ca9943e44ab5ed952 +msgid "Some common issues relating to the mandatory intent change." +msgstr "" + +#: ../../intents.rst:168 +#: a333e864e6ec40fa99a9ad691896a11c +msgid "Where'd my members go?" +msgstr "" + +#: ../../intents.rst:170 +#: daf2dc3baf2b4b0a9deb476725b4f4e1 +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "" + +#: ../../intents.rst:172 +#: bc4a5819d2e4419987f38df992cf6fef +msgid "For example:" +msgstr "" + +#: ../../intents.rst:188 +#: 623319a3fecc44f3bee7330669c72206 +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "" + +#: ../../intents.rst:190 +#: ee80456fc4d5418a83a0bd2970b1eac8 +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "" + +#: ../../intents.rst:192 +#: 0d209c1487054921a620382f0c42d77a +msgid "There are a few solutions to fix this." +msgstr "" + +#: ../../intents.rst:194 +#: 7f126ed28f1a46df8fb6acee617b41b5 +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "" + +#: ../../intents.rst:196 +#: 822035ac34364402a1d6cfe355570145 +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "" + +#: ../../intents.rst:198 +#: a10b1e8e13124c33b7ef00a961e3f5fa +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "" + +#: ../../intents.rst:200 +#: 16e6d47aa0e1453c926396a4d3faf04d +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "" + +#: ../../intents.rst:202 +#: 5e64bebe24f8478d99b4af3ae572b396 +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "" + +#: ../../intents.rst:204 +#: 456af39b458d4c57b7e6ade2540f59b7 +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "" diff --git a/docs/build/locales/logging.pot b/docs/build/locales/logging.pot new file mode 100644 index 0000000000..4592add024 --- /dev/null +++ b/docs/build/locales/logging.pot @@ -0,0 +1,52 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../logging.rst:7 +#: 11eccc080359468a86bef8d45358f539 +msgid "Setting Up Logging" +msgstr "" + +#: ../../logging.rst:9 +#: 369e2bcd67d0413dbca92403fa9b2ff6 +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "" + +#: ../../logging.rst:18 +#: 15f27810b12a4d01bcb0243e98a20df4 +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "" + +#: ../../logging.rst:22 +#: 6bd5cec9518243649ead4496c45f036e +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "" + +#: ../../logging.rst:26 +#: 303ae7d601af46d2bead5ad7ae3a1ab9 +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "" + +#: ../../logging.rst:39 +#: 7ec89923962d4f878759e0a19dfffcc9 +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "" + +#: ../../logging.rst:45 +#: dc5471669f9240fba325278270e16118 +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "" diff --git a/docs/build/locales/migrating_to_v1.pot b/docs/build/locales/migrating_to_v1.pot new file mode 100644 index 0000000000..1701b412ea --- /dev/null +++ b/docs/build/locales/migrating_to_v1.pot @@ -0,0 +1,2565 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../migrating_to_v1.rst:6 +#: 05d2ff2da0bf4a26b3d502e09d78f50e +msgid "Migrating to v1.0" +msgstr "" + +#: ../../migrating_to_v1.rst:8 +#: 08a114e33514430eaac09e99fae0b271 +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "" + +#: ../../migrating_to_v1.rst:11 +#: 3fcb6833d08c48378f58cda01ad7c2c9 +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "" + +#: ../../migrating_to_v1.rst:14 +#: 29d8d0562ff047b6872ce1a4b2292eed +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "" + +#: ../../migrating_to_v1.rst:18 +#: a3a80bf8b8a54fd4a764a3266f73d6bf +msgid "Python Version Change" +msgstr "" + +#: ../../migrating_to_v1.rst:20 +#: 01478e23f1264f16be197f066be1b7c9 +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "" + +#: ../../migrating_to_v1.rst:25 +#: fbcf913efbc2403eb6a6ebbc4ee19855 +msgid "Major Model Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:27 +#: c1ddcfd6e5564ca495d5aab4d29e3eed +msgid "Below are major model changes that have happened in v1.0" +msgstr "" + +#: ../../migrating_to_v1.rst:30 +#: ab7eeee841a345c0a6fc69854509b783 +msgid "Snowflakes are int" +msgstr "" + +#: ../../migrating_to_v1.rst:32 +#: 86f1da0714544984bbc6cb9c9b02d5d1 +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "" + +#: ../../migrating_to_v1.rst:34 +#: ../../migrating_to_v1.rst:254 +#: 726778b710c04e76978dff7b349cf252 +#: 925613332baf474794a7ea8ba3760111 +msgid "Quick example: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:46 +#: 92094b94ad5e4c96bb4103624ff1e7ed +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "" + +#: ../../migrating_to_v1.rst:50 +#: 6bf6aae7d7a24e108f113412fa3c039f +msgid "Server is now Guild" +msgstr "" + +#: ../../migrating_to_v1.rst:52 +#: afd49bf9015d443187ca1a42f24d59a2 +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "" + +#: ../../migrating_to_v1.rst:56 +#: cd47980922e44b96aa22fa8238a42998 +msgid "A list of changes is as follows:" +msgstr "" + +#: ../../migrating_to_v1.rst:59 +#: ../../migrating_to_v1.rst:95 +#: ../../migrating_to_v1.rst:869 +#: 9e94073e377e4f0e982b3de50c7f9206 +#: 6cb5196bb0504400af83d4731274d8be +#: 6b67d4e97b6d4c8694c2e8da96a76517 +msgid "Before" +msgstr "" + +#: ../../migrating_to_v1.rst:59 +#: ../../migrating_to_v1.rst:95 +#: ../../migrating_to_v1.rst:869 +#: eb2dcd846f054ca58906e7e4b49a54c5 +#: a331664e22074b3a87583500ac143465 +#: 0ee0a1495d2d41beaa51cd3784372563 +msgid "After" +msgstr "" + +#: ../../migrating_to_v1.rst:61 +#: 13f32d70cf83477f82296124e4cdcb90 +msgid "``Message.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:61 +#: 848d312489e0445ca918844f862eea2f +msgid ":attr:`Message.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:63 +#: ee989678780a439e8e869ab5863db5a9 +msgid "``Channel.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:63 +#: 903a4bed805f45d2bd606304c5c55ff8 +msgid ":attr:`.GuildChannel.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:65 +#: 21084db1e16941c6a730d938e56f5732 +msgid "``Client.servers``" +msgstr "" + +#: ../../migrating_to_v1.rst:65 +#: ../../migrating_to_v1.rst:233 +#: bf57f40e45224fb6b17b85631e1cd610 +#: c0744923b6ad4866b1d44b17f03192dc +msgid ":attr:`Client.guilds`" +msgstr "" + +#: ../../migrating_to_v1.rst:67 +#: 945daa4c554640b1855029d249c5b8d7 +msgid "``Client.get_server``" +msgstr "" + +#: ../../migrating_to_v1.rst:67 +#: 68cfaa3d9fbe461eb7dfd5fff7c06c5c +msgid ":meth:`Client.get_guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:69 +#: 875c2ef6561f4509b9ff0b5f4f20e0ad +msgid "``Emoji.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:69 +#: 3c37d605a0764fecb6891d6570e0f59c +msgid ":attr:`Emoji.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:71 +#: 29f06211fc3a451080147b3fa1b63ecf +msgid "``Role.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:71 +#: 45a2673f1722437da461561f91d40dc4 +msgid ":attr:`Role.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:73 +#: 96b745ba395d4504a3ddd38f88ec7104 +msgid "``Invite.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:73 +#: fc9f937fe96f42a4a27286ebb0ff422c +msgid ":attr:`Invite.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:75 +#: 5d3f552e24a347648b4ed8d1faa3ec4b +msgid "``Member.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:75 +#: 096b13e7789940b39edb3afc84270347 +msgid ":attr:`Member.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:77 +#: 0314f6751297469f921e125c6e6a0bc8 +msgid "``Permissions.manage_server``" +msgstr "" + +#: ../../migrating_to_v1.rst:77 +#: affd96346b0b4e01bcbde35265580bea +msgid ":attr:`Permissions.manage_guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:79 +#: 5e44ec077a944f84b7e8d3f99ac23868 +msgid "``VoiceClient.server``" +msgstr "" + +#: ../../migrating_to_v1.rst:79 +#: dbdf10d3e3e3429f8c02921f1ca1b843 +msgid ":attr:`VoiceClient.guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:81 +#: 9316c0bac15449e49e73ddb4a78e2fc2 +msgid "``Client.create_server``" +msgstr "" + +#: ../../migrating_to_v1.rst:81 +#: 2d48655041c44ee38f073c15d1f36a9b +msgid ":meth:`Client.create_guild`" +msgstr "" + +#: ../../migrating_to_v1.rst:87 +#: 011af788cddf4c26aa243f725dcdd5e5 +msgid "Models are Stateful" +msgstr "" + +#: ../../migrating_to_v1.rst:89 +#: c999a05b88fe4eedbc6371c77cef842c +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "" + +#: ../../migrating_to_v1.rst:92 +#: e9b15496d50c4ec0a05adf9442bde7a4 +msgid "A list of these changes is enumerated below." +msgstr "" + +#: ../../migrating_to_v1.rst:97 +#: 94e795e1da494a64b0c0bc866ae68c15 +msgid "``Client.add_reaction``" +msgstr "" + +#: ../../migrating_to_v1.rst:97 +#: 8bea368aaa4d4177909d013637a2829d +msgid ":meth:`Message.add_reaction`" +msgstr "" + +#: ../../migrating_to_v1.rst:99 +#: 8db0940f543543059a77cf8df0b81c5d +msgid "``Client.add_roles``" +msgstr "" + +#: ../../migrating_to_v1.rst:99 +#: 9a303369f600474aadc221234b1c1a1c +msgid ":meth:`Member.add_roles`" +msgstr "" + +#: ../../migrating_to_v1.rst:101 +#: fd21c1b2c3e34b429c1cf07bd8756eff +msgid "``Client.ban``" +msgstr "" + +#: ../../migrating_to_v1.rst:101 +#: b6a7d155d4784c9193fad59b72a6ae3a +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr "" + +#: ../../migrating_to_v1.rst:103 +#: 8ea042cb92df473c872e8bd49c658d33 +msgid "``Client.change_nickname``" +msgstr "" + +#: ../../migrating_to_v1.rst:103 +#: ../../migrating_to_v1.rst:171 +#: ../../migrating_to_v1.rst:187 +#: ../../migrating_to_v1.rst:195 +#: ea928f7105be4ba58ae0cf4fafee9a56 +#: aa792784735d4bdba990f4c81103bdf8 +#: de31911786464ca6ba77fd0a83061978 +#: 74f3be9c3add4f368f86a690fc5d1472 +msgid ":meth:`Member.edit`" +msgstr "" + +#: ../../migrating_to_v1.rst:105 +#: 0e56f79feaf942f2b47ef31533e852be +msgid "``Client.clear_reactions``" +msgstr "" + +#: ../../migrating_to_v1.rst:105 +#: c677bd80cb794404a16dd85913b026fd +msgid ":meth:`Message.clear_reactions`" +msgstr "" + +#: ../../migrating_to_v1.rst:107 +#: 405430deafd44706b1d2ccfdc7adffef +msgid "``Client.create_channel``" +msgstr "" + +#: ../../migrating_to_v1.rst:107 +#: 8197239135d4498c987d70feeb74230e +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr "" + +#: ../../migrating_to_v1.rst:109 +#: e078594a079a4fc7afe2da419064f075 +msgid "``Client.create_custom_emoji``" +msgstr "" + +#: ../../migrating_to_v1.rst:109 +#: f2a7d3500a6843ce8571812144dbcdd1 +msgid ":meth:`Guild.create_custom_emoji`" +msgstr "" + +#: ../../migrating_to_v1.rst:111 +#: 8b7d857db2c04131b45dcc292a87350d +msgid "``Client.create_invite``" +msgstr "" + +#: ../../migrating_to_v1.rst:111 +#: a60b083866944e07b48eb011fcded1fd +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr "" + +#: ../../migrating_to_v1.rst:113 +#: 6897002f63c34b1aa54f7db07bcaca52 +msgid "``Client.create_role``" +msgstr "" + +#: ../../migrating_to_v1.rst:113 +#: 725a519d0f244b5da03b8c093fb489cc +msgid ":meth:`Guild.create_role`" +msgstr "" + +#: ../../migrating_to_v1.rst:115 +#: d4ab86d5c94f4605910cea8cf12e4106 +msgid "``Client.delete_channel``" +msgstr "" + +#: ../../migrating_to_v1.rst:115 +#: d0908cd8ea9b403f9d6de25b14807e11 +msgid ":meth:`abc.GuildChannel.delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:117 +#: efd47808372b4129adcb9edaaba93f37 +msgid "``Client.delete_channel_permissions``" +msgstr "" + +#: ../../migrating_to_v1.rst:117 +#: 6b38d46ef27f48cfba916a202e9e100e +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr "" + +#: ../../migrating_to_v1.rst:119 +#: 5c12aa9ffd114e83b757f7a014de636b +msgid "``Client.delete_custom_emoji``" +msgstr "" + +#: ../../migrating_to_v1.rst:119 +#: 9a1c29f1279b41f2b999cb7904b381c2 +msgid ":meth:`Emoji.delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:121 +#: ebf7d015a5b14213a5eaee0813f0ffb1 +msgid "``Client.delete_invite``" +msgstr "" + +#: ../../migrating_to_v1.rst:121 +#: b4e1fb2064484dfabf7352cad2f466e9 +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr "" + +#: ../../migrating_to_v1.rst:123 +#: adc92ae100614899b29e8676b7a1ef5e +msgid "``Client.delete_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:123 +#: 51be51cd47d649ae9efc2cc87a9affb2 +msgid ":meth:`Message.delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:125 +#: 5db9f035ef83430a89b58e8ec64f50be +msgid "``Client.delete_messages``" +msgstr "" + +#: ../../migrating_to_v1.rst:125 +#: 8eb231dcf1534abb83d85ffe5e117d32 +msgid ":meth:`TextChannel.delete_messages`" +msgstr "" + +#: ../../migrating_to_v1.rst:127 +#: 7655a15760eb4237aad379eee0dfe37b +msgid "``Client.delete_role``" +msgstr "" + +#: ../../migrating_to_v1.rst:127 +#: d1111acf427b4f1886208654311f7c6a +msgid ":meth:`Role.delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:129 +#: 9fab1feb27fc4216b4672fb8d6b1c6d4 +msgid "``Client.delete_server``" +msgstr "" + +#: ../../migrating_to_v1.rst:129 +#: b44734280874458eafaaa518cb0ce20f +msgid ":meth:`Guild.delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:131 +#: fcc22c5f49c4431c94ce4b63152e9590 +msgid "``Client.edit_channel``" +msgstr "" + +#: ../../migrating_to_v1.rst:131 +#: ../../migrating_to_v1.rst:169 +#: 93122c34f2a241d5acb80ac8a27f3c4f +#: e04c8bcd4136405b9c220ca7cc7d1e94 +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr "" + +#: ../../migrating_to_v1.rst:133 +#: 7b6e8997079445cb8147f3d3d23e1191 +msgid "``Client.edit_channel_permissions``" +msgstr "" + +#: ../../migrating_to_v1.rst:133 +#: cf899de66e4d48f6a029c40b2d6c2003 +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr "" + +#: ../../migrating_to_v1.rst:135 +#: 5103bd1efa634efb98de457fd1af2c92 +msgid "``Client.edit_custom_emoji``" +msgstr "" + +#: ../../migrating_to_v1.rst:135 +#: 20888f79720b4d519397d484a767dd0d +msgid ":meth:`Emoji.edit`" +msgstr "" + +#: ../../migrating_to_v1.rst:137 +#: 38060dbbe60044ac904147be01829edd +msgid "``Client.edit_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:137 +#: 8dbe5754dd5d4f08839579fe2437035f +msgid ":meth:`Message.edit`" +msgstr "" + +#: ../../migrating_to_v1.rst:139 +#: fae4deadcb5c4faab066509db2b40df8 +msgid "``Client.edit_profile``" +msgstr "" + +#: ../../migrating_to_v1.rst:139 +#: 91cd7eb6ec4a484a929c0065a1c1be12 +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr "" + +#: ../../migrating_to_v1.rst:141 +#: ec1708f42e1b4837b199eb03aa6d0802 +msgid "``Client.edit_role``" +msgstr "" + +#: ../../migrating_to_v1.rst:141 +#: ../../migrating_to_v1.rst:173 +#: 7a3c12cb8dfb41bf955590556e87f472 +#: 2ca2af0b09124e90a2f0d31328f8e1d6 +msgid ":meth:`Role.edit`" +msgstr "" + +#: ../../migrating_to_v1.rst:143 +#: 5c59f45214844d8381809ca387bfc230 +msgid "``Client.edit_server``" +msgstr "" + +#: ../../migrating_to_v1.rst:143 +#: 2db144ee0f7b4fffa9fd39e1ca3238ae +msgid ":meth:`Guild.edit`" +msgstr "" + +#: ../../migrating_to_v1.rst:145 +#: dbee023d8b504910a06bd022ff49933d +msgid "``Client.estimate_pruned_members``" +msgstr "" + +#: ../../migrating_to_v1.rst:145 +#: fd3396dc423045bab0ceca5f4316dd7a +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr "" + +#: ../../migrating_to_v1.rst:147 +#: ../../migrating_to_v1.rst:327 +#: ea5522c34eaf4037834c736733e6c0f5 +#: f8ab0d799f99475cb3ac68107b5033e1 +msgid "``Client.get_all_emojis``" +msgstr "" + +#: ../../migrating_to_v1.rst:147 +#: 3f799da829b84af9b77c1eb7e280d747 +msgid ":attr:`Client.emojis`" +msgstr "" + +#: ../../migrating_to_v1.rst:149 +#: 85a7cbed901245c1a33ff023c25ec644 +msgid "``Client.get_bans``" +msgstr "" + +#: ../../migrating_to_v1.rst:149 +#: b01d0c956dcc43b1a204501308966016 +msgid ":meth:`Guild.bans`" +msgstr "" + +#: ../../migrating_to_v1.rst:151 +#: 35c46218094b4f62bd661e0c8c5c9f39 +msgid "``Client.get_invite``" +msgstr "" + +#: ../../migrating_to_v1.rst:151 +#: 4167a66028c4468698d060ea2c5d2ab3 +msgid ":meth:`Client.fetch_invite`" +msgstr "" + +#: ../../migrating_to_v1.rst:153 +#: fa438a74ea2b486eb04f95af7fa5f014 +msgid "``Client.get_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:153 +#: 5bf6ea90b56a434ab46dc6b403c513ab +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr "" + +#: ../../migrating_to_v1.rst:155 +#: a19cc4a9328042938def362716827d73 +msgid "``Client.get_reaction_users``" +msgstr "" + +#: ../../migrating_to_v1.rst:155 +#: ../../migrating_to_v1.rst:493 +#: 0aeff23f2d644390a344002dc788bf88 +#: 350c6a6c4c384a2b90bb54dedbb75987 +msgid ":meth:`Reaction.users`" +msgstr "" + +#: ../../migrating_to_v1.rst:157 +#: a66f58f3ec2740b6a6a82a49e167c3d7 +msgid "``Client.get_user_info``" +msgstr "" + +#: ../../migrating_to_v1.rst:157 +#: a8a6c6c74f714667b21fd9bc30bc6925 +msgid ":meth:`Client.fetch_user`" +msgstr "" + +#: ../../migrating_to_v1.rst:159 +#: 0a14f4f2c56e49cd8f365edb1f82c378 +msgid "``Client.invites_from``" +msgstr "" + +#: ../../migrating_to_v1.rst:159 +#: 67cdab68e2bb4467a38adcb61049dc23 +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr "" + +#: ../../migrating_to_v1.rst:161 +#: 7c03320da8d242f992b1573330ce8b7d +msgid "``Client.join_voice_channel``" +msgstr "" + +#: ../../migrating_to_v1.rst:161 +#: 0d44d955e09a43b199a05191d5900ba8 +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr "" + +#: ../../migrating_to_v1.rst:163 +#: 27881100eed84bf7b795c126be68f1a6 +msgid "``Client.kick``" +msgstr "" + +#: ../../migrating_to_v1.rst:163 +#: 94e0f7141cda45ae903c35aa6a69c35d +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr "" + +#: ../../migrating_to_v1.rst:165 +#: 3b984ccf21c145a7ad6a39a55f951f37 +msgid "``Client.leave_server``" +msgstr "" + +#: ../../migrating_to_v1.rst:165 +#: cc54c4b806da43aaada0c9bb0aff3fe0 +msgid ":meth:`Guild.leave`" +msgstr "" + +#: ../../migrating_to_v1.rst:167 +#: 46e93cb3d74148509eaba7bcba6d3773 +msgid "``Client.logs_from``" +msgstr "" + +#: ../../migrating_to_v1.rst:167 +#: 9db5389e5ae84620869db55173736111 +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr "" + +#: ../../migrating_to_v1.rst:169 +#: 12d4e4d1daf04ec3ba27607b30bcbf9c +msgid "``Client.move_channel``" +msgstr "" + +#: ../../migrating_to_v1.rst:171 +#: f5b76a01d47a4e5d8031370a4d864786 +msgid "``Client.move_member``" +msgstr "" + +#: ../../migrating_to_v1.rst:173 +#: b9787931f9a0423b97f79701c74670f6 +msgid "``Client.move_role``" +msgstr "" + +#: ../../migrating_to_v1.rst:175 +#: 5c8fdd44558b4ca7a1bff8d6380fa123 +msgid "``Client.pin_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:175 +#: 0c34b268afcc48caaee11aaf50000804 +msgid ":meth:`Message.pin`" +msgstr "" + +#: ../../migrating_to_v1.rst:177 +#: 2d28dfd9a6d64279a5e2b700a3e68bcc +msgid "``Client.pins_from``" +msgstr "" + +#: ../../migrating_to_v1.rst:177 +#: de48b36586f04dbabbbed5b57bdc119c +msgid ":meth:`abc.Messageable.pins`" +msgstr "" + +#: ../../migrating_to_v1.rst:179 +#: 09aeb1072a5644b68615c67361062d68 +msgid "``Client.prune_members``" +msgstr "" + +#: ../../migrating_to_v1.rst:179 +#: 6802632e0c70420aba56713487e598f2 +msgid ":meth:`Guild.prune_members`" +msgstr "" + +#: ../../migrating_to_v1.rst:181 +#: 17170c5bcff34c0e9539a8eea220a74f +msgid "``Client.purge_from``" +msgstr "" + +#: ../../migrating_to_v1.rst:181 +#: d36ebb5d874648cc85d51b970a233a74 +msgid ":meth:`TextChannel.purge`" +msgstr "" + +#: ../../migrating_to_v1.rst:183 +#: 13be010f52b34321918e1696c8383852 +msgid "``Client.remove_reaction``" +msgstr "" + +#: ../../migrating_to_v1.rst:183 +#: 29aa2125f7a34ccfa54c4372872b7f43 +msgid ":meth:`Message.remove_reaction`" +msgstr "" + +#: ../../migrating_to_v1.rst:185 +#: 06fd7f80d1634176804ee99ef6ae311a +msgid "``Client.remove_roles``" +msgstr "" + +#: ../../migrating_to_v1.rst:185 +#: f9648fd1303a4d0aaf94af88c0d1ea8f +msgid ":meth:`Member.remove_roles`" +msgstr "" + +#: ../../migrating_to_v1.rst:187 +#: 4a8077b6aac245ae80a7d0c20ad2eca1 +msgid "``Client.replace_roles``" +msgstr "" + +#: ../../migrating_to_v1.rst:189 +#: 82070de88db3450382a6e8b64b0638b5 +msgid "``Client.send_file``" +msgstr "" + +#: ../../migrating_to_v1.rst:189 +#: ../../migrating_to_v1.rst:191 +#: 21b5cb332c3140118eea23a5db6c5918 +#: 5a9ebc5464ae436a878e4068f6380ee5 +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr "" + +#: ../../migrating_to_v1.rst:191 +#: 44ae95f930be41b6a6594c20c055e7d4 +msgid "``Client.send_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:193 +#: c760774b209f42b1b2d308fde2e7aba5 +msgid "``Client.send_typing``" +msgstr "" + +#: ../../migrating_to_v1.rst:193 +#: 04926c93000d411b812f6983e5f467a5 +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr "" + +#: ../../migrating_to_v1.rst:195 +#: b11c308b2aeb41b287e1cc0bd595959b +msgid "``Client.server_voice_state``" +msgstr "" + +#: ../../migrating_to_v1.rst:197 +#: b1b87fd6d1274c8bb1e5442c9df56101 +msgid "``Client.start_private_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:197 +#: 610cb6f98f2845af9066ca0bde6716fc +msgid ":meth:`User.create_dm`" +msgstr "" + +#: ../../migrating_to_v1.rst:199 +#: a11d9f52701b407d8d2335f74dbbfcea +msgid "``Client.unban``" +msgstr "" + +#: ../../migrating_to_v1.rst:199 +#: 031a1c0155c44f0ca8f9b5132954bc1e +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr "" + +#: ../../migrating_to_v1.rst:201 +#: 5c196c6af2fd45daadf86d1dc9704580 +msgid "``Client.unpin_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:201 +#: 08494bd8ab9c4acb9673ef7581383b31 +msgid ":meth:`Message.unpin`" +msgstr "" + +#: ../../migrating_to_v1.rst:203 +#: d2cf551969f646918ce0e788d35b6e5e +msgid "``Client.wait_for_message``" +msgstr "" + +#: ../../migrating_to_v1.rst:203 +#: ../../migrating_to_v1.rst:205 +#: aeb94dbd878040e18cd6830187c6c850 +#: 202dc8001ca4408aa742db9ad98ce404 +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr "" + +#: ../../migrating_to_v1.rst:205 +#: 4ca6e12c3be449439cfa64b0df3c5e3d +msgid "``Client.wait_for_reaction``" +msgstr "" + +#: ../../migrating_to_v1.rst:207 +#: 28b6320bfed6413d998a266242586173 +msgid "``Client.wait_until_login``" +msgstr "" + +#: ../../migrating_to_v1.rst:207 +#: 5424bd2db4c04063adeb15efa0b596ee +msgid "Removed" +msgstr "" + +#: ../../migrating_to_v1.rst:209 +#: 2b683045f0154326bbe09da63799050c +msgid "``Client.wait_until_ready``" +msgstr "" + +#: ../../migrating_to_v1.rst:209 +#: 969b537044544ccd96e09e7bb393f9a4 +msgid "No change" +msgstr "" + +#: ../../migrating_to_v1.rst:213 +#: b833197c9eda40ceb1f0458d1dbdc1b0 +msgid "Property Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:215 +#: 96fb89d21cfc4269b3340e8bf24c3ff3 +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "" + +#: ../../migrating_to_v1.rst:217 +#: db5e4c126dc6483597ae4b448fd25a01 +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "" + +#: ../../migrating_to_v1.rst:219 +#: 9e67c72b4a5447c1bcdf5fe2e5c844ee +msgid ":meth:`Role.is_default`" +msgstr "" + +#: ../../migrating_to_v1.rst:220 +#: 49bacae9ae944b169775bac1e871de18 +msgid ":meth:`Client.is_ready`" +msgstr "" + +#: ../../migrating_to_v1.rst:221 +#: f1ed0e382f1945588d162fb5af03420f +msgid ":meth:`Client.is_closed`" +msgstr "" + +#: ../../migrating_to_v1.rst:224 +#: ece133f97cff4d0dad36e052438c7a64 +msgid "Dict Value Change" +msgstr "" + +#: ../../migrating_to_v1.rst:226 +#: 7cd0083e51a84abb9055eb5f10b5f4f1 +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "" + +#: ../../migrating_to_v1.rst:228 +#: 8a5302be472945d2b648830639c97007 +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "" + +#: ../../migrating_to_v1.rst:231 +#: 39186001d0b9465fb4fe28855a9402eb +msgid "The following views were changed to a list:" +msgstr "" + +#: ../../migrating_to_v1.rst:234 +#: cb1e36effc2d4f3f89ce30bc609fc2e9 +msgid ":attr:`Client.users` (new in v1.0)" +msgstr "" + +#: ../../migrating_to_v1.rst:235 +#: 4e04941d05bb4c6baf35ec2c3333cde9 +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr "" + +#: ../../migrating_to_v1.rst:236 +#: 64adbb946f4d4c8dab5bd36915a526f9 +msgid ":attr:`Guild.channels`" +msgstr "" + +#: ../../migrating_to_v1.rst:237 +#: e4ff974617fb4c86a225769bec0d2b9c +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr "" + +#: ../../migrating_to_v1.rst:238 +#: 39239d0c77204068bb8730a9672a929b +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr "" + +#: ../../migrating_to_v1.rst:239 +#: e5a4c980d3ed471ea95c02e62c8ab392 +msgid ":attr:`Guild.emojis`" +msgstr "" + +#: ../../migrating_to_v1.rst:240 +#: 5098e9b55b9f4fc4a7456fd18644e798 +msgid ":attr:`Guild.members`" +msgstr "" + +#: ../../migrating_to_v1.rst:243 +#: fc819b1aa6a743ddbf0cb3fc9d8f8380 +msgid "Voice State Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:245 +#: 4208d2bddf8d4a58a07a51fdd2a08b0e +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "" + +#: ../../migrating_to_v1.rst:248 +#: d77f52311c20468597ad6cae9b443580 +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "" + +#: ../../migrating_to_v1.rst:251 +#: 95db5960ec01462d8b943bc47a492b11 +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "" + +#: ../../migrating_to_v1.rst:267 +#: 6db07e90c3b340d28b008cc0078339c8 +msgid "User and Member Type Split" +msgstr "" + +#: ../../migrating_to_v1.rst:269 +#: 5a79efb82b2642fda44762a3c85a558d +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "" + +#: ../../migrating_to_v1.rst:273 +#: 6419a01d88174ef6a777c54e617e0404 +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "" + +#: ../../migrating_to_v1.rst:280 +#: 5bf8ba5e79d54e13b799945973a41880 +msgid "Channel Type Split" +msgstr "" + +#: ../../migrating_to_v1.rst:282 +#: 45a2593f472643d6a19e40a147888513 +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "" + +#: ../../migrating_to_v1.rst:285 +#: dc8f4981304946ff88e31e42f80a2a29 +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "" + +#: ../../migrating_to_v1.rst:287 +#: f550804ce1204cb2b636820acf1af973 +msgid ":class:`TextChannel` for guild text channels." +msgstr "" + +#: ../../migrating_to_v1.rst:288 +#: 8f4c1f0b78cb48889fa2a2d2fc3cc260 +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr "" + +#: ../../migrating_to_v1.rst:289 +#: 19b50d1fe9fb49e59fce3623f1f447ac +msgid ":class:`DMChannel` for DM channels with members." +msgstr "" + +#: ../../migrating_to_v1.rst:290 +#: e6f2c36a649a4de483721010dfb6b395 +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr "" + +#: ../../migrating_to_v1.rst:292 +#: f9f1dcdab18c4ef7b8a1869e026589aa +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "" + +#: ../../migrating_to_v1.rst:294 +#: c16783ba48b64517a3c6fd00e76880e5 +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "" + +#: ../../migrating_to_v1.rst:296 +#: a08dd7257a9a418cbdd428cfe61d8255 +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr "" + +#: ../../migrating_to_v1.rst:297 +#: ab147f4fc32e4a128bd8a3ac4c39cfc5 +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr "" + +#: ../../migrating_to_v1.rst:299 +#: e3e9a8d1db9b472da8d40eb0f0a67f26 +msgid "So to check if something is a guild channel you would do: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:303 +#: b3383f30092b4653a41adedacbf9d65d +msgid "And to check if it's a private channel you would do: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:307 +#: 03625cafc46e403db8b3dc9d11450f0e +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "" + +#: ../../migrating_to_v1.rst:311 +#: 7ac3cf11adc9479c8bf2ad730811c516 +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "" + +#: ../../migrating_to_v1.rst:315 +#: 2d828c5926924c8f86e32794b479d977 +msgid "Miscellaneous Model Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:317 +#: cc198061f9b64c929962944acf543124 +msgid "There were lots of other things added or removed in the models in general." +msgstr "" + +#: ../../migrating_to_v1.rst:319 +#: fd469142924b4fd7a3b4921523036b46 +msgid "They will be enumerated here." +msgstr "" + +#: ../../migrating_to_v1.rst:321 +#: e9404c8e82e3482fab8d708ea362e99a +msgid "**Removed**" +msgstr "" + +#: ../../migrating_to_v1.rst:323 +#: 9462ce20bfef475e93af420b16f85ca2 +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr "" + +#: ../../migrating_to_v1.rst:325 +#: 0cc0d2cfe0da43c493b34b540b4af4a8 +msgid "Use a token and ``bot=False``." +msgstr "" + +#: ../../migrating_to_v1.rst:329 +#: 1390977a01694002a12fd426db34ce2f +msgid "Use :attr:`Client.emojis` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:331 +#: d40f8bd32e1e49ab90022f5188a954b2 +msgid "``Client.messages``" +msgstr "" + +#: ../../migrating_to_v1.rst:333 +#: d72282cc08364496b2ca23a1c5c981b7 +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:335 +#: 36216d86592e4d5d88a6c5964e07858d +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "" + +#: ../../migrating_to_v1.rst:337 +#: 612b385adaf749f1a4f052e1dab81603 +msgid "Use :meth:`Client.wait_for` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:339 +#: aa636de7e20142d993f176264467d788 +msgid "``Channel.voice_members``" +msgstr "" + +#: ../../migrating_to_v1.rst:341 +#: f2ddce14d7014b77aa99274280ab8085 +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:343 +#: c7cbd4c6cc2e44ffbb1e374f16e3ca14 +msgid "``Channel.is_private``" +msgstr "" + +#: ../../migrating_to_v1.rst:345 +#: af2e0b9e82fe451d8e968fd44078eecc +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:346 +#: 8ff877a7d0494dc6885840c9a9af926d +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "" + +#: ../../migrating_to_v1.rst:348 +#: 2c690055e6e84005bc23d6e022f6d0fe +msgid "``Client.accept_invite``" +msgstr "" + +#: ../../migrating_to_v1.rst:350 +#: 3ed5021249ef44a3aaf415eb444809fd +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "" + +#: ../../migrating_to_v1.rst:352 +#: 2f00496bbdbb43b5bb4f3c2959b5a36c +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "" + +#: ../../migrating_to_v1.rst:354 +#: d9cc44a13d7d4d68b6284345d21ad0b2 +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "" + +#: ../../migrating_to_v1.rst:357 +#: cc7ab25609f64d84ad2e7ead99fd4740 +msgid "``Message.edited_timestamp``" +msgstr "" + +#: ../../migrating_to_v1.rst:359 +#: c279877dabcf4c55a054fdd2f3bb1859 +msgid "Use :attr:`Message.edited_at` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:361 +#: 37c351618c12422c9a87f21796f1a45e +msgid "``Message.timestamp``" +msgstr "" + +#: ../../migrating_to_v1.rst:363 +#: 4fa300b20b3345a6ba9b288a4465cc4c +msgid "Use :attr:`Message.created_at` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:365 +#: 2eb7618a262b47cb90ce5652125b2366 +msgid "``Colour.to_tuple()``" +msgstr "" + +#: ../../migrating_to_v1.rst:367 +#: f834ba8e5c954537bfd16b57228fbb7c +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:369 +#: d6bfb84091fc4d72b69ac916cb1579dd +msgid "``Permissions.view_audit_logs``" +msgstr "" + +#: ../../migrating_to_v1.rst:371 +#: 10465e08fdd24e06a15519f0ed384032 +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:373 +#: 04e56cd829e1486ab65d3b92fc39852d +msgid "``Member.game``" +msgstr "" + +#: ../../migrating_to_v1.rst:375 +#: 846418d5f6814e27a4e9ac9f835a9c9f +msgid "Use :attr:`Member.activities` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:377 +#: d08bcf48a20046708bfd6f085c9a0b7d +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "" + +#: ../../migrating_to_v1.rst:379 +#: 625da8eb89cc4472912ff9ba5a136d65 +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "" + +#: ../../migrating_to_v1.rst:382 +#: 1d7540080ea24244a8583392ea4b5af6 +msgid "**Changed**" +msgstr "" + +#: ../../migrating_to_v1.rst:384 +#: 64a5c7f0e72b471988d21597f4240121 +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr "" + +#: ../../migrating_to_v1.rst:385 +#: 54bd91c8c6884da59346bba5e163c898 +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr "" + +#: ../../migrating_to_v1.rst:386 +#: c98a7b8d27c4406a819e2b4e8ecd688c +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr "" + +#: ../../migrating_to_v1.rst:387 +#: 32d1ba30b24045379f0dd4138ec8dab6 +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr "" + +#: ../../migrating_to_v1.rst:389 +#: 4cbc420538d8497a9acfd60c569bc87d +msgid "**Added**" +msgstr "" + +#: ../../migrating_to_v1.rst:391 +#: 14dadba990844c66a56441cea7741e86 +msgid ":class:`Attachment` to represent a discord attachment." +msgstr "" + +#: ../../migrating_to_v1.rst:392 +#: 5c834b00f5c741f0a0023eb764f35852 +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr "" + +#: ../../migrating_to_v1.rst:393 +#: 2e0e1b0db23640338188a19254667a01 +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr "" + +#: ../../migrating_to_v1.rst:394 +#: 679c97019b704cb9a55160c05ab8d03a +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr "" + +#: ../../migrating_to_v1.rst:395 +#: ddafe9fedca0419eb5210bd1d23c3358 +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr "" + +#: ../../migrating_to_v1.rst:396 +#: 0e7db41ddde4453eae7d065d60eb2ef5 +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr "" + +#: ../../migrating_to_v1.rst:397 +#: 3343b58250264ea1a3edd8a2ae90ec1d +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr "" + +#: ../../migrating_to_v1.rst:398 +#: 0e5f8bbd9111437c94d828d8aa4abf28 +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr "" + +#: ../../migrating_to_v1.rst:399 +#: 84147ba1e8c547daa2038b9984ac64d5 +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr "" + +#: ../../migrating_to_v1.rst:400 +#: f8dbf611354144578256e71473ef5556 +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr "" + +#: ../../migrating_to_v1.rst:401 +#: 03fd7a8161a349ad9afa53e366917cb3 +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr "" + +#: ../../migrating_to_v1.rst:402 +#: b4e50029b4bd433fa6d5fbd8afe42d3a +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr "" + +#: ../../migrating_to_v1.rst:403 +#: 894c9d25dce5446e941cf54a226c64b5 +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr "" + +#: ../../migrating_to_v1.rst:404 +#: 0e1a13e6497a4994984adf71ac3d018d +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr "" + +#: ../../migrating_to_v1.rst:405 +#: bb959e7f5430417babe1bf43e7073351 +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr "" + +#: ../../migrating_to_v1.rst:406 +#: df5dce28532c4ea7bd6c75e1535ad238 +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr "" + +#: ../../migrating_to_v1.rst:407 +#: 47388b4ae3ee45f9945824b02d116a3e +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr "" + +#: ../../migrating_to_v1.rst:408 +#: c6443ea78c7646d58a81f4f6021f48b1 +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr "" + +#: ../../migrating_to_v1.rst:409 +#: 8d298003d6194b059a7e22e9caf69fed +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr "" + +#: ../../migrating_to_v1.rst:410 +#: 01bfca795c93402594ec5e740adbf1f5 +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr "" + +#: ../../migrating_to_v1.rst:411 +#: 3a3b4ed3653e44859829df298d331289 +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr "" + +#: ../../migrating_to_v1.rst:412 +#: 0f551cce961242699bfc7f5ff1a08858 +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr "" + +#: ../../migrating_to_v1.rst:413 +#: 64342a1e3ab94a9caf4fdea4cddf74a7 +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr "" + +#: ../../migrating_to_v1.rst:418 +#: 93483cd0b11742a5be6a2630fcadfd6c +msgid "Sending Messages" +msgstr "" + +#: ../../migrating_to_v1.rst:420 +#: 4a7d41fa39074e78af801e0ccb92fc52 +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "" + +#: ../../migrating_to_v1.rst:423 +#: ../../migrating_to_v1.rst:1077 +#: a95df90801f5424ba3ffc944daf822d2 +#: 635b9e52c62b40be95e8f1251bc4cecf +msgid "Basically: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:431 +#: 75b25b7eecf34fbb90e4c65fce5225ab +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:436 +#: 0ef5563378af41de874e269e1cd5b715 +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "" + +#: ../../migrating_to_v1.rst:445 +#: 8443012316c74ad193cb170f3e814f1d +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:457 +#: 0d4c2304e5664095afccfa5ed96747d3 +msgid "Asynchronous Iterators" +msgstr "" + +#: ../../migrating_to_v1.rst:459 +#: 77bd460a27e14dddb3ce6500b4c9320a +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "" + +#: ../../migrating_to_v1.rst:461 +#: a3a3f79370b2492c86b4affcf4a5c94f +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "" + +#: ../../migrating_to_v1.rst:464 +#: 5d5f83816f9d44b5b3707a7e7475ab04 +msgid "This allows you to iterate over it like normal: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:469 +#: 1fc400dcbe254cfab5aed6427460356b +msgid "Or turn it into a list: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:475 +#: 7326483343ea4cf691a3711031f4643e +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:481 +#: 3b65f1ee651543878ac2a4feadf18d68 +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "" + +#: ../../migrating_to_v1.rst:484 +#: 0dcb16850ed4472d94ac1a873afd2c49 +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:489 +#: c335fa3d422745b6bc51f91e811acc63 +msgid "The following return :class:`AsyncIterator`:" +msgstr "" + +#: ../../migrating_to_v1.rst:491 +#: 02e5d9e1999645289ffd7e3664d02f8b +msgid ":meth:`abc.Messageable.history`" +msgstr "" + +#: ../../migrating_to_v1.rst:492 +#: 0d5fbee7dd1246b8ab9958162096803d +msgid ":meth:`Guild.audit_logs`" +msgstr "" + +#: ../../migrating_to_v1.rst:498 +#: ../../migrating_to_v1.rst:924 +#: a06857ff194c4c8d9879e9d48b66a4e0 +#: f19b1d3c85b14c5090e82a7e8f4abf7e +msgid "Event Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:500 +#: 73a83837fbd74e929cce57fb5a3e4a0f +msgid "A lot of events have gone through some changes." +msgstr "" + +#: ../../migrating_to_v1.rst:502 +#: efb7fb2ba44c497993cbd45815884179 +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:504 +#: ../../migrating_to_v1.rst:568 +#: 44ad88423637441a84457439a0f40c90 +#: 05be7cd79c304f8d8d3938d10271bd25 +msgid "Before:" +msgstr "" + +#: ../../migrating_to_v1.rst:506 +#: 3e26664afda3432e979887340292fd4e +msgid "``on_server_join``" +msgstr "" + +#: ../../migrating_to_v1.rst:507 +#: bfca7cb48a0443a59641d34c4f77414e +msgid "``on_server_remove``" +msgstr "" + +#: ../../migrating_to_v1.rst:508 +#: 3b758973e78446e0b64fb4ac24b283ac +msgid "``on_server_update``" +msgstr "" + +#: ../../migrating_to_v1.rst:509 +#: 225ab365b80f46b4b6abc2d218692712 +msgid "``on_server_role_create``" +msgstr "" + +#: ../../migrating_to_v1.rst:510 +#: f2d40c3b31a248ec84a7838fd269c021 +msgid "``on_server_role_delete``" +msgstr "" + +#: ../../migrating_to_v1.rst:511 +#: 12325851acf84556be5553ad3e8a02b0 +msgid "``on_server_role_update``" +msgstr "" + +#: ../../migrating_to_v1.rst:512 +#: 2b2b76f5b5c14c57bf4a72304d9a1f42 +msgid "``on_server_emojis_update``" +msgstr "" + +#: ../../migrating_to_v1.rst:513 +#: 253c9805a2664e738602b6e2a7eb24f7 +msgid "``on_server_available``" +msgstr "" + +#: ../../migrating_to_v1.rst:514 +#: ccf36e9aa1a34a34a0ca1cfcda1a8129 +msgid "``on_server_unavailable``" +msgstr "" + +#: ../../migrating_to_v1.rst:516 +#: ../../migrating_to_v1.rst:574 +#: 164f5c204a764a6e89e9a9ac4f131f4d +#: b27e082641724727b1d09366a780883d +msgid "After:" +msgstr "" + +#: ../../migrating_to_v1.rst:518 +#: 80efc076afd748cd8e9bb0346e68c204 +msgid ":func:`on_guild_join`" +msgstr "" + +#: ../../migrating_to_v1.rst:519 +#: 1c025ced74894b8f90770059394c1cf7 +msgid ":func:`on_guild_remove`" +msgstr "" + +#: ../../migrating_to_v1.rst:520 +#: 18b24e3e47de485ea172d04fcd65894e +msgid ":func:`on_guild_update`" +msgstr "" + +#: ../../migrating_to_v1.rst:521 +#: 54318d6c483b4fb9a15ca23092016794 +msgid ":func:`on_guild_role_create`" +msgstr "" + +#: ../../migrating_to_v1.rst:522 +#: ee473486cb6b437db292bff45960be1e +msgid ":func:`on_guild_role_delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:523 +#: 357b45fa893b42919c27663616c68c61 +msgid ":func:`on_guild_role_update`" +msgstr "" + +#: ../../migrating_to_v1.rst:524 +#: 850177a045774335bdb609cca813b4ba +msgid ":func:`on_guild_emojis_update`" +msgstr "" + +#: ../../migrating_to_v1.rst:525 +#: a3c14e69548442f290c0fe2965ab9932 +msgid ":func:`on_guild_available`" +msgstr "" + +#: ../../migrating_to_v1.rst:526 +#: 1265b1a2ee624cba8173434262b3965e +msgid ":func:`on_guild_unavailable`" +msgstr "" + +#: ../../migrating_to_v1.rst:529 +#: 1586e1d1ad2f4516bf02ffd5c9d0de6f +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "" + +#: ../../migrating_to_v1.rst:531 +#: ../../migrating_to_v1.rst:543 +#: ../../migrating_to_v1.rst:555 +#: ../../migrating_to_v1.rst:615 +#: ../../migrating_to_v1.rst:928 +#: 6da4ff8098aa4351a5c83d1ffcc4f1d1 +#: 5e096ef003564027843e2cf77fd49905 +#: c58eac28c0944f9ea8c790dcb2b6fdae +#: 43cd0c51ff7c4ecb97667690a1b6ef3a +#: b07d66fff1a5420480498608ba884ffe +msgid "Before: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:535 +#: ../../migrating_to_v1.rst:547 +#: ../../migrating_to_v1.rst:559 +#: ../../migrating_to_v1.rst:627 +#: ../../migrating_to_v1.rst:934 +#: ../../migrating_to_v1.rst:1159 +#: 4eb11e4ee15f433b860e24da2cc52f5b +#: f2d06097e5364ac494727a51843f9e15 +#: f7e16601163143e5a5c386382d1cc530 +#: 708ade3f91f04892bdda6c045520adb8 +#: 1e2d99c8a53d4b3b84555fbdaa0098c0 +#: 6c20b982c40b44939fc9ee44f1a8ca76 +msgid "After: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:539 +#: 82b7c550dae34853ad149374be9cf35e +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "" + +#: ../../migrating_to_v1.rst:541 +#: 90c71970e4fb4650bac2f5b2665f3cfd +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "" + +#: ../../migrating_to_v1.rst:551 +#: da4b663442e04f998d838b3c8ed930fa +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "" + +#: ../../migrating_to_v1.rst:553 +#: c620f04df9154f268e6a50f4fc4c8cf3 +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "" + +#: ../../migrating_to_v1.rst:563 +#: b807f0e4fb744ae4870db96a8d91ad1e +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "" + +#: ../../migrating_to_v1.rst:566 +#: 7f1c9df9cef94f68a806bffba429bc72 +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "" + +#: ../../migrating_to_v1.rst:570 +#: 10ca24d1b78447019a505aaac5426f39 +msgid "``on_channel_delete``" +msgstr "" + +#: ../../migrating_to_v1.rst:571 +#: 080299c8597a427c80b2a16b424c478c +msgid "``on_channel_create``" +msgstr "" + +#: ../../migrating_to_v1.rst:572 +#: 91599eaf8d5e4aa7a6d54059f6b57a6e +msgid "``on_channel_update``" +msgstr "" + +#: ../../migrating_to_v1.rst:576 +#: 728a95daa9f7443c8d84b1f211fe1501 +msgid ":func:`on_guild_channel_delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:577 +#: b7dd268376e24a2f846d016c0f255cc3 +msgid ":func:`on_guild_channel_create`" +msgstr "" + +#: ../../migrating_to_v1.rst:578 +#: b68cb8d115c64182aef5f9aceba2f926 +msgid ":func:`on_guild_channel_update`" +msgstr "" + +#: ../../migrating_to_v1.rst:579 +#: c514f86a93154c86994195c5d0bed7b0 +msgid ":func:`on_private_channel_delete`" +msgstr "" + +#: ../../migrating_to_v1.rst:580 +#: 8b1b2f3c7e2d467d80cb240928e09f05 +msgid ":func:`on_private_channel_create`" +msgstr "" + +#: ../../migrating_to_v1.rst:581 +#: 8ced5d5e429840069ac52377edb7fa72 +msgid ":func:`on_private_channel_update`" +msgstr "" + +#: ../../migrating_to_v1.rst:583 +#: 048baf8067854cdc9c7c9a67627a5fd9 +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "" + +#: ../../migrating_to_v1.rst:590 +#: c5c36d2cf4b24d558b3cfdfcae63e51f +msgid "Voice Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:592 +#: 639e1a05cfca400fa757212f628b7c79 +msgid "Voice sending has gone through a complete redesign." +msgstr "" + +#: ../../migrating_to_v1.rst:594 +#: 79fd4850356c40629b03c961b1774211 +msgid "In particular:" +msgstr "" + +#: ../../migrating_to_v1.rst:596 +#: 5110a9d33fb1423fa9c54bd7542a90d2 +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "" + +#: ../../migrating_to_v1.rst:597 +#: 0a1d45d0024b47369c5d41a7f1c69496 +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "" + +#: ../../migrating_to_v1.rst:598 +#: 94a1e1a0b2d948289e9ad1e5bdf9f884 +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "" + +#: ../../migrating_to_v1.rst:599 +#: d028a9d1d35b4e28ab709ca6b30e3748 +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "" + +#: ../../migrating_to_v1.rst:601 +#: 7a16c3f9a33a4f63bed56cc2fc51aa11 +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr "" + +#: ../../migrating_to_v1.rst:603 +#: dd63ad95e21f4ac2bd5ef9a2d44c25d7 +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "" + +#: ../../migrating_to_v1.rst:605 +#: 98ea76b951774246a1de6b99ea446da8 +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:607 +#: 32e6ad132d7c47be9e9cd27c81a2256d +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "" + +#: ../../migrating_to_v1.rst:609 +#: b7d478040bea4896b140e306ba5ac50b +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "" + +#: ../../migrating_to_v1.rst:611 +#: 1042d8cec0524ee48bfc23030609a2d6 +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "" + +#: ../../migrating_to_v1.rst:613 +#: 5c7eb0c9618c461da50a08ad3798b31b +msgid "Basically:" +msgstr "" + +#: ../../migrating_to_v1.rst:637 +#: c05b1ad0d2cd4b11b5cdb43038c54e2f +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "" + +#: ../../migrating_to_v1.rst:640 +#: 8a538c1130dc436992090e73e6aab004 +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:645 +#: 99ca270b30804d3fb23482708242605d +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "" + +#: ../../migrating_to_v1.rst:647 +#: e3aacf3b65c94ba6a7e9ac42d6e11242 +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "" + +#: ../../migrating_to_v1.rst:648 +#: fd913cc4554d469cb2710f36f3187313 +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "" + +#: ../../migrating_to_v1.rst:649 +#: fc59acabd7e447c2ae887dc918a1edf5 +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "" + +#: ../../migrating_to_v1.rst:651 +#: 4a9f6035023e4b759c02c7b2afed9a7e +msgid "This includes changing voice regions etc." +msgstr "" + +#: ../../migrating_to_v1.rst:657 +#: 44f1d6863c1e44e88f69f9d70c4ef390 +msgid "Waiting For Events" +msgstr "" + +#: ../../migrating_to_v1.rst:659 +#: ac2497871ce4455e92504c02e2f85915 +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "" + +#: ../../migrating_to_v1.rst:663 +#: f25f38d107d140319f0043e3ccd1fd47 +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "" + +#: ../../migrating_to_v1.rst:665 +#: c26f16a7656d47d29bdb6d38ba686340 +msgid "For example, to wait for a message: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:676 +#: c5124534816c42f592f1902f246de487 +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "" + +#: ../../migrating_to_v1.rst:679 +#: ef6869db7dfa468eab3e1414dddd8b28 +msgid "For example, to wait for a reaction: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:685 +#: d1e874e26d094947b75a21620a0bef4b +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "" + +#: ../../migrating_to_v1.rst:702 +#: 731714a9d67b47b5ac49c21865774415 +msgid "Upgraded Dependencies" +msgstr "" + +#: ../../migrating_to_v1.rst:704 +#: a0425b5ad3e64f05b5e23ed9323cdc1c +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "" + +#: ../../migrating_to_v1.rst:706 +#: 51740f4309a2436cb62226d8d85fd887 +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "" + +#: ../../migrating_to_v1.rst:711 +#: 2294a5360bd44948bb46d8a1fb7ab6fd +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "" + +#: ../../migrating_to_v1.rst:713 +#: d80a9eea20cf47dcbfaa9f7e35b2eb18 +msgid "``aiohttp.get``" +msgstr "" + +#: ../../migrating_to_v1.rst:714 +#: 5b2fcfa101f542c09f9978040e42f279 +msgid "``aiohttp.post``" +msgstr "" + +#: ../../migrating_to_v1.rst:715 +#: f452afc6a8bc441dbd4599ced672e757 +msgid "``aiohttp.delete``" +msgstr "" + +#: ../../migrating_to_v1.rst:716 +#: ff32585353ed484aaf798b70578d10b1 +msgid "``aiohttp.patch``" +msgstr "" + +#: ../../migrating_to_v1.rst:717 +#: f29e27af477743bb8b34e521d293553c +msgid "``aiohttp.head``" +msgstr "" + +#: ../../migrating_to_v1.rst:718 +#: 6895169f2ac44a9fb250ac23831e7745 +msgid "``aiohttp.put``" +msgstr "" + +#: ../../migrating_to_v1.rst:719 +#: 3926a1bb14794fc2b781f8388a6340a8 +msgid "``aiohttp.request``" +msgstr "" + +#: ../../migrating_to_v1.rst:721 +#: 52d8ed3a00fd4f198e643262691a0758 +msgid "It is recommended that you create a session instead: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:727 +#: ff34c1c48eee41ada64ebf3ac237280a +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "" + +#: ../../migrating_to_v1.rst:731 +#: 5dc3438852f24fb187cee1eb39823cf6 +msgid "Sharding" +msgstr "" + +#: ../../migrating_to_v1.rst:733 +#: 22fee65c18c245ad92f61d38e350e931 +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "" + +#: ../../migrating_to_v1.rst:735 +#: 3adb6bc4dfa7469aab5ca3df23d33bed +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "" + +#: ../../migrating_to_v1.rst:737 +#: 494082dd3a8a45f68190588a71f0380d +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "" + +#: ../../migrating_to_v1.rst:739 +#: 91d9563cdce4401b85eb7d5952e81086 +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "" + +#: ../../migrating_to_v1.rst:742 +#: 7a92820e2e064495bb1c29175a50e6ed +msgid "Usage is as simple as doing: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:746 +#: 31d4cfddbb834783a532a0bd4ca61a72 +msgid "instead of using :class:`Client`." +msgstr "" + +#: ../../migrating_to_v1.rst:748 +#: 2a45112531d1449eaa539f71951b5f7f +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "" + +#: ../../migrating_to_v1.rst:751 +#: 0f8d9aa5dfae43f491ba1bf8fa6e92be +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "" + +#: ../../migrating_to_v1.rst:759 +#: 40d3205bd2b045d0b71112efcbf3f549 +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "" + +#: ../../migrating_to_v1.rst:762 +#: d9a5985bc3c84c72a00ee4f368bea021 +msgid "Connection Improvements" +msgstr "" + +#: ../../migrating_to_v1.rst:764 +#: 66d45ba4e6de47fb8a308e38a2de5926 +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "" + +#: ../../migrating_to_v1.rst:766 +#: 7e8c57cfd8b747dea99a46fc6aab8dad +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr "" + +#: ../../migrating_to_v1.rst:770 +#: af171ea6a44c4eb0a6ac3b1dffde1857 +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr "" + +#: ../../migrating_to_v1.rst:776 +#: 290461c03fbf40a7ae66eb7fe258b751 +msgid "Command Extension Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:778 +#: 285f3b1bc4d746edb66e0bb3331a2ad6 +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "" + +#: ../../migrating_to_v1.rst:782 +#: 54a972125952485d9f8ddcbbec3bd632 +msgid "Context Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:784 +#: 717f2cec8bc042e4a9854286efbac788 +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "" + +#: ../../migrating_to_v1.rst:786 +#: 06979fb694e64cf5a84f92191a22a93a +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "" + +#: ../../migrating_to_v1.rst:800 +#: 63f0eaa0d7a5426782ca5b0d8937ee7d +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "" + +#: ../../migrating_to_v1.rst:806 +#: e4d3262fccaf46348b94da432e16430a +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "" + +#: ../../migrating_to_v1.rst:808 +#: 6be6a39f6cf6437d98fea51d2f9445da +msgid "**New Shortcuts**" +msgstr "" + +#: ../../migrating_to_v1.rst:810 +#: fddb63ad14994840b26862fd62c99646 +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr "" + +#: ../../migrating_to_v1.rst:811 +#: 7e11740529834443b5e001f4b212d850 +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr "" + +#: ../../migrating_to_v1.rst:812 +#: c69a20d95b9240ee9e6653b2016111e5 +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr "" + +#: ../../migrating_to_v1.rst:813 +#: cda911fe3ed942a596bf62e21c3c9203 +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr "" + +#: ../../migrating_to_v1.rst:814 +#: 6d25f3e72c83417a994d1478e91ab48c +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr "" + +#: ../../migrating_to_v1.rst:816 +#: 3f1992c3e51f440383c92c4ed8763407 +msgid "**New Functionality**" +msgstr "" + +#: ../../migrating_to_v1.rst:818 +#: 6ca3137248eb468ca054a8b34c2f23da +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr "" + +#: ../../migrating_to_v1.rst:820 +#: e18dafeddb844b20bf307436e8dfdce9 +msgid "This is useful for bypassing cooldowns." +msgstr "" + +#: ../../migrating_to_v1.rst:821 +#: f88d749068fe43119fa54e48f7fc6fdd +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr "" + +#: ../../migrating_to_v1.rst:822 +#: 7b512fb184ea40de80bfd8306a439755 +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr "" + +#: ../../migrating_to_v1.rst:824 +#: 1ab773b999044ccd95814808410767d5 +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "" + +#: ../../migrating_to_v1.rst:827 +#: cda91e2c85124e59a4a8214b82fd0c3a +msgid "Subclassing Context" +msgstr "" + +#: ../../migrating_to_v1.rst:829 +#: 1f64d32eea034e8eaa435e786a42bb2d +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "" + +#: ../../migrating_to_v1.rst:832 +#: 3281b69da3e94834b4201581ece2db2e +msgid "For example, if you want to add some functionality to the context:" +msgstr "" + +#: ../../migrating_to_v1.rst:841 +#: 6161661d05de4e589638ecce448f047d +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "" + +#: ../../migrating_to_v1.rst:851 +#: 6e443877b4434dcbaec136025efd3369 +msgid "Now inside your commands you will have access to your custom context:" +msgstr "" + +#: ../../migrating_to_v1.rst:862 +#: 8503aa2ca91c496b9300e31b8e827ad4 +msgid "Removed Helpers" +msgstr "" + +#: ../../migrating_to_v1.rst:864 +#: d36927bade34457086107fb9c4b3d3f9 +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "" + +#: ../../migrating_to_v1.rst:866 +#: 7bb8008204224bce8ba8e13ed1e80694 +msgid "For a full list of changes, see below:" +msgstr "" + +#: ../../migrating_to_v1.rst:871 +#: 874a5ba3779a4d8c96ef07996275c06b +msgid "``Bot.say``" +msgstr "" + +#: ../../migrating_to_v1.rst:871 +#: ../../migrating_to_v1.rst:873 +#: 17ba17ef146b431b898fa91702d109e2 +#: 3026d352aa3049c5b74c1ac5222b7034 +msgid ":meth:`.Context.send`" +msgstr "" + +#: ../../migrating_to_v1.rst:873 +#: ee27f36d1b2846cfb547f5cb9d2540ca +msgid "``Bot.upload``" +msgstr "" + +#: ../../migrating_to_v1.rst:875 +#: 7484c6a90d4646ddb36ab0d31070d0cc +msgid "``Bot.whisper``" +msgstr "" + +#: ../../migrating_to_v1.rst:875 +#: 02ef5a5351f4402ba6b044568a7c8fec +msgid "``ctx.author.send``" +msgstr "" + +#: ../../migrating_to_v1.rst:877 +#: 7ee1fadc67734315b264ff59a07f24bf +msgid "``Bot.type``" +msgstr "" + +#: ../../migrating_to_v1.rst:877 +#: 8f299e3adb2847ffa794e94be31373f2 +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr "" + +#: ../../migrating_to_v1.rst:879 +#: 95809e3221234cb3b884dcb0de4e64d8 +msgid "``Bot.reply``" +msgstr "" + +#: ../../migrating_to_v1.rst:879 +#: 2c2c944602f84df2b32fa84e36cfe33a +msgid "No replacement." +msgstr "" + +#: ../../migrating_to_v1.rst:883 +#: f6a7fbadb0da48c08367ff0fcda8e31b +msgid "Command Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:885 +#: 20a7906e511c4cb190d4861534cca13d +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "" + +#: ../../migrating_to_v1.rst:888 +#: bfb080ca3c604a39a3fb06a78bfd4e5f +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "" + +#: ../../migrating_to_v1.rst:891 +#: 512908aca81f4c8fa6a737b6cc7e55fd +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "" + +#: ../../migrating_to_v1.rst:894 +#: ff1555c5f5ff49d7907f8d700516a693 +msgid "Command instances have gained new attributes and properties:" +msgstr "" + +#: ../../migrating_to_v1.rst:896 +#: d35fd07ccb584166bbaf3b527b2bab86 +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr "" + +#: ../../migrating_to_v1.rst:897 +#: 7b0323a2c33d48d480591f93d667eb6c +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr "" + +#: ../../migrating_to_v1.rst:898 +#: 96906e117b634f49bfcd23abe048dd17 +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr "" + +#: ../../migrating_to_v1.rst:900 +#: b567aa827d33419684c2e31370cb3ba1 +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "" + +#: ../../migrating_to_v1.rst:902 +#: 09c93e87f21143ef883ebd133fec141c +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "" + +#: ../../migrating_to_v1.rst:904 +#: ecab4d18d394470d8b425624e232b2cf +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "" + +#: ../../migrating_to_v1.rst:907 +#: 15bf276c256e4d9eb233d44849813257 +msgid "Check Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:909 +#: d6e916c5dd2a4afcb0d9721c0afafcfa +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "" + +#: ../../migrating_to_v1.rst:911 +#: d1c87ef2f2ad4853866a1bada5a211c8 +msgid "Along with this change, a couple new checks were added." +msgstr "" + +#: ../../migrating_to_v1.rst:913 +#: e63059a9bef24dc59f1def488e39338d +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr "" + +#: ../../migrating_to_v1.rst:914 +#: c1bcf86648bf49d6be2eda9cac2b8996 +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr "" + +#: ../../migrating_to_v1.rst:916 +#: 5649ecc5d44d499cae4334eeef850000 +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "" + +#: ../../migrating_to_v1.rst:917 +#: 8fab6bde3c4d4c0eb2f0d3393f4bae29 +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "" + +#: ../../migrating_to_v1.rst:919 +#: 83cc31526f314335983a8b180dcac697 +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr "" + +#: ../../migrating_to_v1.rst:921 +#: bc84973dc2024308834175f683bc2106 +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "" + +#: ../../migrating_to_v1.rst:926 +#: 3155a125d1b44571a1d222aaa46f09d2 +msgid "All command extension events have changed." +msgstr "" + +#: ../../migrating_to_v1.rst:940 +#: 525b0059e0e74e58955f03ba7ca7bcb5 +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "" + +#: ../../migrating_to_v1.rst:945 +#: fb4efa1d13f54ff7a5a558e6c8bb6b13 +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "" + +#: ../../migrating_to_v1.rst:950 +#: 8be35639009845c2ba7e870eed8789e4 +msgid "HelpFormatter and Help Command Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:952 +#: 0c9b00898be3410f8ae07000636749c3 +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "" + +#: ../../migrating_to_v1.rst:954 +#: 24d138b1770e4f17aa48b94777253ffd +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "" + +#: ../../migrating_to_v1.rst:956 +#: 60281936a03a4fecbc9927fe81bfc80a +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "" + +#: ../../migrating_to_v1.rst:958 +#: f79e515d8f184b57a5de04ae7368b39d +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr "" + +#: ../../migrating_to_v1.rst:959 +#: 05299dfeb65b4b4bb1f6bb711903e479 +msgid "Called when the user requested for help with the entire bot." +msgstr "" + +#: ../../migrating_to_v1.rst:960 +#: 0a16847a732b4a33bb9c46fbd429a86c +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr "" + +#: ../../migrating_to_v1.rst:961 +#: 6c1b0bb7432643fe9882de314453af35 +msgid "Called when the user requested for help with a specific cog." +msgstr "" + +#: ../../migrating_to_v1.rst:962 +#: e9f39f7388ff451e9a42bb5a6e5453f6 +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr "" + +#: ../../migrating_to_v1.rst:963 +#: 0e621712f43c4a40997b4b9cf205fdfb +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "" + +#: ../../migrating_to_v1.rst:964 +#: 77786b71f5ac4549994e33f787876d80 +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr "" + +#: ../../migrating_to_v1.rst:965 +#: bbec26d0bd544503a4f36050954dbf65 +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "" + +#: ../../migrating_to_v1.rst:966 +#: 3fd95879c0b4442aa6fc292595cb92ad +msgid ":meth:`.HelpCommand.get_destination`" +msgstr "" + +#: ../../migrating_to_v1.rst:967 +#: 663877b824494a57a242b013c9031390 +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "" + +#: ../../migrating_to_v1.rst:968 +#: c7a7f2315f884483a626a2ece68e73fa +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr "" + +#: ../../migrating_to_v1.rst:969 +#: 0bf3df49be06494a9717e43302a0becc +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "" + +#: ../../migrating_to_v1.rst:970 +#: 709ad40da26b4676b4211bf0b610f665 +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr "" + +#: ../../migrating_to_v1.rst:971 +#: cbfdf9b0bbef47d3b0f8ec54dd2584c3 +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "" + +#: ../../migrating_to_v1.rst:972 +#: eb5e38cfbab8442fa9229e0b543e6134 +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr "" + +#: ../../migrating_to_v1.rst:973 +#: 956e387c59d940dbb5cfea61c9a41b76 +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "" + +#: ../../migrating_to_v1.rst:974 +#: bb66812909bb4b8ba1255a3f40e37248 +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "" + +#: ../../migrating_to_v1.rst:975 +#: 37ab407ddd2240208b1c40ef8a5a93b7 +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr "" + +#: ../../migrating_to_v1.rst:976 +#: 871ad537f58f4ffc84aba6124b74a2ba +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "" + +#: ../../migrating_to_v1.rst:977 +#: 3baa287475f145a88daa190c9d376d60 +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr "" + +#: ../../migrating_to_v1.rst:978 +#: 98cf89ef2de44735a950a1ff98a633a4 +msgid "A coroutine that is called right before the help command processing is done." +msgstr "" + +#: ../../migrating_to_v1.rst:980 +#: 3e8046f2a2d74cabb513a61f9b8a768b +msgid "Certain subclasses can implement more customisable methods." +msgstr "" + +#: ../../migrating_to_v1.rst:982 +#: 7ed5712265a9430f8cf494eca8c6bc7b +msgid "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." +msgstr "" + +#: ../../migrating_to_v1.rst:984 +#: 7416bfc025324b03bb6149314c91e927 +msgid "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." +msgstr "" + +#: ../../migrating_to_v1.rst:986 +#: 606b9af1346e400da08be6121fedfe43 +msgid "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." +msgstr "" + +#: ../../migrating_to_v1.rst:988 +#: cce8cea9431c4addbba7a553c99c85f1 +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "" + +#: ../../migrating_to_v1.rst:1005 +#: fc2d755d59074231b2d341e37fc6eda1 +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "" + +#: ../../migrating_to_v1.rst:1008 +#: fe160abf5fbc47ae841b183aba015fcd +msgid "Cog Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:1010 +#: 05d6024f34aa48d0980fb0e8ecbccb47 +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "" + +#: ../../migrating_to_v1.rst:1012 +#: 1a7bfb167f9b4a08a7b31f72efb1f489 +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "" + +#: ../../migrating_to_v1.rst:1014 +#: 5c63bb2ba59d4b54aa7df8c8bb3c6640 +msgid ":meth:`.Cog.cog_unload`" +msgstr "" + +#: ../../migrating_to_v1.rst:1015 +#: 10e27bc000c14d5cb00799e79420b488 +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "" + +#: ../../migrating_to_v1.rst:1016 +#: 6f56b325bc9e435c88c6e172de7196f1 +msgid ":meth:`.Cog.bot_check_once`" +msgstr "" + +#: ../../migrating_to_v1.rst:1017 +#: 5090d9b233f24f09af3d96bf1562c074 +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "" + +#: ../../migrating_to_v1.rst:1018 +#: f88a1a6b759d49bdbd404bc627bb8efe +msgid ":meth:`.Cog.bot_check`" +msgstr "" + +#: ../../migrating_to_v1.rst:1019 +#: 21f426a77fb74c21b52cb99613f2e192 +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "" + +#: ../../migrating_to_v1.rst:1020 +#: ab3b85086968449faa4fcc32b245c872 +msgid ":meth:`.Cog.cog_check`" +msgstr "" + +#: ../../migrating_to_v1.rst:1021 +#: c687c5c069164790849266ed50d9cdf0 +msgid "This registers a check that applies to every command in the cog." +msgstr "" + +#: ../../migrating_to_v1.rst:1022 +#: 104c27d7b5dd4311af8ed3a9d7b9edc8 +msgid ":meth:`.Cog.cog_command_error`" +msgstr "" + +#: ../../migrating_to_v1.rst:1023 +#: 3bad7c5764454cb796e64c6ef72a6429 +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "" + +#: ../../migrating_to_v1.rst:1024 +#: 81ddfc0d92a941c0b10e93e6193710a6 +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr "" + +#: ../../migrating_to_v1.rst:1025 +#: c1eeaf0c1338401a9c51c8260a9da67c +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "" + +#: ../../migrating_to_v1.rst:1027 +#: f6d60513b8a647f5856bdd734bf5d011 +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "" + +#: ../../migrating_to_v1.rst:1029 +#: 60f543f3a24e42b49b279240372c0e4d +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "" + +#: ../../migrating_to_v1.rst:1031 +#: 378561fce8524f1297e1b249ca0649db +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "" + +#: ../../migrating_to_v1.rst:1068 +#: 0ec7b2c5084449a995eb701700f5cf7e +msgid "Before and After Invocation Hooks" +msgstr "" + +#: ../../migrating_to_v1.rst:1070 +#: c4ef253feb744eea8dd3a08128d03059 +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "" + +#: ../../migrating_to_v1.rst:1073 +#: b824473c4f5c4178afa96810bba97280 +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "" + +#: ../../migrating_to_v1.rst:1075 +#: b442785647a8418cbd2b7f0d33cef3c8 +msgid "They are on a global, per-cog, or per-command basis." +msgstr "" + +#: ../../migrating_to_v1.rst:1092 +#: 430f182bcddc484ab78c334a7c6f8ab0 +msgid "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." +msgstr "" + +#: ../../migrating_to_v1.rst:1095 +#: b2e97f7402864e1ab40e32868e54096f +msgid "The per-command registration is as follows: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:1111 +#: f514a792cd464f7ca9ca3e467a2f0412 +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "" + +#: ../../migrating_to_v1.rst:1126 +#: a414472f93704bd79a6583fefac3de39 +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "" + +#: ../../migrating_to_v1.rst:1129 +#: 8857e26d53c844a38338ca128ea9bd81 +msgid "The invocation order is as follows:" +msgstr "" + +#: ../../migrating_to_v1.rst:1131 +#: 2e6f90c6abf34317884cbf3c169979bf +msgid "Command local before invocation hook" +msgstr "" + +#: ../../migrating_to_v1.rst:1132 +#: 6584654e12624974b751232c2816df42 +msgid "Cog local before invocation hook" +msgstr "" + +#: ../../migrating_to_v1.rst:1133 +#: 9fb11b92d3d34c788c97c8a520081179 +msgid "Global before invocation hook" +msgstr "" + +#: ../../migrating_to_v1.rst:1134 +#: bb82bf5fcc504e958d935b4f42f18f55 +msgid "The actual command" +msgstr "" + +#: ../../migrating_to_v1.rst:1135 +#: 7ac69893d3ff4078ba575835e76adfd4 +msgid "Command local after invocation hook" +msgstr "" + +#: ../../migrating_to_v1.rst:1136 +#: 33c959cee1514f7698b4d8e2ab036bc4 +msgid "Cog local after invocation hook" +msgstr "" + +#: ../../migrating_to_v1.rst:1137 +#: 7a799ee1e1f843238bce6b0a9c219178 +msgid "Global after invocation hook" +msgstr "" + +#: ../../migrating_to_v1.rst:1140 +#: a9a61f01258340fd99507b9580b79f48 +msgid "Converter Changes" +msgstr "" + +#: ../../migrating_to_v1.rst:1142 +#: 9c1c9b09a3ce482eadeba27f3a62bea0 +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "" + +#: ../../migrating_to_v1.rst:1145 +#: 3f21ebec94cb4b04bfa061ee31043954 +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "" + +#: ../../migrating_to_v1.rst:1149 +#: 840e5bca05e444fa999f883b85bf9696 +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "" + +#: ../../migrating_to_v1.rst:1153 +#: bc16d3cb7261452a87e865880e5b5965 +msgid "Essentially, before: ::" +msgstr "" + +#: ../../migrating_to_v1.rst:1165 +#: c4090e9a0b3d42848479e432afc500d0 +msgid "The command framework also got a couple new converters:" +msgstr "" + +#: ../../migrating_to_v1.rst:1167 +#: 0cb6f2bfb3fb4b778bd614701ce20b08 +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr "" + +#: ../../migrating_to_v1.rst:1168 +#: 3d3757364d9348cebd30cf5d98432dee +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr "" + +#: ../../migrating_to_v1.rst:1169 +#: 8168f2b9bd9c4fd2ad725246a1a15a21 +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "" + +#: ../../migrating_to_v1.rst:1171 +#: d8e61bfc29cb4d26a44c089dff96a017 +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr "" + +#: ../../migrating_to_v1.rst:1172 +#: 5c33a3bdd9094d41aa9e96d68a32b6b5 +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr "" diff --git a/docs/build/locales/migrating_to_v2.pot b/docs/build/locales/migrating_to_v2.pot new file mode 100644 index 0000000000..2bda8ffec6 --- /dev/null +++ b/docs/build/locales/migrating_to_v2.pot @@ -0,0 +1,700 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../migrating_to_v2.rst:6 +#: d58f33617a294a0b8fabd528cbc4743b +msgid "Migrating to v2.0" +msgstr "" + +#: ../../migrating_to_v2.rst:8 +#: 153bece7c7174f058ebbfc29598ae8ef +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "" + +#: ../../migrating_to_v2.rst:10 +#: 6e734729277645468f41eed1268c7e32 +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "" + +#: ../../migrating_to_v2.rst:13 +#: 35cb11e0e37f44249f977d715944eb03 +msgid "Python Version Change" +msgstr "" + +#: ../../migrating_to_v2.rst:15 +#: 1cc77a0fd11041f5997f520bc7429e3f +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "" + +#: ../../migrating_to_v2.rst:20 +#: cad7a507189e4849a2ff38558129670e +msgid "Major Model Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:22 +#: f34f3b2ea9424eac92d4fce556d01a83 +msgid "Below are major changes that have happened in v2.0:" +msgstr "" + +#: ../../migrating_to_v2.rst:25 +#: 5462bf5a6ded4c0cb0f3241c509a79fd +msgid "Dropped User Accounts Support" +msgstr "" + +#: ../../migrating_to_v2.rst:27 +#: f08f487618354688b29ecc4568f49b57 +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "" + +#: ../../migrating_to_v2.rst:29 +#: db91e1eeaa3b45fd85133c748dd778dd +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "" + +#: ../../migrating_to_v2.rst:30 +#: a8991790eb864991a2c4a336fd0bb686 +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "" + +#: ../../migrating_to_v2.rst:31 +#: 62b88ba0d3b74ffbac4047e77cdad9b0 +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "" + +#: ../../migrating_to_v2.rst:32 +#: 35fa35b632bb4e78a8e22fbad61f36ed +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "" + +#: ../../migrating_to_v2.rst:33 +#: 6cee310291a141b4a77b7d2edcf6c046 +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "" + +#: ../../migrating_to_v2.rst:34 +#: 590a86bfab104d6197fea5b32b6ea4f9 +msgid "``Guild.ack``" +msgstr "" + +#: ../../migrating_to_v2.rst:35 +#: 1ac5f72b4de6473385e96f7163ac3063 +msgid "``Client.self_bot``" +msgstr "" + +#: ../../migrating_to_v2.rst:36 +#: 0d2048c3f634470db57d960269ce267e +msgid "``Client.fetch_user_profile``" +msgstr "" + +#: ../../migrating_to_v2.rst:37 +#: 196c370751334ee799f6a0d7b005d0b1 +msgid "``Message.call`` and ``ack``" +msgstr "" + +#: ../../migrating_to_v2.rst:38 +#: 175bae4371334bfdba4ee9b31104413d +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "" + +#: ../../migrating_to_v2.rst:39 +#: 2dd633c48aa0456e83f859255b4f1ee7 +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "" + +#: ../../migrating_to_v2.rst:40 +#: a50f5082ed78463c97d0273962fe0c15 +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "" + +#: ../../migrating_to_v2.rst:41 +#: bd7642d71ede4b97ba4dc650ff1c8594 +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "" + +#: ../../migrating_to_v2.rst:44 +#: 13121575476142a19c2dcb458a83f54f +msgid "Timezone-aware Time" +msgstr "" + +#: ../../migrating_to_v2.rst:46 +#: 349c6711be084ce1b90dd7a733b78ba0 +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "" + +#: ../../migrating_to_v2.rst:56 +#: 5fc136ad08d4421d9bbcdc16052f0690 +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "" + +#: ../../migrating_to_v2.rst:61 +#: da35e442c7704ec1afc688538581f915 +msgid "Asset Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:63 +#: c00065483b0342408ae50a9c51aa8c4e +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "" + +#: ../../migrating_to_v2.rst:65 +#: 4993a14d870149bda46b3f76e09442b0 +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "" + +#: ../../migrating_to_v2.rst:66 +#: ff3fcaeedc1c4e83b15a7b5a387f1630 +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr "" + +#: ../../migrating_to_v2.rst:67 +#: f5222d3512114fc28162f0c51869f55b +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "" + +#: ../../migrating_to_v2.rst:68 +#: 8fecd3253b0343979e5606bfcd199cda +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "" + +#: ../../migrating_to_v2.rst:69 +#: 2fe4f47843594fc4a5a867253a30b71a +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr "" + +#: ../../migrating_to_v2.rst:72 +#: ../../migrating_to_v2.rst:155 +#: a65a0103aace443ebb18e17b1721f2a5 +#: fc29ce511c4f469b97f92260dc276603 +msgid "Before" +msgstr "" + +#: ../../migrating_to_v2.rst:72 +#: ../../migrating_to_v2.rst:155 +#: 555d85f847b7406c83991fb44ffec3cf +#: 03cd95fabd374e4982e6da2ae545982a +msgid "After" +msgstr "" + +#: ../../migrating_to_v2.rst:74 +#: fe477cf46b8d44168a2b92ee73b01dc5 +msgid "``str(user.avatar_url)``" +msgstr "" + +#: ../../migrating_to_v2.rst:74 +#: f3f21f208f23475ebbfd8a685e8cd20e +msgid "``user.display_avatar.url``" +msgstr "" + +#: ../../migrating_to_v2.rst:76 +#: 477058ca0ed741de80cfe9998f853f9c +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "" + +#: ../../migrating_to_v2.rst:76 +#: 33c8991093324005b6d00b43b87289e1 +msgid "``user.display_avatar.with_size(128).url``" +msgstr "" + +#: ../../migrating_to_v2.rst:78 +#: ../../migrating_to_v2.rst:80 +#: 189fc37c8737439eae8f327b6a9a4caf +#: f4afdd26bd9b43829800ea2b9a929080 +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "" + +#: ../../migrating_to_v2.rst:78 +#: 09bd525e9d01437c925c7b72b240de22 +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "" + +#: ../../migrating_to_v2.rst:80 +#: 2421e8f8aef842b7b480595bdde17813 +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "" + +#: ../../migrating_to_v2.rst:82 +#: 957db552814a4fcfa62d129298d26d76 +msgid "``await user.avatar_url.read()``" +msgstr "" + +#: ../../migrating_to_v2.rst:82 +#: 81c8bc1f40d34a5ea0de03a6cc4ddd29 +msgid "``await user.display_avatar.read()``" +msgstr "" + +#: ../../migrating_to_v2.rst:84 +#: 6526cd7ec59c46cd8ea59e315663c759 +msgid "``str(emoji.url)``" +msgstr "" + +#: ../../migrating_to_v2.rst:84 +#: 311191130dbe4676acc34bcae2a919de +msgid "``emoji.url``" +msgstr "" + +#: ../../migrating_to_v2.rst:86 +#: 29237eab93d8458baf6e1eb56b08b6a6 +msgid "``str(emoji.url_as(size=32))``" +msgstr "" + +#: ../../migrating_to_v2.rst:86 +#: b98be13484434e5cada62d4908a280bc +msgid "``emoji.with_size(32).url``" +msgstr "" + +#: ../../migrating_to_v2.rst:88 +#: 7de06060f4094bbea3c7a105ab0c9a9a +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "" + +#: ../../migrating_to_v2.rst:88 +#: 78f397f39839421394d1c5fe64f497c7 +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "" + +#: ../../migrating_to_v2.rst:90 +#: 5759c26ddb754fbca00ffed8877cf100 +msgid "``str(sticker.image_url)``" +msgstr "" + +#: ../../migrating_to_v2.rst:90 +#: 6ce46f7b5fb2497aa5ac8d3adcb9c86a +msgid "``sticker.url``" +msgstr "" + +#: ../../migrating_to_v2.rst:92 +#: 129e5a5d23ce4e139433c8f25c3cc70e +msgid "``str(partialemoji.url)``" +msgstr "" + +#: ../../migrating_to_v2.rst:92 +#: c6e4151ff20145d695796cbe9da24db6 +msgid "``partialemoji.url``" +msgstr "" + +#: ../../migrating_to_v2.rst:96 +#: fd66d6f85fba4286bcbc431df0d5885f +msgid "Webhook Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:98 +#: f6a17bf9b0ee40e78bf3cce2beeb900e +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr "" + +#: ../../migrating_to_v2.rst:99 +#: f8c697ddb9984c8f9f346311722969ee +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "" + +#: ../../migrating_to_v2.rst:100 +#: 7ea01f8e7b5f4727aac7e16ef0cd0029 +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "" + +#: ../../migrating_to_v2.rst:125 +#: 08b6d061d37247f393b5b579f448a884 +msgid "Intents Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:127 +#: 4cf10c3081b342be80cce2f917c6ae68 +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr "" + +#: ../../migrating_to_v2.rst:136 +#: d048ab192df44c31abda5db5162c543a +msgid "Threads Introduced" +msgstr "" + +#: ../../migrating_to_v2.rst:138 +#: 62acc808e3b74755931d211e1648f7f0 +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "" + +#: ../../migrating_to_v2.rst:140 +#: 82444dda960a4d08a5f0dfc797d56d5e +msgid ":attr:`Message.channel`" +msgstr "" + +#: ../../migrating_to_v2.rst:141 +#: cceda5a20b1e498a9550e428a9c32d0c +msgid ":meth:`Client.fetch_channel`" +msgstr "" + +#: ../../migrating_to_v2.rst:142 +#: 11d3808d06cd43ab89db1f311a11e714 +msgid ":meth:`Guild.fetch_channel`" +msgstr "" + +#: ../../migrating_to_v2.rst:143 +#: dcf0abfc1cd94904add6e0803477b2e1 +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr "" + +#: ../../migrating_to_v2.rst:144 +#: 1ea22b3863954a36839ad619c6dd923e +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr "" + +#: ../../migrating_to_v2.rst:145 +#: 413ced12374046308a10545c3c6844c9 +msgid ":meth:`Client.get_channel`" +msgstr "" + +#: ../../migrating_to_v2.rst:150 +#: 248728e0a8be476781342a48226cf1f9 +msgid "Permission Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:152 +#: df3e0b1709ee45c9bb6330f79d891a01 +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "" + +#: ../../migrating_to_v2.rst:157 +#: 36d3d49660f042d18ec9657376085297 +msgid "``User.permissions_in``" +msgstr "" + +#: ../../migrating_to_v2.rst:157 +#: ../../migrating_to_v2.rst:159 +#: b8837ab04fef402282277085c9efbd73 +#: 71cfc7c63d664ccaae1a843441419313 +msgid "``abc.GuildChannel.permissions_for``" +msgstr "" + +#: ../../migrating_to_v2.rst:159 +#: 37649f96a7624d9686266d5fd1fed282 +msgid "``Member.permissions_in``" +msgstr "" + +#: ../../migrating_to_v2.rst:165 +#: 7820a53ce2684907add42dad55840b07 +msgid "Edit Method Behavior Change" +msgstr "" + +#: ../../migrating_to_v2.rst:167 +#: 7a4a212cbbec4644ba9b53a4008ab75a +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "" + +#: ../../migrating_to_v2.rst:172 +#: 59ea7ec3240a4469ad2abe9e44bf7949 +msgid "Positional-Keyword Argument Split" +msgstr "" + +#: ../../migrating_to_v2.rst:174 +#: 6053049fa5fc4d20886dfac6bf4fd578 +msgid "The following are now positional only:" +msgstr "" + +#: ../../migrating_to_v2.rst:176 +#: 43fabe138eba4d3fb009378200bfe950 +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr "" + +#: ../../migrating_to_v2.rst:177 +#: 459bad69b32446768e7d26b4967817b9 +msgid ":meth:`Guild.get_channel`" +msgstr "" + +#: ../../migrating_to_v2.rst:178 +#: 13d9ce01f23b4fb4ba027f6ede16cfbd +msgid ":meth:`Guild.get_role`" +msgstr "" + +#: ../../migrating_to_v2.rst:179 +#: fe229c09af0f4ceb8edd4c153c1d7967 +msgid ":meth:`Guild.get_member_named`" +msgstr "" + +#: ../../migrating_to_v2.rst:180 +#: c881076e826f4d3b9889bd5b509b0a88 +msgid ":meth:`Guild.fetch_member`" +msgstr "" + +#: ../../migrating_to_v2.rst:181 +#: 93ae00ccb763451d92f3ee9e7ed24389 +msgid ":meth:`Guild.fetch_emoji`" +msgstr "" + +#: ../../migrating_to_v2.rst:182 +#: 0d36f7feac2d4176924c51db078a913b +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr "" + +#: ../../migrating_to_v2.rst:183 +#: e27310186c87475ab67a031c4691574a +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr "" + +#: ../../migrating_to_v2.rst:185 +#: 2ee707a46795467e9e6df7da265add6d +msgid "The following are now keyword only:" +msgstr "" + +#: ../../migrating_to_v2.rst:187 +#: 062710efb97c4720b5a7e58b86fde1bd +msgid ":func:`utils.oauth_url`" +msgstr "" + +#: ../../migrating_to_v2.rst:188 +#: eea08b1bd6734a30b2c92d7299cba30e +msgid ":meth:`Reaction.users`" +msgstr "" + +#: ../../migrating_to_v2.rst:193 +#: e3f925ae131b4acd9cdea9307a45fc05 +msgid "Event Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:195 +#: 714200329dee4e4097e8237ec16e7369 +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr "" + +#: ../../migrating_to_v2.rst:196 +#: d8ba5cf91fb3424b828cd351eec2bb89 +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "" + +#: ../../migrating_to_v2.rst:197 +#: af890060b9db4bd3b5db9ec638bca915 +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr "" + +#: ../../migrating_to_v2.rst:203 +#: 011fe28653e1494dba94196e0008d35e +msgid "Message.type For Replies" +msgstr "" + +#: ../../migrating_to_v2.rst:205 +#: 4c8e05c8a9254b19818c84eeadb8405b +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr "" + +#: ../../migrating_to_v2.rst:210 +#: 80cdf03553cc4032ba759cb3c7f223bc +msgid "Sticker Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:212 +#: f61fbeebe9fa42b2a81207ce5b7037dc +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "" + +#: ../../migrating_to_v2.rst:213 +#: 110d5715eeac49c1a35b31c104687053 +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "" + +#: ../../migrating_to_v2.rst:214 +#: 33cc3cee550349b3a1762abb3f912719 +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr "" + +#: ../../migrating_to_v2.rst:215 +#: cb1cb2db00304aa78cb67ff03f7fdbf4 +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "" + +#: ../../migrating_to_v2.rst:216 +#: f0ec13f6ef5d4f47b9c3b5ad6ea62568 +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "" + +#: ../../migrating_to_v2.rst:221 +#: 58ac4f1b472642d99c1de2da076798f4 +msgid "Type Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:223 +#: 5ff91b640d61419c98e454661c2555a6 +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:225 +#: 6b4d501cdb574b55874cd1b9e457fd5b +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr "" + +#: ../../migrating_to_v2.rst:226 +#: 79b14ad448324549a1a7aefdb54cf08c +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr "" + +#: ../../migrating_to_v2.rst:227 +#: 7ec87d2fb54a4e509758b8c568f3daf1 +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:228 +#: 2a940a15b16c4b1b8517e827b0000252 +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:229 +#: dd62eb7b65c74803b15e55ec9d4d7c1c +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:230 +#: 2950a9a2db8c40aaaa71fa66ed7eea22 +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:231 +#: 6042605d696a4d9f8bf7cd7974fac701 +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:232 +#: 565f1b3e8c434e9ab85c4bf37d1e9efb +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "" + +#: ../../migrating_to_v2.rst:233 +#: 3ddda62623514924997b841008198d37 +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr "" + +#: ../../migrating_to_v2.rst:238 +#: 930df2cbf955481eb1a877cf8e03050a +msgid "Miscellaneous Changes" +msgstr "" + +#: ../../migrating_to_v2.rst:240 +#: 6fec5b854b0745c38c67242a39a9793f +msgid "The following were removed:" +msgstr "" + +#: ../../migrating_to_v2.rst:242 +#: 40ed16f576bf4e33a1ffabb3d75aaaed +msgid "``Client.request_offline_members``" +msgstr "" + +#: ../../migrating_to_v2.rst:243 +#: 58f5cf0e14a34ca3a894772829bb1c77 +msgid "``Client.logout``" +msgstr "" + +#: ../../migrating_to_v2.rst:244 +#: c0b6a79d2f4544d0844c504857922323 +msgid "``ExtensionNotFound.original``" +msgstr "" + +#: ../../migrating_to_v2.rst:245 +#: 62ee75994acd4d22b1a7a5ace1025c97 +msgid "``MemberCacheFlags.online``" +msgstr "" + +#: ../../migrating_to_v2.rst:246 +#: 3983cbd1b5574ec896fc9356485962db +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "" + +#: ../../migrating_to_v2.rst:247 +#: 370a22e8de864b71ad4dcb71dafdf2f2 +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "" + +#: ../../migrating_to_v2.rst:248 +#: cc590a7140fb44ee9c702cff74cc8500 +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "" + +#: ../../migrating_to_v2.rst:249 +#: 16074adbde0f41aba9d9b4f33ef99c22 +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "" + +#: ../../migrating_to_v2.rst:251 +#: 463a4158aa8e434d998f4427a87a4822 +msgid "The following were renamed:" +msgstr "" + +#: ../../migrating_to_v2.rst:253 +#: 3eb3bb5ea6f54fb0ade89c6843a79913 +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr "" + +#: ../../migrating_to_v2.rst:254 +#: 6d4ff2d5c6b14b6ba59bbb56b5dfb34c +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "" + +#: ../../migrating_to_v2.rst:256 +#: 2841cee7328940b0bdf478e6b22d7263 +msgid "The following were changed in behavior:" +msgstr "" + +#: ../../migrating_to_v2.rst:258 +#: 9940c6e733ac43a48c38a684452cfda6 +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr "" + +#: ../../migrating_to_v2.rst:259 +#: 2a1eb29e586a4982a56d290de5d81bc6 +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr "" + +#: ../../migrating_to_v2.rst:260 +#: df130bcfe3854c2198f7bb599ae90555 +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr "" + +#: ../../migrating_to_v2.rst:261 +#: 68503c20570e4ba09236db24b4b00e42 +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr "" + +#: ../../migrating_to_v2.rst:263 +#: 501adddee1ee4e4e85c46a97a38f2a85 +msgid "The following were changed in types:" +msgstr "" + +#: ../../migrating_to_v2.rst:265 +#: 7188dea26ca54b5abe2a909093fecf51 +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr "" + +#: ../../migrating_to_v2.rst:266 +#: 4b171ce60d5a4b63a5d50250c99aeb41 +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "" + +#: ../../migrating_to_v2.rst:267 +#: 554778efab494d3c90fe80ee0c544ae9 +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr "" + +#: ../../migrating_to_v2.rst:268 +#: c7ac7216dc10467ca76368d84b4dd18c +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr "" + +#: ../../migrating_to_v2.rst:271 +#: 28bdbc53fe6f47a08e2bc5250288e48b +msgid "Parting Words" +msgstr "" + +#: ../../migrating_to_v2.rst:273 +#: 897fc3a6948a464bb6c7fd5db0185700 +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "" diff --git a/docs/build/locales/old_changelog.pot b/docs/build/locales/old_changelog.pot new file mode 100644 index 0000000000..aced882c9b --- /dev/null +++ b/docs/build/locales/old_changelog.pot @@ -0,0 +1,3708 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../old_changelog.rst:10 +#: 29ce2db918fb41e8a9244bde1d1b9eea +msgid "Changelog" +msgstr "" + +#: ../../old_changelog.rst:12 +#: e7c24dc0811f4cf2b9c12cb7e77a849f +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "" + +#: ../../old_changelog.rst:16 +#: 111e8e373caa4879b99291201341d902 +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "" + +#: ../../old_changelog.rst:22 +#: f16bc17878ee42bea522f301f589b699 +msgid "v2.0.0" +msgstr "" + +#: ../../old_changelog.rst:23 +#: dccadc49e501411fa8b8937ad238fd42 +msgid "Fully deprecated/removed store channels" +msgstr "" + +#: ../../old_changelog.rst:24 +#: e29ccc70dc9440c49887a04fe64e75d5 +msgid "Buttons and Select Menus" +msgstr "" + +#: ../../old_changelog.rst:25 +#: 189374785cfa485889a515a57b0ccd8c +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "" + +#: ../../old_changelog.rst:26 +#: 8800248f6eeb4a04b6a7144853ecb6a8 +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "" + +#: ../../old_changelog.rst:27 +#: 2862fcc18cc746479c56e6b516ce52e3 +msgid "Voice receive API (:issue:`532`)" +msgstr "" + +#: ../../old_changelog.rst:28 +#: a2f7d6d326c54e5da6b53b8fc4745462 +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "" + +#: ../../old_changelog.rst:29 +#: 447a95c2a0b3472db32b67c0da2b3723 +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "" + +#: ../../old_changelog.rst:30 +#: dfe1a69b8b1d4980979a15f6fc56aed5 +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "" + +#: ../../old_changelog.rst:31 +#: d8255b78a1ab49d796de0c41db90f08f +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "" + +#: ../../old_changelog.rst:32 +#: c83088acf30846e183eee7cc8e4df23e +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "" + +#: ../../old_changelog.rst:33 +#: 2f6cb783181d4d3ead5b64730cd3e0ad +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr "" + +#: ../../old_changelog.rst:34 +#: 5c4e9fb3c3d5435381e6207d1d38624f +msgid "Application Command Localization (:issue:`1185`)" +msgstr "" + +#: ../../old_changelog.rst:35 +#: 0547cd04de9a40e3a9fa833bb41194a4 +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "" + +#: ../../old_changelog.rst:36 +#: b0d517b727da47ac987073f3fa8d4c91 +msgid "Forum channels (:issue:`1249`)" +msgstr "" + +#: ../../old_changelog.rst:37 +#: e618021b02844ae7845cfff40f70c879 +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "" + +#: ../../old_changelog.rst:38 +#: 288718c944264fbf94169e5124c6eb3d +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "" + +#: ../../old_changelog.rst:39 +#: 02f92fabeb084f9981cde73062908eca +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr "" + +#: ../../old_changelog.rst:40 +#: c5e3b745d4dd44078616eb00a0c6fa21 +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr "" + +#: ../../old_changelog.rst:41 +#: 582bbeed0431464f81d972fbc107665d +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "" + +#: ../../old_changelog.rst:42 +#: b3595562fbad439486d3dd882a01f055 +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "" + +#: ../../old_changelog.rst:43 +#: 0805e0b49bb04a6593fb829221f2e1a2 +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "" + +#: ../../old_changelog.rst:44 +#: ca53566b6b034dd3a42f4eeae20b4fe4 +msgid "User accounts (userbots) are no longer supported." +msgstr "" + +#: ../../old_changelog.rst:45 +#: 4d4aed3001174c05993cbe806861b9ea +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "" + +#: ../../old_changelog.rst:46 +#: ec4d6aaba5f5469f96c9db62a03308cd +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "" + +#: ../../old_changelog.rst:47 +#: f65369e1369348738cce934faf941169 +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "" + +#: ../../old_changelog.rst:48 +#: d4f8f3869289495db667736a1925bd92 +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "" + +#: ../../old_changelog.rst:49 +#: 9ee436e686fb4945b6d12762588bd7ad +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "" + +#: ../../old_changelog.rst:50 +#: 984193f100a74ce0bfbc5cbce8bc89fd +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "" + +#: ../../old_changelog.rst:51 +#: ae4168f2ccee4adebdf8328fe8fc2edf +msgid "Many method arguments now reject :class:`None`." +msgstr "" + +#: ../../old_changelog.rst:52 +#: 30c8c142c6924bcaa092b864d6d47407 +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "" + +#: ../../old_changelog.rst:53 +#: 7819f1eba4b64f6c9195987b52aa38d2 +msgid ":doc:`migrating_to_v2`" +msgstr "" + +#: ../../old_changelog.rst:58 +#: 3f1bdc6fe4c34020b43ac23b3b0fbe04 +msgid "v1.7.3" +msgstr "" + +#: ../../old_changelog.rst:61 +#: ../../old_changelog.rst:72 +#: ../../old_changelog.rst:84 +#: ../../old_changelog.rst:143 +#: ../../old_changelog.rst:216 +#: ../../old_changelog.rst:249 +#: ../../old_changelog.rst:302 +#: ../../old_changelog.rst:336 +#: ../../old_changelog.rst:362 +#: ../../old_changelog.rst:433 +#: ../../old_changelog.rst:484 +#: ../../old_changelog.rst:494 +#: ../../old_changelog.rst:509 +#: ../../old_changelog.rst:527 +#: ../../old_changelog.rst:612 +#: ../../old_changelog.rst:663 +#: ../../old_changelog.rst:673 +#: ../../old_changelog.rst:688 +#: ../../old_changelog.rst:702 +#: ../../old_changelog.rst:712 +#: ../../old_changelog.rst:748 +#: ../../old_changelog.rst:778 +#: ../../old_changelog.rst:820 +#: ../../old_changelog.rst:860 +#: ../../old_changelog.rst:879 +#: ../../old_changelog.rst:895 +#: ../../old_changelog.rst:915 +#: ../../old_changelog.rst:963 +#: ../../old_changelog.rst:980 +#: ../../old_changelog.rst:1017 +#: ../../old_changelog.rst:1053 +#: ../../old_changelog.rst:1105 +#: ../../old_changelog.rst:1149 +#: ../../old_changelog.rst:1215 +#: 544e311820a74571b148c112223905fa +#: 70c3ca9bce654a929c96e04fc09b4b8e +#: 81fd18a62df0458f9c29cf729ae7ca07 +#: 0cfe368e06df4e1ea7c150453f89de6e +#: 7cc0d22d8b2943e7aa79c455e015b3b6 +#: 50f297ce67c74677b1ee89c30fde8409 +#: 73fc735825794200af7a30630764db24 +#: 2d8a2079d07d471185fd771cd110e196 +#: 69eb18190cd849848afb4111eb0bb649 +#: 2dc4ae7f1672461b99cb21d7f4c1c44b +#: 68ce32f8aabb41649fc4afa11b3f0bf1 +#: 37d0810d51c84bf687249ea3a8ff8a85 +#: a26c3200a835429795617d743cd8e40f +#: dec246ccbf76406dbf2f4d6fb7752d72 +#: 23efacaa85b24de6ad0abd7fb71e2ac7 +#: 732ef6051bcb4804a5c9e79154c78279 +#: dceb88c2f12845d6aaba763f7a1eaa93 +#: fa8aa6eb723f40efb4fedb376fbd320e +#: b3fa3203990f4d0c98d2c93de388634e +#: 7c148660626547308b1391067e9ced02 +#: a67d46ada6074351bae4038c9b1130e7 +#: b4afbdf7fe6e4760ad70fe8db595e132 +#: 91bf4aa50b16483f889c8f3e912f0d24 +#: 78ed3243a842422cadbb88aaae754d02 +#: b365962e4ace4f4699a0e934d4285afc +#: 7817b4312a154f009dff55e432a858c7 +#: d4257b1c63b649d2bab2777f8f87974b +#: cd7f6bebae794a53828a66d9cbecafec +#: f94aa69bf4f9450dab1d250ecd1cbda4 +#: 30d3f7fc96194b079dc989af8254ccb4 +#: ef3d030669fc4e67885f6989dcbda763 +#: 17f17608af0a43cc962fac5db9cc8ddf +#: fed539cd2e6c4e53ba4aebc61df10f3c +#: 64872ef88d1e420a88cc9ff9eb89ced2 +msgid "Bug Fixes" +msgstr "" + +#: ../../old_changelog.rst:63 +#: 6ca55db8075543e7a1b66c20b429a1cb +msgid "Fix a crash involving guild uploaded stickers" +msgstr "" + +#: ../../old_changelog.rst:64 +#: cfd171a6935145399fbfef4808ac81de +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "" + +#: ../../old_changelog.rst:69 +#: 9672091320834fe6ac058962c3aa5a96 +msgid "v1.7.2" +msgstr "" + +#: ../../old_changelog.rst:74 +#: 2e33f45eaf364ff6ae5897c4cb0ee8f9 +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "" + +#: ../../old_changelog.rst:75 +#: eef74dc0c2004dcda8ec3f727fd1dfc2 +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "" + +#: ../../old_changelog.rst:76 +#: bfca0f9ab910467a9a338e39d99f9a47 +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "" + +#: ../../old_changelog.rst:81 +#: 8fadc2e021cf48a5ad82411499ee4e6d +msgid "v1.7.1" +msgstr "" + +#: ../../old_changelog.rst:86 +#: 4e0d3f0a012c447b8aac2b1968b76c1c +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "" + +#: ../../old_changelog.rst:91 +#: cd1b5fa5b2ad468b86553c173d4c0494 +msgid "v1.7.0" +msgstr "" + +#: ../../old_changelog.rst:93 +#: d8d582d95ca84387aa4eea41ca4be35d +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "" + +#: ../../old_changelog.rst:97 +#: f514144f70874e0aadb9bb45f85247df +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "" + +#: ../../old_changelog.rst:100 +#: ../../old_changelog.rst:179 +#: ../../old_changelog.rst:282 +#: ../../old_changelog.rst:376 +#: ../../old_changelog.rst:546 +#: ../../old_changelog.rst:725 +#: ../../old_changelog.rst:793 +#: ../../old_changelog.rst:909 +#: ../../old_changelog.rst:941 +#: ../../old_changelog.rst:974 +#: ../../old_changelog.rst:1003 +#: ../../old_changelog.rst:1030 +#: ../../old_changelog.rst:1066 +#: ../../old_changelog.rst:1126 +#: ../../old_changelog.rst:1172 +#: d9f378368bb5411da040252341ae2384 +#: 766d20e109394d4f9d97b5e570375d42 +#: c2770ae1af9b4102b8a693f993b1d639 +#: 9b63b5b3747040e0ba5f64a7c819bcf1 +#: 6d540400003c4c0d9a46efb8124d5831 +#: 226e4f2fbc514dd2b1792a6a22c75007 +#: 9f395f70c5344ef0b711c4248d8bacb3 +#: 111b5503166c49049c83def274c3d777 +#: dc35086399e943d6ae66d4137f6c7084 +#: 36bcd7cd8e4e45e2b1dce6ac93ce18e4 +#: e3502fe3e4524732aa20fa04e01c3807 +#: 2199902f33d7402e943e5681ed7282b2 +#: d56c88d569c24dddb1487157ed9d48a2 +#: 204e63c3290b4fc88a1d943da58066ad +#: 09ef2dfc185f422f85996a6f5f33bac0 +msgid "New Features" +msgstr "" + +#: ../../old_changelog.rst:102 +#: cedd57e50a544d078d8a0b35b0d75f6e +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "" + +#: ../../old_changelog.rst:103 +#: 5e33395ddbba452f8bcf51641c54d375 +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "" + +#: ../../old_changelog.rst:104 +#: c164b7c847854e1984bbf4a5f1b51a43 +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "" + +#: ../../old_changelog.rst:107 +#: 5cc73d7266f64ad2b25444b863bcadfa +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "" + +#: ../../old_changelog.rst:108 +#: ccc738ce09da485b855aa16e20ffce9a +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "" + +#: ../../old_changelog.rst:109 +#: 812fbc4313f64e119e328a6aa76a3340 +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "" + +#: ../../old_changelog.rst:110 +#: 1fc106925a21437ab39286fc0b6bb897 +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "" + +#: ../../old_changelog.rst:111 +#: b0dda7acf89d49c9a433fa44400f873f +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "" + +#: ../../old_changelog.rst:112 +#: 0814891c36484a8b9849b9383ebce5c9 +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "" + +#: ../../old_changelog.rst:113 +#: 5b67e06a18144728909532871f6393a1 +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "" + +#: ../../old_changelog.rst:114 +#: 12d1cb36dec44c0f8dd00640932e0a52 +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "" + +#: ../../old_changelog.rst:115 +#: 951a213cc0d54fa8900718b4672cc823 +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "" + +#: ../../old_changelog.rst:116 +#: 78c44b7870ef41bbb9fdc5dd63252540 +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "" + +#: ../../old_changelog.rst:117 +#: 20f2d55d2c804b4392f6b58947c58672 +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "" + +#: ../../old_changelog.rst:118 +#: d85f77a0ff1e4611a99dacd33f05c21f +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr "" + +#: ../../old_changelog.rst:119 +#: 702f43d65ece465487575d78c419ac9e +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "" + +#: ../../old_changelog.rst:120 +#: 3ff25179def1407ebd35a3c011824c9b +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr "" + +#: ../../old_changelog.rst:121 +#: 70a052b2ab1f4520a90e01cc2826ea34 +msgid ":class:`Attachment` is now hashable" +msgstr "" + +#: ../../old_changelog.rst:122 +#: a4a3979813124537b31ee23a7b23c0df +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "" + +#: ../../old_changelog.rst:123 +#: 46d57515a1e54630ae1104fd543b2348 +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "" + +#: ../../old_changelog.rst:124 +#: ec59b8cf7a244b4883752824029a444c +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "" + +#: ../../old_changelog.rst:125 +#: 031c607942bd4fc2b0c66042de6104c4 +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "" + +#: ../../old_changelog.rst:127 +#: c4a68d1e2d6543c18d128e4a66b6dc07 +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "" + +#: ../../old_changelog.rst:128 +#: 84fd9697528a48cc9bf3a5cb55796fb4 +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "" + +#: ../../old_changelog.rst:129 +#: c5d86802bf05408dadfb4255059ece4d +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "" + +#: ../../old_changelog.rst:130 +#: 78aaf837276a44d5a8800ebdbed9be31 +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "" + +#: ../../old_changelog.rst:131 +#: fcf45e879b0542a29ccbda9b59901a06 +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "" + +#: ../../old_changelog.rst:132 +#: df5a21f9817d4189a91741d6b656bddb +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "" + +#: ../../old_changelog.rst:133 +#: 8f436e824a9a4cc5af7798836754c156 +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "" + +#: ../../old_changelog.rst:134 +#: abbd3dc8948947978de1b77d2bdac71c +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "" + +#: ../../old_changelog.rst:135 +#: e99a1068890a49c797266cc7aeb0c602 +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "" + +#: ../../old_changelog.rst:136 +#: c1211e976016400fb43f0b462feceba0 +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "" + +#: ../../old_changelog.rst:137 +#: 123243ed7ee84d3998310f0ca9e7b82f +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "" + +#: ../../old_changelog.rst:138 +#: 636827aecb494e05a2af1ec75ec67e6a +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "" + +#: ../../old_changelog.rst:139 +#: d71729a1049043958652d4d8139727da +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "" + +#: ../../old_changelog.rst:140 +#: dc255f2941e443e2812b794838f177ee +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "" + +#: ../../old_changelog.rst:145 +#: 9332a09aee684f1298d02fdadc6fc63a +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "" + +#: ../../old_changelog.rst:146 +#: f531f587a2464eb798d1a5ca0712d24e +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "" + +#: ../../old_changelog.rst:147 +#: d9277f2c29684ef49943dfc37bdddddb +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "" + +#: ../../old_changelog.rst:148 +#: 85ad21fb2f0d4fb8aa0ad92b7552cc68 +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "" + +#: ../../old_changelog.rst:149 +#: 3dd3eed6338748a0ba5e20939c36b057 +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "" + +#: ../../old_changelog.rst:150 +#: 8c8032e680de4bd69727218940be575d +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "" + +#: ../../old_changelog.rst:151 +#: 5f8a582b40ba4651ab4a3a3e6d9ff9e9 +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "" + +#: ../../old_changelog.rst:152 +#: a16c3deda62c491b88a435437bca2e07 +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "" + +#: ../../old_changelog.rst:153 +#: bc4a79c3f87f48aca020f9fae6411585 +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "" + +#: ../../old_changelog.rst:154 +#: e435b0463f1c4ecea2f21931d11add5a +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "" + +#: ../../old_changelog.rst:155 +#: d2e9e738609e46fca22c4a72c38ab5b4 +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr "" + +#: ../../old_changelog.rst:156 +#: 923ab0d9634f444396e27e99e4b9daed +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "" + +#: ../../old_changelog.rst:157 +#: d063f4e02f6e43c7b3116c79cfcd49d3 +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "" + +#: ../../old_changelog.rst:158 +#: 83519cee41764612ac09fffed23374a2 +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "" + +#: ../../old_changelog.rst:159 +#: f0e378978cb844e1a9793bc89401d068 +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "" + +#: ../../old_changelog.rst:160 +#: ad6eaec69d6a46bf807c54cbbcd917f8 +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "" + +#: ../../old_changelog.rst:161 +#: e407952e9acf4614bcddeed1888af114 +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "" + +#: ../../old_changelog.rst:162 +#: 0890a4eebddc47a1afb61fdbe88177ed +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "" + +#: ../../old_changelog.rst:165 +#: ../../old_changelog.rst:232 +#: ../../old_changelog.rst:261 +#: ../../old_changelog.rst:317 +#: ../../old_changelog.rst:351 +#: ../../old_changelog.rst:461 +#: ../../old_changelog.rst:533 +#: ../../old_changelog.rst:636 +#: ../../old_changelog.rst:756 +#: ../../old_changelog.rst:783 +#: ../../old_changelog.rst:841 +#: aae073b86ab64b3cbeb8991af651aacf +#: 6577690b508a41508166de7f527309de +#: bacd8bb1f2e94851957735f5c9b966a2 +#: aecfd74254fe4380a3a35c820f199656 +#: 6033308e4fa246309f44ff2a9c62ff84 +#: 7cfe8c8e4f1348d18ba5b233fa4378a3 +#: 8cd36561ec9247c3a46aab2c0bc4091e +#: 2bc932f969fb46fb94ffea3585aef3b8 +#: 68b50c582bfe4c26a0062c99a16a67d1 +#: c30304010e0645a58629fa474ad0b4b0 +#: 58b8c638cd2b4c5ba356c542a0d06f16 +msgid "Miscellaneous" +msgstr "" + +#: ../../old_changelog.rst:167 +#: 35fffc7d076b4d19b1dd10d52e5db496 +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "" + +#: ../../old_changelog.rst:168 +#: df5892f7156f4180b4da7ce99de6d739 +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr "" + +#: ../../old_changelog.rst:169 +#: f0207d09b6d84eeaa788d0764ad4a492 +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "" + +#: ../../old_changelog.rst:174 +#: 0aad39ffee1d4bbda7c4079981f20f38 +msgid "v1.6.0" +msgstr "" + +#: ../../old_changelog.rst:176 +#: aade3a67e9144a09ba3a8238005289e1 +msgid "This version comes with support for replies and stickers." +msgstr "" + +#: ../../old_changelog.rst:181 +#: 2928d53ef45b434c83682851acf50607 +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "" + +#: ../../old_changelog.rst:182 +#: e6f0180fcc584243988623b515be2e6c +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "" + +#: ../../old_changelog.rst:183 +#: c634d09497db4b8a8dd4659697a34169 +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "" + +#: ../../old_changelog.rst:184 +#: 487e1ea4f8bb462c83de699ee87a299b +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "" + +#: ../../old_changelog.rst:185 +#: 68386202f673434c81178a580cfc7df5 +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "" + +#: ../../old_changelog.rst:186 +#: 2aae411c84b4485a993c927cf060261e +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "" + +#: ../../old_changelog.rst:187 +#: 1ecff6a8c9b14a77a2a81db467cbc54a +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "" + +#: ../../old_changelog.rst:188 +#: a8f0bca8b48744b69f02b6f6bd0721b5 +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr "" + +#: ../../old_changelog.rst:189 +#: dac39284d3074e7ba59db548b8c8b667 +msgid ":class:`MessageReference` can now be constructed by users." +msgstr "" + +#: ../../old_changelog.rst:190 +#: b0bfb30b94e14b8cb0af087bc2ad65f4 +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr "" + +#: ../../old_changelog.rst:191 +#: 6a70b57bd5924b9e877d0a0907816b13 +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "" + +#: ../../old_changelog.rst:192 +#: 0bfb977965f54138b22dc6eb96ce906c +msgid "Add support for role tags." +msgstr "" + +#: ../../old_changelog.rst:193 +#: 285ebc4e6c36414883976c65cd507a28 +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr "" + +#: ../../old_changelog.rst:194 +#: 641dcb68af10485ab00a1a78e1357ae5 +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr "" + +#: ../../old_changelog.rst:195 +#: e337f0d7eb544c79b188cfdb9c90a108 +msgid ":attr:`Role.tags` to get the role's tags." +msgstr "" + +#: ../../old_changelog.rst:196 +#: 6a1bd9baad6444f5936d6a146af104ce +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr "" + +#: ../../old_changelog.rst:197 +#: d1398588e32f405189c3c4d08b75d1e0 +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr "" + +#: ../../old_changelog.rst:198 +#: 6818919d47d941f08e4d5cf80eb0c39c +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr "" + +#: ../../old_changelog.rst:199 +#: 534dd8b0c9d940788b6e7a54ca6e470d +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "" + +#: ../../old_changelog.rst:200 +#: 425063d305364db4bed18f2edd6a998c +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr "" + +#: ../../old_changelog.rst:201 +#: e6d646912fff4191b37b21b18ea1a02e +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "" + +#: ../../old_changelog.rst:202 +#: 6abf71b2484c48f3978fa984c29f32aa +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "" + +#: ../../old_changelog.rst:203 +#: 1f32cadfd4d94390a15c72ee514efffc +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "" + +#: ../../old_changelog.rst:204 +#: 5e7226bc7687467b861346aec01d6697 +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "" + +#: ../../old_changelog.rst:205 +#: 92555425255045ff8cf2e71c4ab85097 +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "" + +#: ../../old_changelog.rst:206 +#: 41017b2db7404163ad8997334de5ce79 +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "" + +#: ../../old_changelog.rst:207 +#: 6f2ececf2d9343168654fb760827432c +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "" + +#: ../../old_changelog.rst:208 +#: 848cc6a5cbe640a8b408b8caefef26d6 +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "" + +#: ../../old_changelog.rst:209 +#: 72d5267029d440f684998b01499a2dd6 +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "" + +#: ../../old_changelog.rst:210 +#: cdf1e096672b47babfa4df007a6ecbdc +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "" + +#: ../../old_changelog.rst:211 +#: c814ab72983c487baac039d53c38f3cc +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "" + +#: ../../old_changelog.rst:212 +#: 4fb5464cd6af40b49786e2464c836abc +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "" + +#: ../../old_changelog.rst:218 +#: 8c04592e21c540eda4048de13a69dbdb +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "" + +#: ../../old_changelog.rst:219 +#: 1529d64a898648f78bded6a62c04bd72 +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "" + +#: ../../old_changelog.rst:220 +#: 1bd0a0d6cc5348c9baf970007cfa6a4e +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "" + +#: ../../old_changelog.rst:221 +#: aa405cd1adec434588c8b174ee19415e +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "" + +#: ../../old_changelog.rst:222 +#: e2785fae147943bbbd6f758ccacbec4d +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "" + +#: ../../old_changelog.rst:223 +#: dd9c5eeb1bb0474585b533b600c34c27 +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "" + +#: ../../old_changelog.rst:224 +#: a36177f33395415bae1711f1241d5ec5 +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "" + +#: ../../old_changelog.rst:225 +#: d8bb7ccaaee846a1b3cba95eb5f42d86 +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "" + +#: ../../old_changelog.rst:226 +#: 69870ecc5e7c426f9336aee1b2b7a9ca +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "" + +#: ../../old_changelog.rst:227 +#: 100101ec2d7042c081f28dc8fac3c53c +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "" + +#: ../../old_changelog.rst:228 +#: bb1dc29025e4457d920f0baedad19d38 +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "" + +#: ../../old_changelog.rst:229 +#: 22bfaf396de14606a0a5fbc847cda53c +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "" + +#: ../../old_changelog.rst:234 +#: 789ccf8b8d80433e9b1f9ba299607b22 +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "" + +#: ../../old_changelog.rst:235 +#: 558e6607bf3946dd821afee545260471 +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "" + +#: ../../old_changelog.rst:236 +#: b92d50d5a8b144af9e7bdfa05dd34bd4 +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "" + +#: ../../old_changelog.rst:237 +#: 40dc68da0cbd455b9d0e3158d8647ccd +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "" + +#: ../../old_changelog.rst:238 +#: 8193921eb69746278b513bd4ac55f810 +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "" + +#: ../../old_changelog.rst:239 +#: cdba632c741d4ab58fc5457382e27077 +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "" + +#: ../../old_changelog.rst:240 +#: 993a265e912348678e7c93c74432847b +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "" + +#: ../../old_changelog.rst:241 +#: 4413cf4b251e40f9a00fd23913c040f9 +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "" + +#: ../../old_changelog.rst:246 +#: 303eec99716d480fb54e5a806e51a743 +msgid "v1.5.1" +msgstr "" + +#: ../../old_changelog.rst:251 +#: 5494410b5e9c4b62bae3a9abb74ffbd9 +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "" + +#: ../../old_changelog.rst:252 +#: 74ce2df0dd1443b1ac401d14f6a92007 +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "" + +#: ../../old_changelog.rst:253 +#: ce45479ca5c74bf1920548413322cea2 +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "" + +#: ../../old_changelog.rst:254 +#: 4afa3f29da604adb98a6fe12f46b69cb +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "" + +#: ../../old_changelog.rst:255 +#: da46975d69d74dc3b57e29d8e97850e0 +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "" + +#: ../../old_changelog.rst:256 +#: b3ecbd42febb4cb9afb0fa4b7163cde4 +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "" + +#: ../../old_changelog.rst:257 +#: 63109f9ee740468d961c2f16bc142b49 +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "" + +#: ../../old_changelog.rst:258 +#: 29f60cb3c57041ebb2316de15cbf6a55 +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "" + +#: ../../old_changelog.rst:263 +#: fd3afa10f0534576aae22fb7687e5c2c +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "" + +#: ../../old_changelog.rst:264 +#: 008d9ba5556140e487bd230df7f70615 +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "" + +#: ../../old_changelog.rst:265 +#: 3af3c1b8488040ab95f8bf2ea817f44b +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "" + +#: ../../old_changelog.rst:266 +#: ab0d246b3d6441f0acae3214bf4f100b +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr "" + +#: ../../old_changelog.rst:271 +#: 10984e12183b4de9867d2f770baaa19b +msgid "v1.5.0" +msgstr "" + +#: ../../old_changelog.rst:273 +#: b76c31885c704edc89d161a7e64de356 +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "" + +#: ../../old_changelog.rst:276 +#: b12a35a1a68746ea84ab39ac90ba4fe0 +msgid "API Changes" +msgstr "" + +#: ../../old_changelog.rst:278 +#: 828d3ffb49484051aa3c2b5c47af7035 +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "" + +#: ../../old_changelog.rst:279 +#: 9e71a3ac992c4a76aa29bfe9012021e3 +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "" + +#: ../../old_changelog.rst:284 +#: 129e78967e4a4ba39e81263a7453cc12 +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "" + +#: ../../old_changelog.rst:285 +#: 3c204598b5a64286b395490b196dd65d +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "" + +#: ../../old_changelog.rst:286 +#: f23df9f9d1c74ff4be6ec0280dfc6d8c +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "" + +#: ../../old_changelog.rst:287 +#: a093c6e7570e49f0a51c6dd0af367d01 +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "" + +#: ../../old_changelog.rst:288 +#: e7a5419a7cd64d5b80c12db4afef1b50 +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "" + +#: ../../old_changelog.rst:289 +#: 133b840b129042b09d17ec6db4dea0d6 +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "" + +#: ../../old_changelog.rst:290 +#: 1df6243130b840a097e5e00f2f58157f +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "" + +#: ../../old_changelog.rst:291 +#: bc32a3280def41b18e47d984e92b5f31 +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "" + +#: ../../old_changelog.rst:292 +#: 0b9d301adb0e42deb749d5cec6ac499d +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "" + +#: ../../old_changelog.rst:293 +#: a66430bc45f94d669eb6867563e7eb32 +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "" + +#: ../../old_changelog.rst:294 +#: 941391c0a8c94d658cc28942e5788b32 +msgid "This seems currently unused API wise." +msgstr "" + +#: ../../old_changelog.rst:296 +#: 71cdcbf5761647899b9a3415af3b6697 +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "" + +#: ../../old_changelog.rst:297 +#: 392776121e374a24b86ed73162a6f615 +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "" + +#: ../../old_changelog.rst:298 +#: 42afab58d537482ca2c546afccc48f71 +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "" + +#: ../../old_changelog.rst:299 +#: ed8a5a80bf32438ea8c845855d6b9b90 +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "" + +#: ../../old_changelog.rst:304 +#: ../../old_changelog.rst:338 +#: 8c0934ceb78c4f1693ffe335151b2fa8 +#: bbe23bac78ca4dd28f187968bda5eea5 +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "" + +#: ../../old_changelog.rst:305 +#: ../../old_changelog.rst:339 +#: 424cc5829d774465a38c056fef25a32b +#: 01bd7be1c4304e208005be731ba4afd6 +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "" + +#: ../../old_changelog.rst:306 +#: ../../old_changelog.rst:340 +#: 9eaaa5136a534eef8985ae7b55a07932 +#: 5a400f231b0f431e88023cec102cc1f7 +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "" + +#: ../../old_changelog.rst:307 +#: ../../old_changelog.rst:341 +#: 88a01d4747cf40c680c7fe0fb9f3d1f2 +#: 60986dddc4514d5f8439bb750827cc8a +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "" + +#: ../../old_changelog.rst:308 +#: ../../old_changelog.rst:342 +#: d282047850f0430cbf53c5cc4102453e +#: b0334e961f684210a4a187503f27acd1 +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "" + +#: ../../old_changelog.rst:309 +#: ../../old_changelog.rst:343 +#: 08beeb46d8e34e25831effd28dedb269 +#: 830e4e03694c4a4d87822e6869a230a4 +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "" + +#: ../../old_changelog.rst:310 +#: ../../old_changelog.rst:344 +#: e5b9d4e38bc14f8fbfdde8181d940040 +#: 21306977bea14641b77f1a9ec1faabb6 +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "" + +#: ../../old_changelog.rst:311 +#: ../../old_changelog.rst:345 +#: b96344b6c603408dab9ca02983fffb11 +#: 16b3062f67904ff2ae561b2546794925 +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "" + +#: ../../old_changelog.rst:312 +#: ../../old_changelog.rst:346 +#: 4cd3dabc92e946b1a8eff43a8af84c68 +#: e3ff10a00de94a0b8ca18fb076c7da9d +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "" + +#: ../../old_changelog.rst:313 +#: ../../old_changelog.rst:347 +#: dac3191f3dbf46fe97c6c31f9a63ce5b +#: 14ffcd2aaf65405e87ca219d9dc793d1 +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "" + +#: ../../old_changelog.rst:314 +#: ../../old_changelog.rst:348 +#: 3c59a15f5ce145968f60fc22e8be33fc +#: 820a6a6dd5614720bc093ab09246e0df +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "" + +#: ../../old_changelog.rst:319 +#: 81ade28f767a448c8891d0c9f0af3fe5 +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "" + +#: ../../old_changelog.rst:320 +#: ../../old_changelog.rst:353 +#: 69a6f356a382470a93a0254e1ef839fb +#: 09f4349738e94800b64e5fac16700400 +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "" + +#: ../../old_changelog.rst:321 +#: 6eabb97dab2645f68a540785b651f41a +msgid "Gateway rate limits are now handled." +msgstr "" + +#: ../../old_changelog.rst:322 +#: 092d27363495423898dd836604163f0b +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "" + +#: ../../old_changelog.rst:323 +#: b90a6d56a2a74446a688034872c88075 +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "" + +#: ../../old_changelog.rst:324 +#: e199778b8c4e4710ae92fe337160ea38 +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "" + +#: ../../old_changelog.rst:325 +#: fd0018f1ecf249598ea84f0c89345276 +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "" + +#: ../../old_changelog.rst:326 +#: ../../old_changelog.rst:354 +#: 090948d9adb04e6d9f49c1bd6de23a65 +#: 4ae78861471e4898be05b97f358820b0 +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "" + +#: ../../old_changelog.rst:331 +#: 033fe6a2b5f746c2852bb7d920ccd40d +msgid "v1.4.2" +msgstr "" + +#: ../../old_changelog.rst:333 +#: acd09dc0788248c78f3b8710f895df5d +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "" + +#: ../../old_changelog.rst:359 +#: ecd8be61f7374c9792ac2215ceeed38c +msgid "v1.4.1" +msgstr "" + +#: ../../old_changelog.rst:364 +#: b1f8498cf82f4210a828c8ce83f34f49 +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "" + +#: ../../old_changelog.rst:365 +#: 166552fd8c854e6db3729c8ac07bf9f4 +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "" + +#: ../../old_changelog.rst:366 +#: e9f4a3a3be194fedbe32bd94edfc274c +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "" + +#: ../../old_changelog.rst:371 +#: 29499153bfa44529b388e924c3e35752 +msgid "v1.4.0" +msgstr "" + +#: ../../old_changelog.rst:373 +#: 36f10aae7b534b2c917cf9e84e44e9e8 +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "" + +#: ../../old_changelog.rst:378 +#: e1aab67a429f4ce29c6f384b1e142f65 +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "" + +#: ../../old_changelog.rst:379 +#: ad3114f5c85b4b8bbdcd4cb1d13e96a5 +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "" + +#: ../../old_changelog.rst:380 +#: d06782ffb1514f8a8d98c03346204e64 +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "" + +#: ../../old_changelog.rst:382 +#: dbdf73c2aa46481789f70a7cbc01a923 +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr "" + +#: ../../old_changelog.rst:383 +#: 96f37c68a624441e9309f88ab5f534aa +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "" + +#: ../../old_changelog.rst:384 +#: 46f506fad9c648458b50eba46a1f110a +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "" + +#: ../../old_changelog.rst:385 +#: a811e1c54bd941c1b27efe7f3383bfc1 +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "" + +#: ../../old_changelog.rst:386 +#: f5c40023553848668f6f445e7c2d024c +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "" + +#: ../../old_changelog.rst:387 +#: bea86a6578ae438cb36217e092c606e0 +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "" + +#: ../../old_changelog.rst:388 +#: 1964754bcbfb4fd3a7b8862154346b51 +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "" + +#: ../../old_changelog.rst:390 +#: b171f740fdf04ad68b61129a900ef24c +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "" + +#: ../../old_changelog.rst:391 +#: 81f61496186241f2844dc1b0ff8c8c4e +msgid "This adds :class:`Template` to read a template's information." +msgstr "" + +#: ../../old_changelog.rst:392 +#: f9851cb9d0114aabb6785ddd9e7bdb32 +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr "" + +#: ../../old_changelog.rst:393 +#: 97faa677b970448e86f167b5ed81de11 +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr "" + +#: ../../old_changelog.rst:394 +#: ec29d1106c08437ca9cfce3d5d13fb3b +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "" + +#: ../../old_changelog.rst:396 +#: c1e6e4b023734d0191da0a5c15900143 +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "" + +#: ../../old_changelog.rst:397 +#: 0e71c3d54bf64299a35f05a8e693ae24 +msgid ":class:`Integration` is used to read integration information." +msgstr "" + +#: ../../old_changelog.rst:398 +#: fc7ff73ee2af4046a4665f5fc77796e9 +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr "" + +#: ../../old_changelog.rst:399 +#: 7e2eb62f1c264d6891ceb855d4591dbc +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr "" + +#: ../../old_changelog.rst:400 +#: bfa5a4a346624ca79e54d3642d01bb5c +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr "" + +#: ../../old_changelog.rst:401 +#: a86a823956254da4b3b49a4c51004e95 +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr "" + +#: ../../old_changelog.rst:402 +#: 81278710074e4a90a19dfe08c9e09b2c +msgid ":meth:`Integration.delete` will delete an integration." +msgstr "" + +#: ../../old_changelog.rst:403 +#: bb332103d9ad4de7896c75c4f2d1edee +msgid ":meth:`Integration.sync` will sync an integration." +msgstr "" + +#: ../../old_changelog.rst:404 +#: f560a2e6b52c4de0929759c11f5e0979 +msgid "There is currently no support in the audit log for this." +msgstr "" + +#: ../../old_changelog.rst:406 +#: c1c8c4eae418422eb3dc6dde96d640e9 +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "" + +#: ../../old_changelog.rst:407 +#: cd8a55de2dd449698d0ad31ef8ccb437 +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "" + +#: ../../old_changelog.rst:408 +#: eb62216524a64245ac23e0629b972af4 +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "" + +#: ../../old_changelog.rst:409 +#: 039a71ed6eb34a948b59d222a94b32cb +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "" + +#: ../../old_changelog.rst:410 +#: f0bd2c690f1742bba6462fdc4463fe42 +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "" + +#: ../../old_changelog.rst:411 +#: d4758050bc2645fb8c70ea8b1afa8c3f +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "" + +#: ../../old_changelog.rst:412 +#: c08fbae6ca0948f18ffe72ea22e53ebd +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "" + +#: ../../old_changelog.rst:413 +#: 234a8225b8074e1f83c34d9083c5b753 +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "" + +#: ../../old_changelog.rst:414 +#: f3b7e6e6b34444f4a332e9f11b67dd70 +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "" + +#: ../../old_changelog.rst:415 +#: 5f219d25bbce4f43a26882f4829d5cd7 +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "" + +#: ../../old_changelog.rst:416 +#: e473f80e237243b6b58aa6a0ace7a203 +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "" + +#: ../../old_changelog.rst:417 +#: e769df0c96904de1a33f7a5f1c2bc25b +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "" + +#: ../../old_changelog.rst:418 +#: d1226b31f9d044e2bc454e19b6390d94 +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "" + +#: ../../old_changelog.rst:419 +#: 15224824df754488b5da3a5364f6884f +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "" + +#: ../../old_changelog.rst:420 +#: eb43cff3360b4d93a8c0e75b17bc7914 +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "" + +#: ../../old_changelog.rst:421 +#: 1079cadf86634cfda77479438891a867 +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "" + +#: ../../old_changelog.rst:422 +#: ca6f6d68f19e4b839a2ab54b42c82ae8 +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "" + +#: ../../old_changelog.rst:423 +#: caf2ddceb3b048579d1d0103efe59d0b +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "" + +#: ../../old_changelog.rst:424 +#: 455fce753998444894fd03d989221870 +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "" + +#: ../../old_changelog.rst:425 +#: 492a3ff96db34055ab5ef8db9d7aa0b3 +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "" + +#: ../../old_changelog.rst:426 +#: b0afabd305984420b30a41250862de60 +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "" + +#: ../../old_changelog.rst:427 +#: e7a39d7fd6b84ef3be0cc1a9274bfb96 +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "" + +#: ../../old_changelog.rst:428 +#: 9551966f0b6b4b28b4ecb97a1451bdf5 +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "" + +#: ../../old_changelog.rst:429 +#: f389ab47cdfd47d798d8b37185fc49a0 +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "" + +#: ../../old_changelog.rst:435 +#: c36502f015ad41568692c520d61ca1ae +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "" + +#: ../../old_changelog.rst:436 +#: e30308967add451eb9baa32dd3f6eb23 +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "" + +#: ../../old_changelog.rst:437 +#: 61ed117064c447c7a073299cbbaa6a8b +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "" + +#: ../../old_changelog.rst:438 +#: 4cc3e7b4c70e4318ad4e70383b01efdf +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "" + +#: ../../old_changelog.rst:439 +#: 3c22f73ec818468eb2d17ca5907b5134 +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "" + +#: ../../old_changelog.rst:440 +#: 65f57a68db644466bdc9e78e24c5e0b6 +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "" + +#: ../../old_changelog.rst:441 +#: bc0fef5abc41480e916541b2d5a928ea +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "" + +#: ../../old_changelog.rst:442 +#: 5c8a8eb5bcb84681afae247547662292 +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "" + +#: ../../old_changelog.rst:443 +#: 896991c98dbe4c8ea001881a52fe6ed2 +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "" + +#: ../../old_changelog.rst:444 +#: 06aba689796e43f9bd626e060d7a0c2b +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "" + +#: ../../old_changelog.rst:445 +#: adf9c5dfaf5f4c1da05edc7a0c233431 +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "" + +#: ../../old_changelog.rst:446 +#: 6251bac44c604c9892d13c7ef415983d +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "" + +#: ../../old_changelog.rst:447 +#: 114807e8b60c4ab98e3ec6e0517a08a8 +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "" + +#: ../../old_changelog.rst:448 +#: ab2cedd01cc64939aca8c9d9d1c858ea +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "" + +#: ../../old_changelog.rst:449 +#: 992b675d138e40d48549f9e054fb37ad +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "" + +#: ../../old_changelog.rst:450 +#: 3fbabe76f198438686c278bf714d8afc +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "" + +#: ../../old_changelog.rst:451 +#: 0824b83c8a7141138ed5ba9133150e03 +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "" + +#: ../../old_changelog.rst:452 +#: 52c5a989164a43c28b39046c79ba1e95 +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "" + +#: ../../old_changelog.rst:453 +#: cbd274196bba44189344f78bc604d638 +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "" + +#: ../../old_changelog.rst:454 +#: ee1c0df31a834546bb907abe74310265 +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "" + +#: ../../old_changelog.rst:455 +#: 21062660552d482e9794d4b19d8a22c0 +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "" + +#: ../../old_changelog.rst:456 +#: 5068af443e1344bfb7cb3ae05aa9a7ee +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "" + +#: ../../old_changelog.rst:457 +#: 6730fbacf35b42fda9028f1908c9e62d +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "" + +#: ../../old_changelog.rst:463 +#: b8cad1bdeea94d40980d3b5877e88912 +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "" + +#: ../../old_changelog.rst:464 +#: 2ccf186629b245aab640745b86c0b8a0 +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr "" + +#: ../../old_changelog.rst:465 +#: bc3f1514d06e4ffa82f5958440014458 +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "" + +#: ../../old_changelog.rst:466 +#: 420f662046664e3c955aa818b7e812f0 +msgid ":meth:`TextChannel.follow`" +msgstr "" + +#: ../../old_changelog.rst:467 +#: 95dde2dfd9a14a6eb12c6f7bb322987a +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr "" + +#: ../../old_changelog.rst:468 +#: dc69c22bc09149729c7646d3e156bea0 +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr "" + +#: ../../old_changelog.rst:470 +#: 9e322ad210b943b4bef06ecef48a9d40 +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "" + +#: ../../old_changelog.rst:471 +#: e47d6e04571341239630b3c4152906b9 +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "" + +#: ../../old_changelog.rst:472 +#: b220dd6ab8614755a7bb3c496a65e817 +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "" + +#: ../../old_changelog.rst:473 +#: f2d9b55aea0c4a8d94d05409d9956864 +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "" + +#: ../../old_changelog.rst:474 +#: aa1ce06a0a1b45058956deb9e7e9f435 +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "" + +#: ../../old_changelog.rst:475 +#: da36bfb601384d02aa09c58ae71a1ddd +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "" + +#: ../../old_changelog.rst:476 +#: 96474a8793a5431d8f05525da921444a +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "" + +#: ../../old_changelog.rst:481 +#: 3f9d816c70db4a8cac8f50f986ea272b +msgid "v1.3.4" +msgstr "" + +#: ../../old_changelog.rst:486 +#: 115d2cccd4bf4d719c0494b0bc53fa3a +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "" + +#: ../../old_changelog.rst:491 +#: 9e212adc90f74e0ca5276d672df60e19 +msgid "v1.3.3" +msgstr "" + +#: ../../old_changelog.rst:496 +#: 96b3769677394f6bbb5f9309011e3f39 +msgid "Change default WS close to 4000 instead of 1000." +msgstr "" + +#: ../../old_changelog.rst:497 +#: 942953724fa34529a1b25ae7973280d6 +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "" + +#: ../../old_changelog.rst:499 +#: 8696fa14b4bf4ed8bbda9716eda490c3 +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "" + +#: ../../old_changelog.rst:504 +#: 49b2fb2a70564e5f96322b3dbc59093c +msgid "v1.3.2" +msgstr "" + +#: ../../old_changelog.rst:506 +#: e633fa6bc66c46fba0bf95d625f0a1c9 +msgid "Another minor bug fix release." +msgstr "" + +#: ../../old_changelog.rst:511 +#: b1a8cbd06a6345db970bd23128ecf3eb +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "" + +#: ../../old_changelog.rst:512 +#: 0875870fba694dd4a10bc6b1bd3030eb +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr "" + +#: ../../old_changelog.rst:513 +#: 9513995a528f4cd2a3b151fee8bd9c72 +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "" + +#: ../../old_changelog.rst:514 +#: 3bfca67602ea47c3bf1994ea6c6e2f54 +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "" + +#: ../../old_changelog.rst:515 +#: f3d21c46aa5d4c35a8d69b69aa64e8a7 +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "" + +#: ../../old_changelog.rst:516 +#: a152a85726ae4833a9a158e081906066 +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "" + +#: ../../old_changelog.rst:517 +#: c414ff9f9afb45b4bac514eabfe33ec9 +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "" + +#: ../../old_changelog.rst:522 +#: 73688aae90b74dc6992957cda76afb91 +msgid "v1.3.1" +msgstr "" + +#: ../../old_changelog.rst:524 +#: fb7259a89de141518940ab53b7118c78 +msgid "Minor bug fix release." +msgstr "" + +#: ../../old_changelog.rst:529 +#: 1788832890e5432491707257ba361a1d +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "" + +#: ../../old_changelog.rst:530 +#: 7732c78edba24e769c63373ca655040c +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "" + +#: ../../old_changelog.rst:535 +#: 119c187b71124bf98999f351e134e1fc +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "" + +#: ../../old_changelog.rst:536 +#: ce43892559af4e9d9053f2a27444d1b1 +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "" + +#: ../../old_changelog.rst:541 +#: ef6b11460b9744f2b62136f8ffaaa66a +msgid "v1.3.0" +msgstr "" + +#: ../../old_changelog.rst:543 +#: 87ad557ce0c24885bdf43fc45061284c +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "" + +#: ../../old_changelog.rst:548 +#: aec2b98070ce401e8b1ca012e1bf6e45 +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "" + +#: ../../old_changelog.rst:549 +#: 820ea45ae93c4ba7b726d3bd44d84e75 +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "" + +#: ../../old_changelog.rst:550 +#: f4c00a233af340fcb0085afd7d1f51a9 +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "" + +#: ../../old_changelog.rst:551 +#: 1acf50835daa4c9d9a55815d3b08aed7 +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "" + +#: ../../old_changelog.rst:552 +#: 9259271a4d244d13b437f90beafd4e78 +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "" + +#: ../../old_changelog.rst:553 +#: df5c9d0093004697a88e8a558b2e6e93 +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "" + +#: ../../old_changelog.rst:554 +#: 40fe9267ccd2476ba620b3ca5f262197 +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "" + +#: ../../old_changelog.rst:555 +#: 42cb1397d3ac435fa5ed3b8ea81ad549 +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "" + +#: ../../old_changelog.rst:556 +#: 72379b04191642b3b238b05b7bb80548 +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "" + +#: ../../old_changelog.rst:557 +#: ed8974e34b6443dfa915e4490667e4b3 +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "" + +#: ../../old_changelog.rst:558 +#: 0d950e8c55dd4f8586e0127ea8115e7e +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "" + +#: ../../old_changelog.rst:559 +#: 0e5cb164e2ac4509b46c6457ce34548c +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "" + +#: ../../old_changelog.rst:560 +#: 6c1eac3232f14f6c9019ab7d740eb64d +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "" + +#: ../../old_changelog.rst:561 +#: 6583b46d10c949c29acb8848850598e8 +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "" + +#: ../../old_changelog.rst:562 +#: 62cc6137853f476ea15a032b8c8519b5 +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "" + +#: ../../old_changelog.rst:563 +#: 94d9d687d2da4e3b87fdfcb9fcd49664 +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "" + +#: ../../old_changelog.rst:564 +#: 31fdead7c6e8472989a0507d527e2932 +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "" + +#: ../../old_changelog.rst:565 +#: 5e307f47cbc04ed29b2209318a4bac63 +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "" + +#: ../../old_changelog.rst:566 +#: dec4a576e7e5419f82e093c7ec3f77c1 +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "" + +#: ../../old_changelog.rst:567 +#: 9ad042fd34ed4df5b81eaad3ca88574e +msgid "Note that integration support is not finalized." +msgstr "" + +#: ../../old_changelog.rst:569 +#: 3390e29cc66644e1a1a7e1df6f9367c5 +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "" + +#: ../../old_changelog.rst:570 +#: 3f3f481b58324d67a01ebe8d09a38658 +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "" + +#: ../../old_changelog.rst:571 +#: 7aa7360276774dcb9c5d42f0e008d0ed +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "" + +#: ../../old_changelog.rst:572 +#: 2d05339f79e64279a5ec781e0560da3e +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "" + +#: ../../old_changelog.rst:573 +#: f3dabdcb056142ee9f4d72efe16b599f +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "" + +#: ../../old_changelog.rst:574 +#: 341e2ad248ad4ea0bb805dfd999fcd4a +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "" + +#: ../../old_changelog.rst:575 +#: b767a74f1cd74a2782b619d528041130 +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "" + +#: ../../old_changelog.rst:576 +#: a85ffc6ba20f41808b72c7493ec31e68 +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "" + +#: ../../old_changelog.rst:577 +#: 6dc312fd30bd447e8842d34cc7d6d8a2 +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "" + +#: ../../old_changelog.rst:579 +#: 2688d9d068b241d4b680b0b5f47bb36d +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "" + +#: ../../old_changelog.rst:580 +#: 878aec6500b346dda36eb646a08ce091 +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "" + +#: ../../old_changelog.rst:581 +#: ccb2835d76a542bbbffee1e2b7ba0be9 +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "" + +#: ../../old_changelog.rst:582 +#: 7a8afdb6988d46028d717bed39558c6a +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "" + +#: ../../old_changelog.rst:583 +#: 67f65835c49c4cb288694b65171c8420 +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "" + +#: ../../old_changelog.rst:584 +#: 72dc3853313b490daa47774a7abb1d77 +msgid ":attr:`Permissions.manage_permissions`" +msgstr "" + +#: ../../old_changelog.rst:585 +#: 1b59de54f4a54fa7a0d4dedfe39d29d3 +msgid ":attr:`Permissions.view_channel`" +msgstr "" + +#: ../../old_changelog.rst:586 +#: 69de6d9d1c0b43bd94b03da2c1f5d5ee +msgid ":attr:`Permissions.use_external_emojis`" +msgstr "" + +#: ../../old_changelog.rst:588 +#: bcfef40f9a7842e680666eed8587d004 +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "" + +#: ../../old_changelog.rst:589 +#: 1a3a71d81ec84b11bca519c67ce653a9 +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "" + +#: ../../old_changelog.rst:590 +#: a4171f744d8d4df8a55fb17434885c93 +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "" + +#: ../../old_changelog.rst:592 +#: 96849cffb1bb45728aacf0318bb1f3d5 +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "" + +#: ../../old_changelog.rst:593 +#: 48089f96c59e43d6bde2e8e9957001fa +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "" + +#: ../../old_changelog.rst:594 +#: 632244af79b34909bae166762c227acf +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr "" + +#: ../../old_changelog.rst:595 +#: 42938be4bae043348325c04520fa440b +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr "" + +#: ../../old_changelog.rst:597 +#: 75fb67b0529b45a494728d4e50adcb6d +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "" + +#: ../../old_changelog.rst:598 +#: 0249ad2dd7254e5abbf6ee39d396afb7 +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "" + +#: ../../old_changelog.rst:599 +#: e8e5195b30cb44a38fce09912a709a63 +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "" + +#: ../../old_changelog.rst:600 +#: d92c3af3b4594da58fd1e4f5903d04a0 +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "" + +#: ../../old_changelog.rst:601 +#: 3447dec897544d1eb0752f24736dbec3 +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "" + +#: ../../old_changelog.rst:602 +#: 26adbcbe9c9a466eb657b4130478bf3b +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "" + +#: ../../old_changelog.rst:603 +#: cf3f836f411c4075806478bf81367997 +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "" + +#: ../../old_changelog.rst:604 +#: 92a2afd0235d4c4795512f9e78876cbd +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "" + +#: ../../old_changelog.rst:605 +#: 1464ac88f01e41519f1e26427404337e +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "" + +#: ../../old_changelog.rst:606 +#: ea0ee3d087de4b19a1480eeba4c1cbf0 +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "" + +#: ../../old_changelog.rst:607 +#: cd207ea2fa444c8bb6df15e75bb464c6 +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "" + +#: ../../old_changelog.rst:608 +#: 0176fb8ca8da4ae49df0066c2259639d +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "" + +#: ../../old_changelog.rst:609 +#: dec5bd3173924b8c8791325d5a6b520a +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "" + +#: ../../old_changelog.rst:614 +#: e00711a7903147f8a4bdb888b4309f0e +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "" + +#: ../../old_changelog.rst:615 +#: af1470c4fd594491a2691eff3036b15d +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "" + +#: ../../old_changelog.rst:616 +#: e7a27cebaf3c4cdebc99422fd53ea313 +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "" + +#: ../../old_changelog.rst:617 +#: 1380092aff0a4028b0b670b759dedc34 +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "" + +#: ../../old_changelog.rst:618 +#: dd8fdb4c46894258b8221c2301d13f9f +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "" + +#: ../../old_changelog.rst:619 +#: fdf595c42db94855a7f8af6853af630e +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "" + +#: ../../old_changelog.rst:620 +#: 1d13b9e881944ab4a495c23dc3f758b1 +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "" + +#: ../../old_changelog.rst:621 +#: 69b4c0416c7d463bbb78f21f2d5892c9 +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "" + +#: ../../old_changelog.rst:622 +#: 31c9120e4b424b23b5a66ed2e1c95f4e +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "" + +#: ../../old_changelog.rst:623 +#: 4c641a9e0d9646b5ad775f6256f23a25 +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "" + +#: ../../old_changelog.rst:624 +#: e06f6e77f0b1430eaaecc014a836da6d +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "" + +#: ../../old_changelog.rst:625 +#: 857422517b2b4b41894d102a976dc047 +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "" + +#: ../../old_changelog.rst:626 +#: 9e207f5368814e4288a6e4119d5dc297 +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "" + +#: ../../old_changelog.rst:627 +#: 84d1874e4cee4c7f9b303e5278c1b50b +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "" + +#: ../../old_changelog.rst:628 +#: a2a25fd5ddf54ff08304c4b8b0813b1c +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "" + +#: ../../old_changelog.rst:629 +#: 3acbd2f7dd194c469a00d357419ed4c3 +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "" + +#: ../../old_changelog.rst:630 +#: 3ff6e7201a974e6eaffb391ab860730d +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "" + +#: ../../old_changelog.rst:631 +#: 3e28fd66ff7e4bd3b1c292f90f0744d7 +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "" + +#: ../../old_changelog.rst:632 +#: 528ebdf1a85049beb1234830e27cac14 +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "" + +#: ../../old_changelog.rst:633 +#: f834745510e24753a8617ccae5bbe89d +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "" + +#: ../../old_changelog.rst:638 +#: d15af8d97136478a821a5156cee0fc2c +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "" + +#: ../../old_changelog.rst:639 +#: 51459269b79f432cb6f874ede7ffcc1e +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "" + +#: ../../old_changelog.rst:640 +#: 4b86965130d34abdb3aeb31b6e530a76 +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "" + +#: ../../old_changelog.rst:641 +#: a20556f4b00f4c64a9bf20b596ea3f31 +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr "" + +#: ../../old_changelog.rst:642 +#: 8fdd1fdd3b86431180b62640480972d1 +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "" + +#: ../../old_changelog.rst:643 +#: 9163af8a775746c1bf6fe13b8bcb57a7 +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "" + +#: ../../old_changelog.rst:644 +#: 3660b72fb04e4fed852510d1d705b550 +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "" + +#: ../../old_changelog.rst:645 +#: fe40aee844844a3eb90f5bdc47f33b18 +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "" + +#: ../../old_changelog.rst:646 +#: 88cf03e2442d4af8ae9a786809a507df +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "" + +#: ../../old_changelog.rst:647 +#: 9363c44d08cb418286b07eb677d89465 +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "" + +#: ../../old_changelog.rst:649 +#: 7baaea1f94bf40b78621647e39ce1cea +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "" + +#: ../../old_changelog.rst:650 +#: 01555fa74acb4b1c87546bf09b15cc86 +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "" + +#: ../../old_changelog.rst:651 +#: 659cb6b920e749608386e6443eba88fc +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "" + +#: ../../old_changelog.rst:652 +#: 7c4c03b56f104130a32b4f284d22b8ac +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "" + +#: ../../old_changelog.rst:653 +#: e22fffbbaab54a318b26af9e19ba64bf +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "" + +#: ../../old_changelog.rst:654 +#: 1152570e7c1b4aedb0b78ab5716f4d71 +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "" + +#: ../../old_changelog.rst:655 +#: cc57562641f246f8904d772a9acc0534 +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "" + +#: ../../old_changelog.rst:660 +#: 32772be63a074f9790a3980da071a0df +msgid "v1.2.5" +msgstr "" + +#: ../../old_changelog.rst:665 +#: 4cc02c6c550d41d88b70722e41d64eb9 +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "" + +#: ../../old_changelog.rst:670 +#: 8d35ee473cd74d738146ce2d657df952 +msgid "v1.2.4" +msgstr "" + +#: ../../old_changelog.rst:675 +#: 41d3f2674654483da67ade0a602276ee +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "" + +#: ../../old_changelog.rst:676 +#: 4f98a741acca4cc0b69676d9fa0cad61 +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "" + +#: ../../old_changelog.rst:677 +#: 8b1a995241694488990f879a2ab530a2 +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "" + +#: ../../old_changelog.rst:678 +#: ff84922259cf462092e0ba88f0dc84cc +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "" + +#: ../../old_changelog.rst:679 +#: 9e030c2cfc12478ead5e21db6a98de2d +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "" + +#: ../../old_changelog.rst:680 +#: 2137be9a8eb44ad2a4dffa760e0ca75b +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "" + +#: ../../old_changelog.rst:685 +#: 82095021bdb24fc69b5efeface54533d +msgid "v1.2.3" +msgstr "" + +#: ../../old_changelog.rst:690 +#: ec68a62956584222a654ac8c5a9f9a0e +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "" + +#: ../../old_changelog.rst:691 +#: 8b04ba4fa4b547f785775b36dec0dc32 +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "" + +#: ../../old_changelog.rst:692 +#: ff4a94f8937f40c4acf04c945d980e64 +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "" + +#: ../../old_changelog.rst:693 +#: fc15de482fa4497384fda408ce9eb801 +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "" + +#: ../../old_changelog.rst:694 +#: 49729c6a970b43f9a2a30357e74a6089 +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "" + +#: ../../old_changelog.rst:699 +#: bb0503ef74fd4792a5873fd76d5598e4 +msgid "v1.2.2" +msgstr "" + +#: ../../old_changelog.rst:704 +#: 716e108d5bf24ecf95ca6f914686e494 +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "" + +#: ../../old_changelog.rst:709 +#: b934da94e2344ef681e124d7d1acc9dc +msgid "v1.2.1" +msgstr "" + +#: ../../old_changelog.rst:714 +#: 5dd199bbfe5f41149d4bd595d3538b53 +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr "" + +#: ../../old_changelog.rst:715 +#: 8ff19fa9e07c40ad9f634f41bf898937 +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "" + +#: ../../old_changelog.rst:720 +#: e6704ee9107042a08dffa820a38e14d6 +msgid "v1.2.0" +msgstr "" + +#: ../../old_changelog.rst:722 +#: 6aea4acec2754d789c4fb155029ab536 +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "" + +#: ../../old_changelog.rst:727 +#: d535394e3da64337bf2f95f4c68328f5 +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "" + +#: ../../old_changelog.rst:728 +#: 85c89e00a1f945e8a29d2dc681191c42 +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "" + +#: ../../old_changelog.rst:729 +#: 13bf53570ca44168ad4671112320559a +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "" + +#: ../../old_changelog.rst:730 +#: 8248f8c75b7843d69b6281c6349a6b9f +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "" + +#: ../../old_changelog.rst:731 +#: d02833490c9b4a31bc76919404c42774 +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "" + +#: ../../old_changelog.rst:732 +#: e84966586c9041f38f710e179d706d7d +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "" + +#: ../../old_changelog.rst:733 +#: e9f825982b3b4b4a85a97392149ef455 +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "" + +#: ../../old_changelog.rst:734 +#: abed4b0434e14deb93b9dd7816bfe7de +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "" + +#: ../../old_changelog.rst:735 +#: 8496b053a08b4ac5a369cc182b2253bc +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "" + +#: ../../old_changelog.rst:736 +#: 5562dc76bbf64aa28462097f28ebb65c +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "" + +#: ../../old_changelog.rst:737 +#: 77e326b2fb344f3684cedea2385757f5 +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "" + +#: ../../old_changelog.rst:738 +#: 8bf0910d531845a8868bee944f1a1f5d +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "" + +#: ../../old_changelog.rst:739 +#: c421f16c853f4c87be81c7c4d285437f +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "" + +#: ../../old_changelog.rst:740 +#: 3f24421df24d43e19ef1b7e0f8e9f617 +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "" + +#: ../../old_changelog.rst:741 +#: 051a702716434442b559300f7df01184 +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "" + +#: ../../old_changelog.rst:742 +#: cd8f8bd80eb64fe4a61bca6213a0d5ff +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "" + +#: ../../old_changelog.rst:743 +#: e1bc5c5ca95b4a66a2af54d1a0c4b655 +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "" + +#: ../../old_changelog.rst:744 +#: ee4c308e720548e5887f73a475ecd9b4 +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "" + +#: ../../old_changelog.rst:745 +#: f8b3aa35188b4b769b94b8d944acb906 +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "" + +#: ../../old_changelog.rst:750 +#: 8489684e1bbe452197997495a510ea3a +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "" + +#: ../../old_changelog.rst:751 +#: 09aaedd0793f4211929dfe7ee220b854 +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "" + +#: ../../old_changelog.rst:752 +#: 0ee56aac67c2489dbf094a51c5ecacb8 +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "" + +#: ../../old_changelog.rst:753 +#: e23c198213a542dc9d721e6475e1d083 +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "" + +#: ../../old_changelog.rst:758 +#: f7139428b28445ef9b33ad6b98a91561 +msgid "Improve performance of all Enum related code significantly." +msgstr "" + +#: ../../old_changelog.rst:759 +#: e2246424bcee4c34b91a3d695a728244 +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "" + +#: ../../old_changelog.rst:760 +#: 5d0c60dee6294fd9bf9bfc4bfb24fc4a +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "" + +#: ../../old_changelog.rst:761 +#: d19671db972b4a59bcb9bd6cdf9ebe1d +msgid "Improve performance of message creation by about 1.5x." +msgstr "" + +#: ../../old_changelog.rst:762 +#: 695b0ea2545a42dc9392a56893983afa +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "" + +#: ../../old_changelog.rst:763 +#: 956196f49ddb41c0b9d766dd13e70869 +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "" + +#: ../../old_changelog.rst:764 +#: 1fb1306be3734d8a8cc9c3cbb28b1c32 +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "" + +#: ../../old_changelog.rst:765 +#: 57dfc225c4d747dabc04593be6a775bc +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "" + +#: ../../old_changelog.rst:766 +#: cb65af04b4424167832f294a215a3bcb +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "" + +#: ../../old_changelog.rst:767 +#: e8fd77c9bb994470be0943f0f9934948 +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "" + +#: ../../old_changelog.rst:768 +#: fa32af7c385f4619a38e56430455e39c +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "" + +#: ../../old_changelog.rst:769 +#: 173930a6d9d7411d89750308d6063f17 +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "" + +#: ../../old_changelog.rst:770 +#: 8d6edd72efa7463b94dd064b59aed6cd +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "" + +#: ../../old_changelog.rst:775 +#: 41ed6c2ff86942c9b2d84e519061a7f4 +msgid "v1.1.1" +msgstr "" + +#: ../../old_changelog.rst:780 +#: 3a1cca59f2a64cc8900bcacbd019e0ea +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "" + +#: ../../old_changelog.rst:785 +#: b12f94e65c8e4ce08def9bb978c1ff3a +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "" + +#: ../../old_changelog.rst:790 +#: 75aa7878d6b246e88deff82b4a20876e +msgid "v1.1.0" +msgstr "" + +#: ../../old_changelog.rst:795 +#: 8ab7c9fee26c4907b83ca46394742448 +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "" + +#: ../../old_changelog.rst:796 +#: 04b2abf983614f05a216bbd77df94480 +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "" + +#: ../../old_changelog.rst:797 +#: 9bcf0ad8d17744cca27a35403f513f68 +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "" + +#: ../../old_changelog.rst:798 +#: b96651c7fce843fe89cb3d648ab60b59 +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "" + +#: ../../old_changelog.rst:799 +#: 2001a7e7c471414b8989d983bc72bbf4 +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "" + +#: ../../old_changelog.rst:800 +#: 1633635822854cdfa4efe0bdccebc646 +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "" + +#: ../../old_changelog.rst:801 +#: c6827444aa8d42558a18478f91f50c8e +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "" + +#: ../../old_changelog.rst:802 +#: 0ed17c2355eb43409544365f442edc3f +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "" + +#: ../../old_changelog.rst:803 +#: b81605c12d0b42e08ed7b601c0cc3fc5 +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "" + +#: ../../old_changelog.rst:804 +#: 2efabecec4354b3ca7c2cd82767b15fc +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "" + +#: ../../old_changelog.rst:805 +#: bd0378f1e19a46bfb99e0e2c00faceb3 +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "" + +#: ../../old_changelog.rst:806 +#: 7484b113bed844c989ae6d3d5f65d654 +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "" + +#: ../../old_changelog.rst:809 +#: ../../old_changelog.rst:830 +#: ../../old_changelog.rst:849 +#: 35b01b73e8b7417c9e8fa9aea638facf +#: bf8f0a7614934e239dca8a71fe39d6ec +#: 353cdc2e00964c6581422a101ca734c2 +msgid "``discord.ext.commands``" +msgstr "" + +#: ../../old_changelog.rst:811 +#: ffd2e34478494424ac4f9327a0225566 +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "" + +#: ../../old_changelog.rst:812 +#: 6f878137716c4df285e94066ed200448 +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "" + +#: ../../old_changelog.rst:813 +#: 842f5c1614254efda86822631d02c9b7 +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "" + +#: ../../old_changelog.rst:814 +#: 9a8ef9fb89a7499ab26c19de62fba397 +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "" + +#: ../../old_changelog.rst:815 +#: 87ee843257764f64bc863742ed0773de +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "" + +#: ../../old_changelog.rst:816 +#: 429e9c8fbef245a1adf95b7c76946aab +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "" + +#: ../../old_changelog.rst:822 +#: ebd3614bab2947c39476b6f9f0fdbb7c +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "" + +#: ../../old_changelog.rst:823 +#: d3bc87e8e66b41ce88c83586755b025f +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "" + +#: ../../old_changelog.rst:824 +#: 6c29a5d920bf425d9e17bcd9caf6ddef +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "" + +#: ../../old_changelog.rst:825 +#: 33b74cc8d32e47d2a77a06276c2bea2e +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "" + +#: ../../old_changelog.rst:826 +#: 418b6c19665b49fa94e3aedd83f94831 +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "" + +#: ../../old_changelog.rst:827 +#: 0b53ec5cb17d4ae4af172df204660d94 +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "" + +#: ../../old_changelog.rst:832 +#: c8af3691fb4f4dd1b71fd245ac72f1b6 +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "" + +#: ../../old_changelog.rst:833 +#: 0135532f0d8d49d381044f61a378a082 +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "" + +#: ../../old_changelog.rst:834 +#: e37f77d54e1a41f0b3886188333e173c +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "" + +#: ../../old_changelog.rst:835 +#: 59f5f9999f4f4656b23266d2eca0c22f +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "" + +#: ../../old_changelog.rst:836 +#: 652d58ecab8b4ad7bd69e5b21a7d9e91 +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "" + +#: ../../old_changelog.rst:837 +#: a2408f1102374ce9a7900023527d6b92 +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "" + +#: ../../old_changelog.rst:838 +#: 4bb4d13b319243a0937382776d074fa6 +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "" + +#: ../../old_changelog.rst:843 +#: 0b23deb02adc4aeeb15b8200b8eee3be +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "" + +#: ../../old_changelog.rst:844 +#: 7c30dcc6e74f4dce9865b467a546eb30 +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "" + +#: ../../old_changelog.rst:845 +#: 6289d0fbbaf941f3bdaa2650470a73bb +msgid "The loop cleanup facility has been rewritten again." +msgstr "" + +#: ../../old_changelog.rst:846 +#: de0893f387314c98b9ccf4ad70eb9111 +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "" + +#: ../../old_changelog.rst:851 +#: 1a05f8c3fd874cbbbb8ef3c9529811c2 +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "" + +#: ../../old_changelog.rst:857 +#: e31e149cda4e45a2a081bae9c2d1d5d2 +msgid "v1.0.1" +msgstr "" + +#: ../../old_changelog.rst:862 +#: 826f500ba6ac4f399260c33ef472b0a2 +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "" + +#: ../../old_changelog.rst:863 +#: 86eb7d54cc7a48f39a734633bb49f38b +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "" + +#: ../../old_changelog.rst:864 +#: 9e1dfa5c70e54aa9a27ed50e063bc55c +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "" + +#: ../../old_changelog.rst:867 +#: f3afcd3c4aec443cb9fc3f1767d32626 +msgid "v1.0.0" +msgstr "" + +#: ../../old_changelog.rst:869 +#: 54eb6094804b480792bf4b19717bd001 +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "" + +#: ../../old_changelog.rst:876 +#: 8d34ca49e72b4d94977388e0f7d158c3 +msgid "v0.16.6" +msgstr "" + +#: ../../old_changelog.rst:881 +#: 400962b603c64113a9d06058fbc73ae2 +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "" + +#: ../../old_changelog.rst:882 +#: 4b339fa4be8c453fbbc89f9b4c5071c7 +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "" + +#: ../../old_changelog.rst:883 +#: acb73f781c9d4f7f98f2f615f1677140 +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "" + +#: ../../old_changelog.rst:884 +#: 5eb72f9c8d984c18b6a1430354385ca2 +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "" + +#: ../../old_changelog.rst:885 +#: b1422c0d343f4a179574e6193054b6a4 +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "" + +#: ../../old_changelog.rst:890 +#: e70e848d00374c13960322c33fde8d72 +msgid "v0.16.1" +msgstr "" + +#: ../../old_changelog.rst:892 +#: c180cea6662a4264b588bec807112bc0 +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "" + +#: ../../old_changelog.rst:897 +#: b2cc7c3696be4b4394aabe3e142d3c77 +msgid "Servers are now properly chunked for user bots." +msgstr "" + +#: ../../old_changelog.rst:898 +#: 10c1f4d7920140e0ba562707ad569b00 +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "" + +#: ../../old_changelog.rst:899 +#: 7f2844cf578e490d8a218bd8d6fac74d +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "" + +#: ../../old_changelog.rst:900 +#: 1a8cc223d9924645ae6ff30f128b281f +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "" + +#: ../../old_changelog.rst:901 +#: a039d224d6974fa5867fdf5681fd695d +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "" + +#: ../../old_changelog.rst:906 +#: 8af330c929144bd68d1a17c75f46d3fd +msgid "v0.16.0" +msgstr "" + +#: ../../old_changelog.rst:911 +#: 8091f41711624576ad0767c2b637d63a +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "" + +#: ../../old_changelog.rst:912 +#: 1705c9bfc0e7429eb76a0810f42ef216 +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "" + +#: ../../old_changelog.rst:917 +#: 14583ce007924f38a286e45cd3a4fb31 +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "" + +#: ../../old_changelog.rst:919 +#: 15635997b0f04a77a9f3030573821172 +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "" + +#: ../../old_changelog.rst:922 +#: 728676a982a647c39b781c1579c17ece +msgid "Discard null sequences in the gateway." +msgstr "" + +#: ../../old_changelog.rst:924 +#: 4bdff11f2ea7495b8ec5f790251839e4 +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "" + +#: ../../old_changelog.rst:931 +#: b5ae211062204c38a3ca1b4adf75921b +msgid "v0.15.1" +msgstr "" + +#: ../../old_changelog.rst:933 +#: 1b97fd47cef9458e902f1e7d44bfc9ca +msgid "Fix crash on duplicate or out of order reactions." +msgstr "" + +#: ../../old_changelog.rst:938 +#: b0ad980148da4251be1c8a66a86d2b33 +msgid "v0.15.0" +msgstr "" + +#: ../../old_changelog.rst:943 +#: ce44c839c7174c32baba66ed8a20239a +msgid "Rich Embeds for messages are now supported." +msgstr "" + +#: ../../old_changelog.rst:945 +#: 27cf820bba86470baa2910acb6c49c2e +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "" + +#: ../../old_changelog.rst:946 +#: 4eb4fb67f26a4cd384239ee9c0af46ea +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "" + +#: ../../old_changelog.rst:947 +#: 9d643a0f8f444c1284ac6ad8e48dbec0 +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "" + +#: ../../old_changelog.rst:948 +#: 56c72e2a3e174e28a99a188b4e755ba1 +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "" + +#: ../../old_changelog.rst:950 +#: ea8d96999a8343378f726ad441f4341b +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "" + +#: ../../old_changelog.rst:951 +#: 8e8f7d3e0144418b975ee9a8b005fc16 +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "" + +#: ../../old_changelog.rst:953 +#: 20af3ca42c4042dbb92f02fc67e7e1c1 +msgid "For the command extension, the following changed:" +msgstr "" + +#: ../../old_changelog.rst:955 +#: 37b31394101e4cb8b6eea54a1b6fb874 +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "" + +#: ../../old_changelog.rst:960 +#: 442dac8b6bdd457c8cd9d62ff3665891 +msgid "v0.14.3" +msgstr "" + +#: ../../old_changelog.rst:965 +#: c3530998896c4acb83acf3cc8be925dd +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "" + +#: ../../old_changelog.rst:966 +#: 86a9d9f30a0745fe86360577aedd4b87 +msgid "Fix incorrect buckets for reactions." +msgstr "" + +#: ../../old_changelog.rst:971 +#: 560438be2f9b4fcdbe36b8ee0504b8fb +msgid "v0.14.2" +msgstr "" + +#: ../../old_changelog.rst:976 +#: dc80ff37135b4e638c58f17db21e4c0a +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr "" + +#: ../../old_changelog.rst:977 +#: 036c24ac01ba4f4b9949c19a912d558e +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "" + +#: ../../old_changelog.rst:982 +#: 967b42b78c644c3ba5dfb034336345fd +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "" + +#: ../../old_changelog.rst:987 +#: b6ac064689a04e51aa6a216f3a73e91a +msgid "v0.14.1" +msgstr "" + +#: ../../old_changelog.rst:990 +#: 216db4481b16411e9087cb64de235a2e +msgid "Bug fixes" +msgstr "" + +#: ../../old_changelog.rst:992 +#: dea34ac8768d404e8d4c0ed5346385a4 +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "" + +#: ../../old_changelog.rst:993 +#: 8ee7413e096846a58cec819c52aafbaa +msgid "This was also breaking the documentation." +msgstr "" + +#: ../../old_changelog.rst:998 +#: cfa4214c5f9843b686f38bb36035f066 +msgid "v0.14.0" +msgstr "" + +#: ../../old_changelog.rst:1000 +#: 5c6e07e6e9bd4a68aac9624f93c9b0d2 +msgid "This update adds new API features and a couple of bug fixes." +msgstr "" + +#: ../../old_changelog.rst:1005 +#: a46b619fc5634974b2379c5508044120 +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "" + +#: ../../old_changelog.rst:1006 +#: 7b202e75cc344f8c93e39b8ae9dfa579 +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "" + +#: ../../old_changelog.rst:1007 +#: e114d8a07caa406fbea9b95b7639e24e +msgid "Add support for reactions." +msgstr "" + +#: ../../old_changelog.rst:1008 +#: 17b4e516a372462a894248bdaae7196e +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr "" + +#: ../../old_changelog.rst:1009 +#: ec1d2036de944e2ca87c72eaf49c4d7c +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr "" + +#: ../../old_changelog.rst:1010 +#: a9cdb1a7898147c09856109b3afdeb05 +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr "" + +#: ../../old_changelog.rst:1011 +#: 415943aaf1a344d8bd9444f5108f1730 +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr "" + +#: ../../old_changelog.rst:1012 +#: 163dfb606de84c07b42f4e20f84ce43e +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "" + +#: ../../old_changelog.rst:1013 +#: 6a80f05b4e52495ab40d3fc642df5199 +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr "" + +#: ../../old_changelog.rst:1014 +#: 80deeea814004f4ea369cc81d2ca32a0 +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr "" + +#: ../../old_changelog.rst:1019 +#: 13ef32142511430498c607b61b8ef3d9 +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "" + +#: ../../old_changelog.rst:1020 +#: fa4262a541934728a78a4ae11f86ce0d +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "" + +#: ../../old_changelog.rst:1025 +#: 3403b220243c449b9cb6566ddf645806 +msgid "v0.13.0" +msgstr "" + +#: ../../old_changelog.rst:1027 +#: 41def317528741cdbc678bf5b02de26a +msgid "This is a backwards compatible update with new features." +msgstr "" + +#: ../../old_changelog.rst:1032 +#: a74ce62b2e6e4a8096b8453816f12466 +msgid "Add the ability to manage emojis." +msgstr "" + +#: ../../old_changelog.rst:1034 +#: cc60ed7cc6334311841fc39f1c67e50f +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr "" + +#: ../../old_changelog.rst:1035 +#: c35562fa5ef94f54b2c81e85e6c9a612 +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr "" + +#: ../../old_changelog.rst:1036 +#: b37b6defec1f426d8dbae2e5555fe2f8 +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr "" + +#: ../../old_changelog.rst:1037 +#: d1b9b9154ef24517b09f2176f32297b7 +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "" + +#: ../../old_changelog.rst:1039 +#: 733e373db9354990a64b1ea25954dc70 +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "" + +#: ../../old_changelog.rst:1040 +#: dd744fd43f8d4112a29b84670b4215a6 +msgid "Add new statuses for :class:`Status`." +msgstr "" + +#: ../../old_changelog.rst:1042 +#: e4e1783642e048a6bfe64466a76f7262 +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr "" + +#: ../../old_changelog.rst:1043 +#: 60ea97fddecf40c29f2a2595cdab41ed +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr "" + +#: ../../old_changelog.rst:1044 +#: 26787e4212b34c03a73643d1bfe3e947 +msgid "Deprecate :meth:`Client.change_status`" +msgstr "" + +#: ../../old_changelog.rst:1046 +#: 1f82ba4f65334537a46ba82e0c424ca8 +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "" + +#: ../../old_changelog.rst:1047 +#: 1908df9cf4d944b08087da9543912ab3 +msgid "This method is subject for removal in a future API version." +msgstr "" + +#: ../../old_changelog.rst:1048 +#: 4da76a0effd2420a83e11fbd0a2d6466 +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "" + +#: ../../old_changelog.rst:1050 +#: 79e46a60e46340b9ba53dff7580df69c +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "" + +#: ../../old_changelog.rst:1055 +#: f4ccad2af9354f7e822fa4eb1c8c6407 +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "" + +#: ../../old_changelog.rst:1056 +#: c278c60270d248809f3de4f421b01ce5 +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "" + +#: ../../old_changelog.rst:1061 +#: 09089ecb9a4c485ea305e17c4c8aaf5d +msgid "v0.12.0" +msgstr "" + +#: ../../old_changelog.rst:1063 +#: 548138d84d244d6cb13573eda15480b7 +msgid "This is a bug fix update that also comes with new features." +msgstr "" + +#: ../../old_changelog.rst:1068 +#: 4fb4ccc6969d48ddbf04dac7b5cb3d6d +msgid "Add custom emoji support." +msgstr "" + +#: ../../old_changelog.rst:1070 +#: bc0add1c6f234e70aab5a0a8295898fe +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "" + +#: ../../old_changelog.rst:1071 +#: be55f48c53af4318a073657887abd338 +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "" + +#: ../../old_changelog.rst:1072 +#: c314bf2643094c1787d15951af04ef01 +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "" + +#: ../../old_changelog.rst:1073 +#: 5a77560e76aa48c393f0736a806f3da8 +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "" + +#: ../../old_changelog.rst:1074 +#: daad923c52ad4c8a95cb940b31fe6198 +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "" + +#: ../../old_changelog.rst:1076 +#: 42037256927f458ea5d8113abb5deb15 +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr "" + +#: ../../old_changelog.rst:1077 +#: 6aa8d6c507814dbfb0d634be8ef4b016 +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "" + +#: ../../old_changelog.rst:1078 +#: a82d1236076840f2bf52ec450c0e20f5 +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "" + +#: ../../old_changelog.rst:1080 +#: 911947e7229141a088ab2171f28636ef +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "" + +#: ../../old_changelog.rst:1082 +#: e907524158e84994ab1dbbc2bb3ab697 +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "" + +#: ../../old_changelog.rst:1083 +#: 5ec62ed7d6644f51aba581ee4a6c171a +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "" + +#: ../../old_changelog.rst:1084 +#: eef3dacce9de4505839cd23a6e5e6162 +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "" + +#: ../../old_changelog.rst:1085 +#: ea834cd3e65a4923ace4a327bef37247 +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "" + +#: ../../old_changelog.rst:1087 +#: 3a60bded23684c39b5a0d95c728b2231 +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "" + +#: ../../old_changelog.rst:1088 +#: 92dcafa9947b44fcb69ae818cbb7da70 +msgid "Add support for server verification levels." +msgstr "" + +#: ../../old_changelog.rst:1090 +#: 3ae021277e2f4c6d8e180c26122aabd6 +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "" + +#: ../../old_changelog.rst:1091 +#: 86cddb14909742c4b4b9c502f67e64f7 +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "" + +#: ../../old_changelog.rst:1092 +#: 4e9c1967b5d448b9b41956e12fdf9339 +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "" + +#: ../../old_changelog.rst:1093 +#: d952adee81134f4791bf96f953a856a9 +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "" + +#: ../../old_changelog.rst:1095 +#: de0e3204e21f42308471ec9171a49d8f +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "" + +#: ../../old_changelog.rst:1097 +#: ../../old_changelog.rst:1143 +#: 612442a7ef444152a01c8c35b6b59b78 +#: cc11234dd494498dbcc2ac2292afd82a +msgid "For the command extension, the following are new:" +msgstr "" + +#: ../../old_changelog.rst:1099 +#: df5ad0102466494cb0aa407c74f7875f +msgid "Add custom emoji converter." +msgstr "" + +#: ../../old_changelog.rst:1100 +#: 755231ea41e74dc0920ef97292b103e5 +msgid "All default converters that can take IDs can now convert via ID." +msgstr "" + +#: ../../old_changelog.rst:1101 +#: 4f43210f983e4946bf612c58539cfacd +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "" + +#: ../../old_changelog.rst:1102 +#: 6ab6a9a776994e95a127f0f4f9e50acb +msgid "Add a method to reset command cooldown." +msgstr "" + +#: ../../old_changelog.rst:1107 +#: 4ae80c7f355d4534a1800d1686becc7c +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "" + +#: ../../old_changelog.rst:1108 +#: 9d0f1a07415445d99e511a89ebdee3f3 +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "" + +#: ../../old_changelog.rst:1109 +#: b94d78af4b24432084b31c1e046262ce +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "" + +#: ../../old_changelog.rst:1110 +#: 4e726722251f4e6b91a5cf91bb1e3ff4 +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "" + +#: ../../old_changelog.rst:1111 +#: 41c519e1555548dca4647c24e0dddf47 +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "" + +#: ../../old_changelog.rst:1116 +#: 6009bde1262a46e98cd81b7df88ae0e5 +msgid "v0.11.0" +msgstr "" + +#: ../../old_changelog.rst:1118 +#: 29d469e953694d2d85cfe3c76b487eb1 +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "" + +#: ../../old_changelog.rst:1121 +#: bc91110fc66649c2b878133e17a53ffa +msgid "Breaking Changes" +msgstr "" + +#: ../../old_changelog.rst:1123 +#: 74e52d191bf54255a98e49529f6d6a9b +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "" + +#: ../../old_changelog.rst:1128 +#: 81fc15a59d1e4f98b01e3ac2447a2884 +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "" + +#: ../../old_changelog.rst:1129 +#: cbf12c55f7154c7c849b69eee42920ea +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "" + +#: ../../old_changelog.rst:1130 +#: 7fc8aeae055e442db7c287219c3f156e +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "" + +#: ../../old_changelog.rst:1131 +#: 7a7bf1da73674c18967856b59e02981a +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "" + +#: ../../old_changelog.rst:1132 +#: 7061315e254645aba3fa63deb99e539c +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "" + +#: ../../old_changelog.rst:1133 +#: 997b6e575c344a1b94ed7bac2212b1b0 +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "" + +#: ../../old_changelog.rst:1134 +#: ccc22857665f4ec5a669e2fe75fe53e1 +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "" + +#: ../../old_changelog.rst:1135 +#: 50c84becc3504eb093b46f6194db320a +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "" + +#: ../../old_changelog.rst:1136 +#: f4fac67b65a448d0bf8df8e1bc099e7f +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "" + +#: ../../old_changelog.rst:1137 +#: 2c1c212e7be84a268e065e6a7937c307 +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "" + +#: ../../old_changelog.rst:1138 +#: 61eaaf02c4cf42bfa1cf263abd19da02 +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "" + +#: ../../old_changelog.rst:1139 +#: fa99771ac2974dac8c6aeffd6df8a2ce +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "" + +#: ../../old_changelog.rst:1141 +#: 1b6c1efaaee449228e768fc73d46ade2 +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "" + +#: ../../old_changelog.rst:1145 +#: f78416bf2ab84700bf893df624c2c654 +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "" + +#: ../../old_changelog.rst:1146 +#: 97ecffb0fabf4b0496b24a9357af5757 +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "" + +#: ../../old_changelog.rst:1151 +#: 7c33d10e7dbb4be592efcce09234ff92 +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr "" + +#: ../../old_changelog.rst:1152 +#: b5115b6278bb42a484c152543f0b787e +msgid "Fix issue when removing roles out of order." +msgstr "" + +#: ../../old_changelog.rst:1153 +#: 6d07090496b041ae871a6fde98f220db +msgid "Fix bug where discriminators would not update." +msgstr "" + +#: ../../old_changelog.rst:1154 +#: 5dc4a0c238564b4899e51aa8b0bfd195 +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "" + +#: ../../old_changelog.rst:1156 +#: bdd8141d06d9471d917fec2a33e21e73 +msgid "For the command extension, the following bug fixes apply:" +msgstr "" + +#: ../../old_changelog.rst:1158 +#: fdc429cdfd3d444baf57d41d672b318c +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "" + +#: ../../old_changelog.rst:1159 +#: aa7cf80d36aa407e97cb2f2f460a0969 +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "" + +#: ../../old_changelog.rst:1160 +#: 4c3408206e6744159b43e1967ab96dec +msgid "Command names are no longer forced to be ``lower()``." +msgstr "" + +#: ../../old_changelog.rst:1161 +#: 5284256204e34c5395fc978a376ff4b0 +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "" + +#: ../../old_changelog.rst:1162 +#: 76a5b852278b46098efac4903316ecef +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "" + +#: ../../old_changelog.rst:1167 +#: d62df80546ab4f48920984081af2969e +msgid "v0.10.0" +msgstr "" + +#: ../../old_changelog.rst:1169 +#: 38b37e3f7dc3481ea5d7f7401a46865c +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "" + +#: ../../old_changelog.rst:1174 +#: 184a8fc86a784b18b834a0d449cda64d +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "" + +#: ../../old_changelog.rst:1175 +#: 85c4f564280148f0bf5ee9b4a129f78f +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "" + +#: ../../old_changelog.rst:1176 +#: 3002e45c216d4336bce5fae8a60dacc1 +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "" + +#: ../../old_changelog.rst:1177 +#: b53f0641a47b4f10b3323f3ad45ae616 +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "" + +#: ../../old_changelog.rst:1178 +#: 14b76fab0c254197bbcd7b536d314107 +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "" + +#: ../../old_changelog.rst:1179 +#: 8c523459e5aa4614ac5adf3ff969ca91 +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "" + +#: ../../old_changelog.rst:1180 +#: a6e4192a274b4c60b9232ff077f30af0 +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "" + +#: ../../old_changelog.rst:1181 +#: 071a551ad2844ca19303086993ce4a73 +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "" + +#: ../../old_changelog.rst:1182 +#: 7e29bae8ce1f4fd0aae1e442c713833d +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "" + +#: ../../old_changelog.rst:1184 +#: 8d07cc56b6cf42ba8712f3543ccb0a17 +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "" + +#: ../../old_changelog.rst:1185 +#: c7570f3e583b48eab10e6d9e4ef5d81b +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "" + +#: ../../old_changelog.rst:1186 +#: f8d754a0d6454f35893e27cde72fa22c +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "" + +#: ../../old_changelog.rst:1187 +#: ab731dea83b54524b4f182638d3d8c55 +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "" + +#: ../../old_changelog.rst:1188 +#: d27f27c4051543c4b321417eba8d4a1f +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "" + +#: ../../old_changelog.rst:1189 +#: e5b2082987f041f6898c95c48b6e129d +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "" + +#: ../../old_changelog.rst:1190 +#: 6549c2adb90742d7b58fb741ff74d15b +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "" + +#: ../../old_changelog.rst:1191 +#: 021d8a84ae334381a3263fa1f2d09b63 +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "" + +#: ../../old_changelog.rst:1192 +#: 51f18f0490444b5f865fb559f03c187f +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "" + +#: ../../old_changelog.rst:1193 +#: 8e5d05dca1804f358b539d1b267a10fa +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "" + +#: ../../old_changelog.rst:1194 +#: 026315e76b8d49cb87f01fe9f65d0337 +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "" + +#: ../../old_changelog.rst:1195 +#: f554bb1ace35445ab972d5661600ca5c +msgid "Add :attr:`Message.nonce` attribute." +msgstr "" + +#: ../../old_changelog.rst:1196 +#: eee11aa74e244b14858321e335417c16 +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "" + +#: ../../old_changelog.rst:1197 +#: 0a180ee3f16d46248ca77da117e661c5 +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "" + +#: ../../old_changelog.rst:1198 +#: 21926029e1a944248149a2bc300b285c +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "" + +#: ../../old_changelog.rst:1199 +#: e04b411ff2424852ad7e222373bca92a +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "" + +#: ../../old_changelog.rst:1200 +#: c5d78d3806974aeaa952776524993cbf +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "" + +#: ../../old_changelog.rst:1201 +#: 7b061a3cd1b2462c8ddacf5d5e564993 +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "" + +#: ../../old_changelog.rst:1202 +#: 61e04f1171664dcaa0e150be6b2819da +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "" + +#: ../../old_changelog.rst:1205 +#: 56eb11079208428080c8d73acd06fee0 +msgid "Performance Improvements" +msgstr "" + +#: ../../old_changelog.rst:1207 +#: 1412ab0e00154d83963273002bafb044 +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "" + +#: ../../old_changelog.rst:1208 +#: 9ac35842677c4b578d8bd5b41f5ec48b +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "" + +#: ../../old_changelog.rst:1209 +#: 01584faafc6a4daca4220d7c16a73c34 +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "" + +#: ../../old_changelog.rst:1210 +#: 5cba5de179a840d4bd057588237bce3b +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "" + +#: ../../old_changelog.rst:1212 +#: a67624475d8d400fae5d574258d7cc89 +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "" + +#: ../../old_changelog.rst:1217 +#: 36fe131c905e49599f23a59a57d99164 +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "" + +#: ../../old_changelog.rst:1218 +#: c574cf0726e342eeadbfca536471c333 +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "" + +#: ../../old_changelog.rst:1219 +#: 8875df9f7e5f4f8b9986b376b7384042 +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "" + +#: ../../old_changelog.rst:1220 +#: 35a32f8aa4214282a706e7a57c0f7320 +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr "" + +#: ../../old_changelog.rst:1221 +#: aaba9e94e0f24d4ebfde35a5a5967bcf +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "" + +#: ../../old_changelog.rst:1222 +#: 330455a4235b4ff3adc377c165c4d3f9 +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "" + +#: ../../old_changelog.rst:1223 +#: 351e7977d6f3450cb3416063e5697686 +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "" + +#: ../../old_changelog.rst:1224 +#: 4cc1e926917e4f3eac8869fc76f629fe +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "" + +#: ../../old_changelog.rst:1226 +#: d16221ec9071446b867806e6bd1d825d +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "" diff --git a/docs/build/locales/quickstart.pot b/docs/build/locales/quickstart.pot new file mode 100644 index 0000000000..f07cfa138a --- /dev/null +++ b/docs/build/locales/quickstart.pot @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../quickstart.rst:8 +#: 961453d1ff7c49cd835a14c6d0ab3edd +msgid "Quickstart" +msgstr "" + +#: ../../quickstart.rst:10 +#: aaaf8be026274369a3e225fb3bf44799 +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "" + +#: ../../quickstart.rst:14 +#: 1e5f765f4f064ee0aeaa6387f87e6bed +msgid "A Minimal Bot" +msgstr "" + +#: ../../quickstart.rst:16 +#: d5c114f0711040c290390f36be63e6cd +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "" + +#: ../../quickstart.rst:18 +#: ../../quickstart.rst:93 +#: fc7a9fd22cd347f08e3a12508390d564 +#: 2ef0ca47c35d4a87a66ecf37ac34fbee +msgid "It looks something like this:" +msgstr "" + +#: ../../quickstart.rst:22 +#: 520ed442525a4996bd636127f406a482 +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "" + +#: ../../quickstart.rst:47 +#: 95ff2f3f9d5842a290c9c7e89b3920ac +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "" + +#: ../../quickstart.rst:50 +#: 3b78d63a6d784262b92d80ed9872b73a +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "" + +#: ../../quickstart.rst:52 +#: 382e03b221d740539a10ad155d6bd918 +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "" + +#: ../../quickstart.rst:54 +#: 3283a09eaf8c4c878ee5577a73335bdd +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "" + +#: ../../quickstart.rst:55 +#: c72bea7252ac4c179de69189862e1a78 +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "" + +#: ../../quickstart.rst:58 +#: dc05281fbc104fe4b257989a749b7e82 +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "" + +#: ../../quickstart.rst:61 +#: 6ac70839985647e5900cc7f21b6bbad9 +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "" + +#: ../../quickstart.rst:64 +#: 33ca1efcf28847fb895d2362daf1186a +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "" + +#: ../../quickstart.rst:67 +#: b2c71e97a940471580d3f4945d6378bf +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "" + +#: ../../quickstart.rst:71 +#: 0596d852b90146c3840c0a8a8e0cfe91 +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "" + +#: ../../quickstart.rst:74 +#: 89abb694917744b9a594e0fb9b022367 +msgid "On Windows:" +msgstr "" + +#: ../../quickstart.rst:80 +#: 8709e14ab8c040309183ee3160b93866 +msgid "On other systems:" +msgstr "" + +#: ../../quickstart.rst:86 +#: 4e584c9aa1a546c2856e717010ae0a18 +msgid "Now you can try playing around with your basic bot." +msgstr "" + +#: ../../quickstart.rst:89 +#: 163b14974c4e4d0a9e0bdb92ff7b8974 +msgid "A Minimal Bot with Slash Commands" +msgstr "" + +#: ../../quickstart.rst:91 +#: db48cc63cf684402bad783f2c5780de4 +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "" + +#: ../../quickstart.rst:111 +#: a8aa579f1120475286a7b3d069fe0e45 +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "" + +#: ../../quickstart.rst:113 +#: 289772b489c049a69adedf02009b8d8f +msgid "The first line remains unchanged." +msgstr "" + +#: ../../quickstart.rst:114 +#: 2264f202f88040c2a1dca513124515c4 +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "" + +#: ../../quickstart.rst:116 +#: 278631486492429596b4e2210c31827d +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "" + +#: ../../quickstart.rst:119 +#: 746729bbf47a4af8868735ca63c93ba1 +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "" + +#: ../../quickstart.rst:121 +#: 16974282cb0344dabe07825bd33ac0e6 +msgid "Finally, we, once again, run the bot with our login token." +msgstr "" + +#: ../../quickstart.rst:124 +#: 2151937a4f9d499e8400498eb1a2ee47 +msgid "Congratulations! Now you have created your first slash command!" +msgstr "" diff --git a/docs/build/locales/version_guarantees.pot b/docs/build/locales/version_guarantees.pot new file mode 100644 index 0000000000..f909fedebb --- /dev/null +++ b/docs/build/locales/version_guarantees.pot @@ -0,0 +1,92 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2015-2021, Rapptz & 2021-present, Pycord Development +# This file is distributed under the same license as the Pycord package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../version_guarantees.rst:4 +#: fc77d7996f0e4fa6943e346e2024d85b +msgid "Version Guarantees" +msgstr "" + +#: ../../version_guarantees.rst:6 +#: eafd23556d684b68b8c379f59e025d96 +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "" + +#: ../../version_guarantees.rst:8 +#: 62326bdd6dc049c992db7b0e8231569c +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "" + +#: ../../version_guarantees.rst:12 +#: 5e7e62867b42403cad0054c07e206768 +msgid "The examples below are non-exhaustive." +msgstr "" + +#: ../../version_guarantees.rst:15 +#: 693f7c7b524042fea0ed8b964ab5fc20 +msgid "Examples of Breaking Changes" +msgstr "" + +#: ../../version_guarantees.rst:17 +#: e7ecac84084b485bbf3345040c9309d4 +msgid "Changing the default parameter value to something else." +msgstr "" + +#: ../../version_guarantees.rst:18 +#: 0c6bf4dc61c64b00aac027ab7a5935cd +msgid "Renaming a function without an alias to an old function." +msgstr "" + +#: ../../version_guarantees.rst:19 +#: 7768026a492e4b928e2302ca7a51821e +msgid "Adding or removing parameters to an event." +msgstr "" + +#: ../../version_guarantees.rst:22 +#: d78682c8e2a748eb943adbac3edfe909 +msgid "Examples of Non-Breaking Changes" +msgstr "" + +#: ../../version_guarantees.rst:24 +#: c6d8aca18b984144b34789f77d05a4ba +msgid "Adding or removing private underscored attributes." +msgstr "" + +#: ../../version_guarantees.rst:25 +#: c58dced83e23479ab768188c4718abf1 +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "" + +#: ../../version_guarantees.rst:26 +#: 60de17508ca2439a84c6574c1618a186 +msgid "Changing the behaviour of a function to fix a bug." +msgstr "" + +#: ../../version_guarantees.rst:27 +#: a2115ba8046345178ff42b59e41c8e82 +msgid "Changes in the documentation." +msgstr "" + +#: ../../version_guarantees.rst:28 +#: 977d5c241d33494b9178f82c1cbfe613 +msgid "Modifying the internal HTTP handling." +msgstr "" + +#: ../../version_guarantees.rst:29 +#: 68bb4e80257a4e9c85b670b2c5e78161 +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "" diff --git a/docs/conf.py b/docs/conf.py index 38958e6066..2e8daf71ee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,6 +70,8 @@ def write_new(): extensions = [ # "builder", "sphinx.ext.autodoc", + "sphinx.ext.autosectionlabel", + "sphinx.ext.autosummary", "sphinx.ext.extlinks", "sphinx.ext.intersphinx", "sphinx.ext.napoleon", @@ -85,6 +87,7 @@ def write_new(): "sphinx_copybutton", "sphinxext.opengraph", "sphinx_autodoc_typehints", + "sphinx_intl", ] always_document_param_types = True @@ -99,8 +102,8 @@ def write_new(): # napoleon_attr_annotations = False extlinks = { - "issue": ("https://github.com/Pycord-Development/pycord/issues/%s", "GH-"), - "dpy-issue": ("https://github.com/Rapptz/discord.py/issues/%s", "GH-"), + "issue": ("https://github.com/Pycord-Development/pycord/issues/%s", "GH-%s"), + "dpy-issue": ("https://github.com/Rapptz/discord.py/issues/%s", "GH-%s"), } # Links used for cross-referencing stuff in other documentation @@ -164,6 +167,8 @@ def write_new(): language = "en" gettext_compact = False +gettext_uuid = True +locale_dirs = ["locales/"] # Added locale directory # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -173,7 +178,7 @@ def write_new(): # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ["_build", "node_modules"] +exclude_patterns = ["_build", "node_modules", "build", "locales"] # The reST default role (used for this markup: `text`) to use for all # documents. @@ -204,6 +209,7 @@ def write_new(): nitpick_ignore_files = [ "migrating_to_v1", "whats_new", + "old_changelog", ] # -- Options for HTML output ---------------------------------------------- @@ -372,7 +378,7 @@ def write_new(): # Sphinx supports the following languages: # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja' # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr' -# html_search_language = 'en' +html_search_language = "en" # A dictionary with options for the search language support, empty by default. # Now only 'ja' uses this config value @@ -380,7 +386,7 @@ def write_new(): # The name of a javascript file (relative to the configuration directory) that # implements a search results scorer. If empty, the default will be used. -html_search_scorer = "_static/js/scorer.js" +# html_search_scorer = "_static/js/scorer.js" # html_js_files = ["custom.js", "settings.js", "copy.js", "sidebar.js"] @@ -473,3 +479,23 @@ def write_new(): r"https://support(?:-dev)?.discord.com/hc/en-us/articles/.*", r"https://dis.gd/contact", ] + +modindex_common_prefix = ["discord."] +# suppress_warnings = ['autosectionlabel.*'] +myst_enable_extensions = [ + "amsmath", + "attrs_inline", + "colon_fence", + "deflist", + "dollarmath", + "fieldlist", + "html_admonition", + "html_image", + "linkify", + "replacements", + "smartquotes", + "strikethrough", + "substitution", + "tasklist", +] +myst_links_external_new_tab = True diff --git a/docs/locales/de/LC_MESSAGES/api/abcs.po b/docs/locales/de/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..dd0448a634 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/de/LC_MESSAGES/api/application_commands.po b/docs/locales/de/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..04127bd885 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/de/LC_MESSAGES/api/application_info.po b/docs/locales/de/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..31922fca86 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/de/LC_MESSAGES/api/async_iter.po b/docs/locales/de/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..b322381f39 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/de/LC_MESSAGES/api/audit_logs.po b/docs/locales/de/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..05c56e27c2 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/de/LC_MESSAGES/api/clients.po b/docs/locales/de/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..60e40ace2a --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/de/LC_MESSAGES/api/cogs.po b/docs/locales/de/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..84328f678d --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/de/LC_MESSAGES/api/data_classes.po b/docs/locales/de/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..bc1c9d6327 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/de/LC_MESSAGES/api/enums.po b/docs/locales/de/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..334fcaca72 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Aufzählungen" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "Die API bietet einige Aufzählungen für bestimmte Arten von Zeichenketten, um zu verhindern, dass die API strings strings eingegeben werden, falls sich die Zeichenketten in der Zukunft ändern." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "Alle Aufzählungen sind Unterklassen einer internen Klasse, die das Verhalten von :class:`enum.Enum` nachahmt." + +msgid "Specifies the input type of an option." +msgstr "Gibt den Eingabetyp einer Option an." + +msgid "A slash subcommand." +msgstr "Ein Schrägstrich Unterbefehl." + +msgid "A slash command group." +msgstr "Eine Schrägstrich Befehlsgruppe." + +msgid "A string." +msgstr "Ein String." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "Eine Ganzzahl zwischen -253 und 253." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, wie 881224361015672863, sind oft zu groß für diesen Eingabetyp." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "Ein Benutzer aus dem aktuellen Kanal. Dies wird in eine Instanz von :class:`.User` in privaten Kanälen umgewandelt, ansonsten :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "Ein Kanal aus der aktuellen Gilde." + +msgid "A role from the current guild." +msgstr "Eine Rolle aus der aktuellen Gilde." + +msgid "A mentionable (user or role)." +msgstr "Eine erwähnbare (Benutzer oder Rolle)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "Eine Fließkommazahl zwischen -253 und 253." + +msgid "An attachment." +msgstr "Ein Anhang." + +msgid "Specifies the type of channel." +msgstr "Gibt den Kanaltyp an." + +msgid "A text channel." +msgstr "Ein Text-Kanal." + +msgid "A voice channel." +msgstr "Ein Sprachkanal." + +msgid "A private text channel. Also called a direct message." +msgstr "Ein privater Text-Kanal. Auch Direktnachricht genannt." + +msgid "A private group text channel." +msgstr "Ein privater Gruppen-Text-Kanal." + +msgid "A category channel." +msgstr "Ein Kategorie-Kanal." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/de/LC_MESSAGES/api/events.po b/docs/locales/de/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..3de9f161c1 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/de/LC_MESSAGES/api/exceptions.po b/docs/locales/de/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..1840bc94e8 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/de/LC_MESSAGES/api/index.po b/docs/locales/de/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..80efb62166 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/de/LC_MESSAGES/api/models.po b/docs/locales/de/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..98fa624eee --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/de/LC_MESSAGES/api/sinks.po b/docs/locales/de/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..c041d54623 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/de/LC_MESSAGES/api/ui_kit.po b/docs/locales/de/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..0e374cd9d7 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/de/LC_MESSAGES/api/utils.po b/docs/locales/de/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..c59ea4f08e --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/de/LC_MESSAGES/api/version_info.po b/docs/locales/de/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..a57036beac --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/de/LC_MESSAGES/api/voice.po b/docs/locales/de/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..ce04e5fda5 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/de/LC_MESSAGES/api/webhooks.po b/docs/locales/de/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c6f477ed90 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/de/LC_MESSAGES/changelog.po b/docs/locales/de/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..b51e2dd62b --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/de/LC_MESSAGES/cogs.po b/docs/locales/de/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..d3b99d560a --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/de/LC_MESSAGES/discord.po b/docs/locales/de/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..1d84eae006 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/de/LC_MESSAGES/ext/bridge/api.po b/docs/locales/de/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..c8f2bfa309 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/de/LC_MESSAGES/ext/bridge/index.po b/docs/locales/de/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..d829d3af31 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/api.po b/docs/locales/de/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..e7f531d004 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b6bdcd19af --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/commands.po b/docs/locales/de/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..1a44455c05 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..aefcfd5e04 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/index.po b/docs/locales/de/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..201036b377 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/de/LC_MESSAGES/ext/pages/index.po b/docs/locales/de/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..30b0c29ee7 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/de/LC_MESSAGES/ext/tasks/index.po b/docs/locales/de/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..beb1ad9f67 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/de/LC_MESSAGES/faq.po b/docs/locales/de/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..f8699ff5e9 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Häufig gestellte Fragen" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutinen" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Fragen zu Koroutinen und asyncio gehören hier her." + +msgid "What is a coroutine?" +msgstr "Was ist eine Koroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Wo kann ich ``await`` verwenden?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "Du kannst nur ``await`` in ``async def`` Funktionen und nirgendwo anders verwenden." + +msgid "What does \"blocking\" mean?" +msgstr "Was bedeuted \"blocking\"?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/de/LC_MESSAGES/index.po b/docs/locales/de/LC_MESSAGES/index.po new file mode 100644 index 0000000000..e6d297e4c5 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Erweiterungen" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Willkommen bei Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord ist ein moderner, einfach zu bedienender und funktionsreicher und async-bereiter API Wrapper für Discord." + +msgid "**Features:**" +msgstr "**Eigenschaften:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Moderne Pythonische API mit ``async``\\/``await`` Syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane Rate Limit-Handhabung, die 429s verhindert" + +msgid "Command extension to aid with bot creation" +msgstr "Befehlsverlängerung zur Unterstützung bei der Bot-Erstellung" + +msgid "Easy to use with an object oriented design" +msgstr "Einfach zu bedienen mit objektorientiertem Design" + +msgid "Optimised for both speed and memory" +msgstr "Optimiert für Geschwindigkeit und Speicher" + +msgid "Getting started" +msgstr "Erste Schritte" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Ist dies dein erstes Mal mit der Bibliothek? Dies ist der Ort, an dem du loslegen kannst!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**Erste Schritte:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Arbeiten mit Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Beispiele:** Viele Beispiele sind im :resource:`repository ` verfügbar." + +msgid "Getting help" +msgstr "Hilfe erhalten" + +msgid "If you're having trouble with something, these resources might help." +msgstr "Wenn Sie Probleme mit etwas haben, könnten diese Ressourcen helfen." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Probiere zuerst die :doc:`faq` aus, sie hat Antworten auf alle gängigen Fragen." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Fragen Sie uns und bleiben Sie bei uns in unserem :resource:`Discord ` Server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "Wenn Sie etwas Konkretes suchen, probieren Sie den :ref:`Index ` oder :ref:`Suche `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Melde Fehler im :resource:`Issue-Tracker `." + +msgid "Manuals" +msgstr "Anleitungen" + +msgid "These pages go into great detail about everything the API can do." +msgstr "Diese Seiten gehen sehr detailliert auf alles, was die API tun kann." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "Diese Erweiterungen helfen Ihnen bei der Entwicklung, wenn es um allgemeine Aufgaben geht." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot Befehle Framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task-Helfer" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - Ein Modul zur Seitenerweiterung" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - Ein Modul, das Schrägstrich Befehle zu vordefinierten Befehlen überbrückt" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "Wenn Sie nach etwas suchen, das mit dem Projekt selbst zusammenhängt, dann ist es hier." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - Der Changelog für die Bibliothek." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - Die Version garantiert für die Bibliothek." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - Wie man von v0.x nach v1.x migriert." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - Wie man von v1.x nach v2.x migriert." + diff --git a/docs/locales/de/LC_MESSAGES/installing.po b/docs/locales/de/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..89b42dbb7a --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/de/LC_MESSAGES/intents.po b/docs/locales/de/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..036ca6dbac --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/de/LC_MESSAGES/logging.po b/docs/locales/de/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..9b9b2f2707 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/de/LC_MESSAGES/migrating_to_v1.po b/docs/locales/de/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ba2c21442b --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/de/LC_MESSAGES/migrating_to_v2.po b/docs/locales/de/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..c16a6fbff3 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migration zu v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 hat neue Discord Features eingeführt und einige alte veraltet." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Teil des Redesigns ist das Erstellen von Applikations-Befehlen und -Komponenten. Diese Änderungen umfassen eine neue :class:`Bot` Klasse, :class:`ui. iew`, und eine neue :class:`ApplicationContext` Klasse. Wenn Sie daran interessiert sind, sie zu erstellen, schauen Sie sich bitte unseren :resource:`Guide ` an." + +msgid "Python Version Change" +msgstr "Python-Versionsänderung" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "Um die Entwicklung zu erleichtern und auch zu ermöglichen, dass unsere Abhängigkeiten aktualisiert werden, um die Nutzung von 3 zu ermöglichen. oder höher, die Bibliothek musste die Unterstützung für Python-Versionen kleiner als 3 entfernen. , was im Wesentlichen bedeutet, dass **Unterstützung für Python 3.7 und darunter eingestellt wurde**." + +msgid "Major Model Changes" +msgstr "Wichtige Modelländerungen" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Unten sind wichtige Änderungen, die in v2.0 passiert sind:" + +msgid "Dropped User Accounts Support" +msgstr "Benutzerkonten-Support" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Vor v2.0 wurden Benutzerkonten unterstützt. Dies widerspricht dem Geist der Bibliothek und Discord ToS und wurde entfernt. Daher werden diese Funktionen, die nur auf sie anwendbar waren, entfernt:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` Argument von :meth:`Client.start` und :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` Argument von :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Klassen ``Profil``, ``Beziehung``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` selbst bleibt immer noch erhalten)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` und ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blockiert``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Argumente von ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``blockier``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Ereignisse: ``on_relationship_add`` und ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Zeitzonen-Erkennungszeit" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` wird zu ``now(datetime.timezone.utc)``. Wenn du :class:`datetime.datetime`` baust, übergebe ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Beachte, dass neu hinzugefügte :meth:`utils.utcnow()` als Alias für ``datetime.datetime.now(datetime.timezone.utc)`` verwendet werden kann." + +msgid "Asset Changes" +msgstr "Asset-Änderungen" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Asset-bezogene Attribute, die zuvor Hash-Zeichenketten zurückgegeben haben (z.B. :attr:`User.avatar`) gibt nun :class:`Asset` zurück. :attr:`Asset.key` gibt den Hash von nun an zurück." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` und ``Class.x_url_as`` werden entfernt. :meth:`Asset.replace` oder :meth:`Asset.with_x` Methoden können verwendet werden, um bestimmte Asset-Größen oder Typen zu erhalten." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` und :attr:`PartialEmoji.url` sind jetzt :class:`str`. :meth:`Emoji.save` und :meth:`Emoji.read` werden hinzugefügt, um Emojis zu speichern oder zu lesen." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` und ``PartialEmoji.url_as`` werden entfernt." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Einige :class:`AuditLogDiff` Attribute geben jetzt :class:`Asset` statt :class:`str` zurück: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` gibt ``None`` zurück, wenn der Avatar nicht gesetzt ist und stattdessen der Standard-Avatar ist; verwende :attr:`User.display_avatar` für das Verhalten vor 2.0." + +msgid "Before" +msgstr "Vorher" + +msgid "After" +msgstr "Nach" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128)``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\")``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``warte user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``warten user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``Emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\")``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Webhook-Änderungen" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` und :class:`WebhookMessage` sind jetzt immer asynchron. Für synchrone Verwendung (``requests``), benutze :class:`SyncWebhook` und :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter`` und ``RequestsWebhookAdapter`` werden entfernt, da sie unnötig sind." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` Argumente von :meth:`Webhook.partial` und :meth:`Webhook.from_url` werden entfernt. Sitzungen werden nun direkt an ``partial`` / ``from_url`` übergeben." + +msgid "Intents Changes" +msgstr "Änderungen an den Zelten" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` ist jetzt eine privilegierte Absicht. Deaktivieren verursacht :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components` und :attr:`Message. ttachments` ist leer (ein leerer String oder ein leeres Array) und verursacht direkt :class:`ext. ommands.Command` s nicht auszuführen. Siehe `hier `_ für weitere Informationen." + +msgid "Threads Introduced" +msgstr "Threads eingeführt" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "Die folgenden Methoden und Attribute können :class:`Thread` Objekte zurückgeben:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` Argument" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Berechtigungsänderungen" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` wurde zugunsten der Überprüfung der Berechtigungen des Kanals für diesen Benutzer entfernt." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Bearbeite Methodenänderung" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "``edit`` Methoden der meisten Klassen aktualisieren den Zwischenspeicher nicht mehr und gibt stattdessen das modifizierte Objekt zurück." + +msgid "Positional-Keyword Argument Split" +msgstr "Positional-Keyword Argument aufteilen" + +msgid "The following are now positional only:" +msgstr "Folgende sind nun nur noch positioniert:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "Folgendes ist jetzt nur Keyword:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Ereignisänderungen" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` ersetzt `on_member_update` für Updates zu :attr:`Member.status` und :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` wird aufgrund von Discord Änderungen nicht mehr versendet." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` wird nicht mehr für unvollständige Daten versendet und der übergebene Wert wird immer dekomprimiert und dekodiert an :class:`str`. Zuvor wurde bei Erhalt einer mehrteiligen zlib-komprimierten Binärmeldung :func:`on_socket_raw_receive` auf alle Nachrichten mit den komprimierten, kodierten :class:`bytes` versendet." + +msgid "Message.type For Replies" +msgstr "Nachrichten.type für Antworten" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` gibt jetzt :attr:`MessageType.reply` für Antworten zurück, anstatt :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Sticker Änderungen" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` wurde entfernt, da Discord die Daten nicht mehr zur Verfügung stellt." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, ein Enum an Aufkleberformaten, wird in :class:`StickerFormatType` umbenannt. Der alte Name wird für ein neues Enum mit einem anderen Zweck verwendet (überprüfen Sie, ob der Aufkleber Gildenaufkleber oder Nitroaufkleber ist)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` ist jetzt Liste[:class:`StickerItem`] anstelle von Liste[:class:`Sticker`]. Während :class:`StickerItem` einige Operationen vorhergehender ``Sticker`` unterstützt, gibt es keine ``description`` und ``pack_id`` Attribute. :class:`Sticker` kann über :meth:`StickerItem.fetch` abgerufen werden." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` wurde entfernt. :class:`Sticker` kann immer noch über :meth:`Sticker.read` oder :meth:`Sticker abgerufen werden. ave` und seine URL können über :attr:`Sticker.url` zugegriffen werden, genau wie der neue :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Aufgrund der Einführung von :class:`GuildSticker`` wird ``Sticker.tags`` aus der Elternklasse :class:`Sticker` entfernt und zu :attr:`StandardSticker.tags` verschoben." + +msgid "Type Changes" +msgstr "Änderungen eingeben" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Viele Methodenargumente lehnen nun ``keine`` ab oder geben ``keine`` zurück." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` ist jetzt optional und wird in vielen Fällen ``None`` zurückgeben." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` gibt ``None`` zurück, wenn der Avatar nicht gesetzt ist und stattdessen der Standard-Avatar ist." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`s ``topic`` Argument akzeptiert nicht mehr ``keine``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` kann nun ``keine`` zurückgeben." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit`s ``name`` Argument akzeptiert nicht mehr ``keine``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit`s ``Rollen`` Argument akzeptiert nicht mehr ``keine``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` und :attr:`Bot.remove_listener`s ``name`` Argumente akzeptieren nicht mehr ``keine``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "Die folgenden :class:`.ext.commands.Context` Attribute können jetzt ``keine``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` kann jetzt ``None`` sein." + +msgid "Miscellaneous Changes" +msgstr "Verschiedene Änderungen" + +msgid "The following were removed:" +msgstr "Folgende wurden entfernt:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` Argument von :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` Argument von :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` in :attr:`ext.commands.Context.clean_prefix` verschoben" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (Alias von ``high``) wurde entfernt. ``extreme``, ``very_high`` und ``double_table_flip`` Attribute wurden entfernt und durch :attr:`VerificationLevel.highest` ersetzt." + +msgid "The following were renamed:" +msgstr "Folgendes wurde umbenannt:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` wird in :attr:`Colour.og_blurple` umbenannt und :attr:`Colour.blurple` gibt nun die neuere Farbe zurück." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` Argumente und Attribute von :class:`ext.commands.MissingPermissions` und :class:`ext.commands.BotMissingPermissions` werden in ``missing_permissions`` umbenannt." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/de/LC_MESSAGES/old_changelog.po b/docs/locales/de/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..21e169d5d4 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/de/LC_MESSAGES/quickstart.po b/docs/locales/de/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..21a2adf607 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/de/LC_MESSAGES/version_guarantees.po b/docs/locales/de/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..7307037afe --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Versionsgarantien" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "Die Bibliothek folgt dem `semantischen Versionierungsgrundsatz `_ was bedeutet, dass die Hauptversion jedes Mal aktualisiert wird, wenn eine inkompatible API-Änderung vorliegt. Aufgrund der fehlenden Garantien auf der Discord-Seite, wenn es darum geht, Änderungen mit der ziemlich dynamischen Natur von Python zu durchbrechen, kann es jedoch schwierig sein zu erkennen, was als eine bahnbrechende Veränderung angesehen werden kann und was nicht." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "Das erste, was man im Auge behalten sollte, ist, dass das Abbrechen von Änderungen nur für **öffentlich dokumentierte Funktionen und Klassen zutreffen**. Wenn sie hier nicht in der Dokumentation aufgelistet ist, dann ist sie nicht Teil der öffentlichen API und wird sich daher zwangsläufig ändern. Dies beinhaltet Attribute, die mit einem Unterstrich oder Funktionen ohne Unterstrich beginnen, die nicht dokumentiert sind." + +msgid "The examples below are non-exhaustive." +msgstr "Die folgenden Beispiele sind nicht erschöpfend." + +msgid "Examples of Breaking Changes" +msgstr "Beispiele für Bruchänderungen" + +msgid "Changing the default parameter value to something else." +msgstr "Ändert den Standardparameter auf etwas anderes." + +msgid "Renaming a function without an alias to an old function." +msgstr "Umbenennen einer Funktion ohne Alias in eine alte Funktion." + +msgid "Adding or removing parameters to an event." +msgstr "Hinzufügen oder Entfernen von Parametern zu einem Ereignis." + +msgid "Examples of Non-Breaking Changes" +msgstr "Beispiele für nicht auftretende Änderungen" + +msgid "Adding or removing private underscored attributes." +msgstr "Private unterstrichene Attribute hinzufügen oder entfernen." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Füge ein Element in die ``__slots__`` einer Datenklasse hinzu." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Ändern des Verhaltens einer Funktion um einen Fehler zu beheben." + +msgid "Changes in the documentation." +msgstr "Änderungen in der Dokumentation." + +msgid "Modifying the internal HTTP handling." +msgstr "Änderung der internen HTTP-Behandlung." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Aktualisieren der Abhängigkeiten auf eine neue Version, Hauptversion oder anders." + diff --git a/docs/locales/es/LC_MESSAGES/api/abcs.po b/docs/locales/es/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..dd0448a634 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/es/LC_MESSAGES/api/application_commands.po b/docs/locales/es/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..04127bd885 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/es/LC_MESSAGES/api/application_info.po b/docs/locales/es/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..31922fca86 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/es/LC_MESSAGES/api/async_iter.po b/docs/locales/es/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..b322381f39 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/es/LC_MESSAGES/api/audit_logs.po b/docs/locales/es/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..05c56e27c2 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/es/LC_MESSAGES/api/clients.po b/docs/locales/es/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..60e40ace2a --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/es/LC_MESSAGES/api/cogs.po b/docs/locales/es/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..84328f678d --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/es/LC_MESSAGES/api/data_classes.po b/docs/locales/es/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..bc1c9d6327 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/es/LC_MESSAGES/api/enums.po b/docs/locales/es/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..c2ce53ea32 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumeraciones" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "La API proporciona algunas enumeraciones para ciertos tipos de cadenas para evitar que la API se escriba stringly en caso de que las cadenas cambien en el futuro." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "Todas las enumeraciones son subclases de una clase interna que imita el comportamiento de :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Especifica el tipo de entrada de una opción." + +msgid "A slash subcommand." +msgstr "Un subcomando de barra." + +msgid "A slash command group." +msgstr "Un grupo de comandos de barras." + +msgid "A string." +msgstr "Una cadena." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "Un entero entre -253 y 253." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "Los IDs, como 881224361015672863, son a menudo demasiado grandes para este tipo de entrada." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "Un usuario del canal actual. Esto se convertirá en una instancia de :class:`Contrasser` en canales privados, de lo contrario :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "Un canal del gremio actual." + +msgid "A role from the current guild." +msgstr "Un papel del gremio actual." + +msgid "A mentionable (user or role)." +msgstr "Una mención (usuario o rol)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "Un número de punto flotante entre -253 y 253." + +msgid "An attachment." +msgstr "Un adjunto." + +msgid "Specifies the type of channel." +msgstr "Especifica el tipo de canal." + +msgid "A text channel." +msgstr "Un canal de texto." + +msgid "A voice channel." +msgstr "Un canal de voz." + +msgid "A private text channel. Also called a direct message." +msgstr "Un canal de texto privado. También llamado un mensaje directo." + +msgid "A private group text channel." +msgstr "Un canal de texto de grupo privado." + +msgid "A category channel." +msgstr "Un canal de categoría." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/es/LC_MESSAGES/api/events.po b/docs/locales/es/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..3de9f161c1 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/es/LC_MESSAGES/api/exceptions.po b/docs/locales/es/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..1840bc94e8 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/es/LC_MESSAGES/api/index.po b/docs/locales/es/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..80efb62166 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/es/LC_MESSAGES/api/models.po b/docs/locales/es/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..98fa624eee --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/es/LC_MESSAGES/api/sinks.po b/docs/locales/es/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..c041d54623 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/es/LC_MESSAGES/api/ui_kit.po b/docs/locales/es/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..0e374cd9d7 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/es/LC_MESSAGES/api/utils.po b/docs/locales/es/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..c59ea4f08e --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/es/LC_MESSAGES/api/version_info.po b/docs/locales/es/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..a57036beac --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/es/LC_MESSAGES/api/voice.po b/docs/locales/es/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..ce04e5fda5 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/es/LC_MESSAGES/api/webhooks.po b/docs/locales/es/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c6f477ed90 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/es/LC_MESSAGES/changelog.po b/docs/locales/es/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..b51e2dd62b --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/es/LC_MESSAGES/cogs.po b/docs/locales/es/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..d3b99d560a --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/es/LC_MESSAGES/discord.po b/docs/locales/es/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..1d84eae006 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/es/LC_MESSAGES/ext/bridge/api.po b/docs/locales/es/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..c8f2bfa309 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/es/LC_MESSAGES/ext/bridge/index.po b/docs/locales/es/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..d829d3af31 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/api.po b/docs/locales/es/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..e7f531d004 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b6bdcd19af --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/commands.po b/docs/locales/es/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..1a44455c05 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..aefcfd5e04 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/index.po b/docs/locales/es/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..201036b377 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/es/LC_MESSAGES/ext/pages/index.po b/docs/locales/es/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..30b0c29ee7 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/es/LC_MESSAGES/ext/tasks/index.po b/docs/locales/es/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..beb1ad9f67 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/es/LC_MESSAGES/faq.po b/docs/locales/es/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..5326557f7a --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/es/LC_MESSAGES/index.po b/docs/locales/es/LC_MESSAGES/index.po new file mode 100644 index 0000000000..e04d506e0c --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/es/LC_MESSAGES/installing.po b/docs/locales/es/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..89b42dbb7a --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/es/LC_MESSAGES/intents.po b/docs/locales/es/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..036ca6dbac --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/es/LC_MESSAGES/logging.po b/docs/locales/es/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..9b9b2f2707 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/es/LC_MESSAGES/migrating_to_v1.po b/docs/locales/es/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ba2c21442b --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/es/LC_MESSAGES/migrating_to_v2.po b/docs/locales/es/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..298dad788c --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migrando a v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 introdujo nuevas características de Discord y obsoletas algunas antiguas." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Parte del rediseño involucra hacer comandos y componentes de la aplicación. Estos cambios incluyen una nueva clase :class:`Bot`, :class:`ui. iew`, y una nueva clase :class:`ApplicationContext`. Si estás interesado en crearlos, por favor revisa nuestra :resource:`guide `." + +msgid "Python Version Change" +msgstr "Cambiar versión de Python" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "Con el fin de facilitar el desarrollo y permitir que nuestras dependencias se actualicen para permitir el uso de 3. o superior, la biblioteca tuvo que eliminar el soporte para versiones Python inferiores a 3. , lo que básicamente significa que **el soporte para Python 3.7 y abajo ha sido eliminado**." + +msgid "Major Model Changes" +msgstr "Cambios del modelo principal" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Debajo hay cambios importantes que han ocurrido en v2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Soporte para cuentas de usuario eliminadas" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Antes de la v2.0, las cuentas de usuario fueron soportadas. Esto ha estado en contra del espíritu de la biblioteca y discord ToS y ha sido eliminado. Así, se eliminan estas características que sólo eran aplicables a ellas:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "Argumento ``bot`` de :meth:`Client.start` y :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "Argumento ``afk`` de :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Clases ``Perfil``, ``Relación``, ``Mensaje de llamada``, ``Llamada de grupo``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTA: ``GroupChannel`` en sí mismo todavía permanece)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_usuario``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` y ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relaciones``, ``amigos``, ``bloqueado``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Argumentos de ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Eventos: ``on_relationship_add`` y ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Hora de zona horaria" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` se convierte en ``now(datetime.timezone.utc)``. Si estás construyendo :class:`datetime.datetime`` tú mismo, pasa ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Ten en cuenta que el nuevo :meth:`utils.utcnow()` puede ser usado como un alias de ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Cambios de activos" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Atributos relacionados con recursos que devuelven previamente cadenas de hash (por ejemplo, :attr:`User.avatar`) ahora devuelve :class:`Asset`. :attr:`Asset.key` devuelve el hash a partir de ahora." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "Los métodos ``Class.x_url`` y ``Class.x_url_as`` son eliminados. Los métodos :meth:`Asset.replace` o :meth:`Asset.with_x` pueden ser usados para obtener tamaños o tipos de activos específicos." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` y :attr:`PartialEmoji.url` ahora son :class:`str`. :meth:`Emoji.save` y :meth:`Emoji.read` son añadidos para guardar o leer emojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` y ``PartialEmoji.url_as`` son removidos." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Algunos atributos de :class:`mañitLogDiff` ahora devuelven :class:`Asset` en lugar de :class:`str`: :attr:`mañitLogDiff.splash`, :attr:`mañitLogDiff.icon`, :attr:`mañitLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` devuelve ``Ning`` si el avatar no está establecido y en su lugar es el avatar predeterminado; use :attr:`User.display_avatar` para el comportamiento pre-2.0." + +msgid "Before" +msgstr "Antes" + +msgid "After" +msgstr "Después" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(tamaño=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``esperar user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``esperar user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(tamaño=128, static_format=\"png\")``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Cambios de Webhook" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` y :class:`WebhookMessage` son ahora siempre asincrónicas. Para uso sincrónico (``requests``), usa :class:`SyncWebhook` y :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, y ``RequestsWebhookAdapter`` son eliminados, ya que son innecesarios." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` argumentos de :meth:`Webhook.partial` y :meth:`Webhook.from_url` son removidos. Las sesiones ahora se pasan directamente a ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "Cambios de Intentos" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` es ahora una intención privilegiada. Desactivándolo causa :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, y :attr:`Message. Adjuntos` para estar vacío (una cadena vacía o un array vacío), causando directamente :class:`ext. ommands.Command` s para no ejecutar. Ver `aquí `_ para más información." + +msgid "Threads Introduced" +msgstr "Hilos introducidos" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "Los siguientes métodos y atributos pueden devolver objetos :class:`Hilo`:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Mensaje.canal`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr "El argumento :class:`ext.commands.NSFWChannelRequired` de ``channel``" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Cambios de permisos" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` ha sido eliminado en favor de verificar los permisos del canal para dicho usuario." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Editar cambio de comportamiento del método" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "Los métodos ``edit`` de la mayoría de las clases ya no actualizan el caché en su lugar, y en su lugar devuelve el objeto modificado." + +msgid "Positional-Keyword Argument Split" +msgstr "Dividir argumento palabra clave posicional" + +msgid "The following are now positional only:" +msgstr "Los siguientes son sólo posicionales:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`ParcialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "Las siguientes son sólo palabra clave:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Cambios de Evento" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` reemplaza `on_member_update` por actualizaciones a :attr:`Member.status` y :attr:`Member.activity. ties`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` ya no será enviado debido a cambios de Discord." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` ya no es enviado por datos incompletos, y el valor pasado siempre es descomprimido y descodificado a :class:`str`. Anteriormente, cuando se recibió un mensaje binario multi-parte comprimido por zlib, :func:`on_socket_raw_receive` fue enviado en todos los mensajes con los `bytes` comprimidos y codificados :class:." + +msgid "Message.type For Replies" +msgstr "Message.type para respuestas" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` ahora devuelve :attr:`MessageType.reply` para respuestas, en lugar de :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Cambios de Sticker" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` fue eliminado ya que Discord ya no proporciona los datos." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, un enum de formatos de sticker, se renombra a :class:`StickerFormatType`. El nombre antiguo se usa para una nueva enum con diferentes propósitos (comprobando si el sticker es el sticker del gremio o el Nitro)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` ahora es List[:class:`StickerItem`] en lugar de List[:class:`Sticker`]. Mientras que :class:`StickerItem` soporta algunas operaciones del anterior ``Sticker``, los atributos ``description`` y ``pack_id`` no existen. :class:`Sticker` se puede obtener mediante el método :meth:`StickerItem.fetch`." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` ha sido eliminado. :class:`Sticker` todavía puede ser obtenido a través de :meth:`Sticker.read` o :meth:`Sticker. ave` y su URL se pueden acceder a través de :attr:`Sticker.url`, al igual que el nuevo :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Debido a la introducción de :class:`GuildSticker`, ``Sticker.tags`` se elimina de la clase padre :class:`Sticker` y se trasladó a :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Cambios de tipo" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Muchos argumentos de método ahora rechazan ``nunca`` o devuelven ``nunca``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` ahora es opcional, y devolverá ``Ningo`` en muchos casos." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` devuelve ``Ning`` si el avatar no está establecido y en su lugar es el avatar predeterminado." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr "El argumento ``topic`` de :attr:`Guild.create_text_channel` ya no acepta ``Ning``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` ahora puede devolver ``Ninguno``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr "El argumento ``name`` de :attr:`Template.edit` ya no acepta ``Ninguno``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr "El argumento ``roles`` de :attr:`Member.edit ya no acepta ``Ninguno``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr "Los argumentos de :attr:`Bot.add_listener` y :attr:`Bot.remove_listener` de ``name`` ya no aceptan ``ninguno``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "Los siguientes atributos :class:`.ext.commands.Context` ahora pueden ser ``Ninguno``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` ahora puede ser ``Ninguno``." + +msgid "Miscellaneous Changes" +msgstr "Cambios fiscales" + +msgid "The following were removed:" +msgstr "Se eliminaron las siguientes opciones:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "Argumento de ``guild_subscriptions`` de :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argumento de :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` movido a :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias de ``high``) fue eliminado. ``extreme``, ``very_high``, y ``double_table_flip`` atributos fueron removidos y reemplazados con :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "Se renombraron las siguientes:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` se renombra a :attr:`Colour.og_blurple`, y :attr:`Colour.blurple` ahora devuelve el color más reciente." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "Los argumentos y atributos ``missing_perms`` de :class:`ext.commands.MissingPermissions` y :class:`ext.commands.BotMissingPermissions` son renombrados a ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/es/LC_MESSAGES/old_changelog.po b/docs/locales/es/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..21e169d5d4 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/es/LC_MESSAGES/quickstart.po b/docs/locales/es/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..21a2adf607 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/es/LC_MESSAGES/version_guarantees.po b/docs/locales/es/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..138204eab2 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Versión garantizada" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "La biblioteca sigue el `principio de versionado semántico `_ que significa que la versión principal se actualiza cada vez que hay un cambio de API incompatible. Sin embargo, debido a la falta de garantías por parte de Discord cuando se trata de romper cambios junto con la naturaleza bastante dinámica de Python puede ser difícil discernir lo que se puede considerar un cambio de ruptura y lo que no." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "Lo primero que hay que tener en cuenta es que los cambios de ruptura sólo se aplican a **funciones y clases públicas**. Si no está listado en la documentación aquí, entonces no es parte de la API pública y por lo tanto está obligada a cambiar. Esto incluye atributos que comienzan con un guión bajo o funciones sin un guión bajo que no están documentados." + +msgid "The examples below are non-exhaustive." +msgstr "Los ejemplos a continuación no son exhaustivos." + +msgid "Examples of Breaking Changes" +msgstr "Ejemplos de Interrupción de Cambios" + +msgid "Changing the default parameter value to something else." +msgstr "Cambiando el valor por defecto del parámetro a otra cosa." + +msgid "Renaming a function without an alias to an old function." +msgstr "Renombrar una función sin alias a una función antigua." + +msgid "Adding or removing parameters to an event." +msgstr "Agregando o eliminando parámetros a un evento." + +msgid "Examples of Non-Breaking Changes" +msgstr "Ejemplos de cambios sin interrupción" + +msgid "Adding or removing private underscored attributes." +msgstr "Agregando o eliminando atributos subrayados privados." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Añadiendo un elemento en el ``__slots__`` de una clase de datos." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Cambiando el comportamiento de una función para corregir un error." + +msgid "Changes in the documentation." +msgstr "Cambios en la documentación." + +msgid "Modifying the internal HTTP handling." +msgstr "Modificando el manejo HTTP interno." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Actualizando las dependencias a una nueva versión, mayor o no." + diff --git a/docs/locales/fr/LC_MESSAGES/api/abcs.po b/docs/locales/fr/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..626eea12f5 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/fr/LC_MESSAGES/api/application_commands.po b/docs/locales/fr/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..afea6a2538 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/fr/LC_MESSAGES/api/application_info.po b/docs/locales/fr/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..bec739145b --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/fr/LC_MESSAGES/api/async_iter.po b/docs/locales/fr/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..e2a2c43c3a --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/fr/LC_MESSAGES/api/audit_logs.po b/docs/locales/fr/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..a6a775eccb --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/fr/LC_MESSAGES/api/clients.po b/docs/locales/fr/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..af81c7fd9b --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/fr/LC_MESSAGES/api/cogs.po b/docs/locales/fr/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..347d5c9433 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/fr/LC_MESSAGES/api/data_classes.po b/docs/locales/fr/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..66e5602fd5 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/fr/LC_MESSAGES/api/enums.po b/docs/locales/fr/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..1cd3232e8f --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Énumérations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "L'API fournit quelques énumérations pour certains types de chaînes pour éviter que l'API ne soit tapée de manière stratifiée au cas où les chaînes de caractères changeraient dans le futur." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "Toutes les énumérations sont des sous-classes d'une classe interne qui imite le comportement de :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Spécifie le type d'entrée d'une option." + +msgid "A slash subcommand." +msgstr "Une sous-commande slash." + +msgid "A slash command group." +msgstr "Un groupe de commandes slash." + +msgid "A string." +msgstr "Une chaîne." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "Un entier compris entre -253 et 253." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "Les IDs, tels que 881224361015672863, sont souvent trop gros pour ce type d'entrée." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "Un utilisateur du salon actuel. Il sera converti en une instance de :class:`.User` dans des salons privés, sinon :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "Un canal de la guilde actuelle." + +msgid "A role from the current guild." +msgstr "Un rôle de la guilde actuelle." + +msgid "A mentionable (user or role)." +msgstr "Une mention (utilisateur ou rôle)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "Un nombre flottant entre -253 et 253." + +msgid "An attachment." +msgstr "Une pièce jointe." + +msgid "Specifies the type of channel." +msgstr "Spécifie le type de canal." + +msgid "A text channel." +msgstr "Un salon texte." + +msgid "A voice channel." +msgstr "Un salon vocal." + +msgid "A private text channel. Also called a direct message." +msgstr "Un canal texte privé. Également appelé un message direct." + +msgid "A private group text channel." +msgstr "Un salon de texte de groupe privé." + +msgid "A category channel." +msgstr "Une catégorie de canal." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/fr/LC_MESSAGES/api/events.po b/docs/locales/fr/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..6329eac140 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/fr/LC_MESSAGES/api/exceptions.po b/docs/locales/fr/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..f9bd12a63c --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/fr/LC_MESSAGES/api/index.po b/docs/locales/fr/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..543912a984 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/fr/LC_MESSAGES/api/models.po b/docs/locales/fr/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..42c610fa7d --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/fr/LC_MESSAGES/api/sinks.po b/docs/locales/fr/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..1c6e46f2d4 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/fr/LC_MESSAGES/api/ui_kit.po b/docs/locales/fr/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..46fae84c77 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/fr/LC_MESSAGES/api/utils.po b/docs/locales/fr/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..2ed1bbf1ca --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/fr/LC_MESSAGES/api/version_info.po b/docs/locales/fr/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..5f203d590b --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/fr/LC_MESSAGES/api/voice.po b/docs/locales/fr/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..a535c4dbcb --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/fr/LC_MESSAGES/api/webhooks.po b/docs/locales/fr/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..25d6c0ebbe --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/fr/LC_MESSAGES/changelog.po b/docs/locales/fr/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..fb29c8565b --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/fr/LC_MESSAGES/cogs.po b/docs/locales/fr/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..7bb334f56a --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/fr/LC_MESSAGES/discord.po b/docs/locales/fr/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..0ab3af71b8 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po b/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..8e8b935f09 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po b/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..1379531802 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/api.po b/docs/locales/fr/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..8bacdb4730 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..3c4a949700 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po b/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..4fb7f3e9c5 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..a0d5e33417 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/index.po b/docs/locales/fr/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..3e87a22190 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/fr/LC_MESSAGES/ext/pages/index.po b/docs/locales/fr/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..7be072273c --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po b/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..dad00bbb6f --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/fr/LC_MESSAGES/faq.po b/docs/locales/fr/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..fe37008123 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/fr/LC_MESSAGES/index.po b/docs/locales/fr/LC_MESSAGES/index.po new file mode 100644 index 0000000000..fd94f67808 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/fr/LC_MESSAGES/installing.po b/docs/locales/fr/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..209c879029 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/fr/LC_MESSAGES/intents.po b/docs/locales/fr/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..ef64d14f98 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/fr/LC_MESSAGES/logging.po b/docs/locales/fr/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..f4a78147d5 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po b/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..158245d57d --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po b/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..f76703fe33 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migration vers la version 2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "La v2.0 a introduit de nouvelles fonctionnalités Discord et a déprécié certaines anciennes fonctionnalités." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Une partie du redesign implique la création de commandes et de composants d'application. Ces changements incluent une nouvelle classe :class:`Bot`, :class:`ui. iew`, et une nouvelle classe :class:`ApplicationContext`. Si vous êtes intéressé à les créer, veuillez consulter notre :resource:`guide `." + +msgid "Python Version Change" +msgstr "Changement de version de Python" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "Afin de faciliter le développement et de permettre à nos dépendances de mettre à jour pour permettre l'utilisation de 3. ou plus, la bibliothèque devait supprimer le support des versions de Python inférieures à 3. , ce qui signifie essentiellement que **le support de Python 3.7 et inférieur a été abandonné**." + +msgid "Major Model Changes" +msgstr "Changements majeurs du modèle" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Voici les principaux changements qui se sont produits dans la v2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Support des comptes utilisateurs abandonnés" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Avant la v2.0, les comptes utilisateur étaient pris en charge. Cela a été contraire à l'esprit de la bibliothèque et de la discord ToS et a été supprimé. Ainsi, ces fonctionnalités qui ne leur étaient applicables que sont supprimées :" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "argument ``bot`` de :meth:`Client.start` et :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "argument ``afk`` de :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: Le ``GroupChannel`` lui-même reste toujours)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` et ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Arguments de ``ClientUser.edit`` : ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``Unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Événements : ``on_relationship_add`` et ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Temps conscient du fuseau horaire" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` devient ``now(datetime.timezone.utc)``. Si vous construisez vous-même :class:`datetime.datetime`` , passez ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Notez que les nouveaux ajouts :meth:`utils.utcnow()` peuvent être utilisés comme alias de ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Changements d'actif" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Les attributs liés à l'actif qui ont précédemment retourné des chaînes de hachage (par exemple :attr:`User.avatar`) renvoie désormais :class:`Asset`. :attr:`Asset.key` retourne désormais le hachage." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "Les méthodes ``Class.x_url`` et ``Class.x_url_as`` sont supprimées. Les méthodes :meth:`Asset.replace` ou :meth:`Asset.with_x` peuvent être utilisées pour obtenir des tailles ou types de ressources spécifiques." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` et :attr:`PartialEmoji.url` sont maintenant :class:`str`. :meth:`Emoji.save` et :meth:`Emoji.read` sont ajoutés pour enregistrer ou lire des émojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` et ``PartialEmoji.url_as`` sont supprimés." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Certains attributs :class:`AuditLogDiff` renvoient désormais :class:`Asset` au lieu de :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` retourne ``None`` si l'avatar n'est pas défini et est plutôt l'avatar par défaut ; utilisez :attr:`User.display_avatar` pour le comportement pré-2.0." + +msgid "Before" +msgstr "Avant" + +msgid "After" +msgstr "Après" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``attendre user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``attendre user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\"))``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Changements de Webhook" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` et :class:`WebhookMessage` sont maintenant toujours asynchrones. Pour une utilisation synchronisée (``requests``), utilisez :class:`SyncWebhook` et :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "Les ``WebhookAdapter``, ``AsyncWebhookAdapter`` et ``RequestsWebhookAdapter`` sont supprimés, car ils ne sont pas nécessaires." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "Les arguments ``adapter`` de :meth:`Webhook.partial` et :meth:`Webhook.from_url` sont supprimés. Les sessions sont maintenant passées directement à ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "Intentions de modifications" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` est maintenant une intention privilégiée. La désactiver provoque :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, et :attr:`Message. ttachments` est vide (une chaîne vide ou un tableau vide), causant directement :class:`ext. ommands.Command` s pour ne pas fonctionner. Voir `ici `_ pour plus d'informations." + +msgid "Threads Introduced" +msgstr "Threads Introduits" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "Les méthodes et attributs suivants peuvent renvoyer des objets `Thread` :class::" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr "Argument :class:`ext.commands.NSFWChannelRequired` de ``channel``" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Changements d'autorisation" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` a été supprimé en faveur de la vérification des permissions du canal pour ledit utilisateur." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Modifier le changement de comportement de la méthode" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "Les méthodes ``edit`` de la plupart des classes ne mettent plus à jour le cache en place, et retournent plutôt l'objet modifié." + +msgid "Positional-Keyword Argument Split" +msgstr "format@@0 Positional-Keyword Argument Split" + +msgid "The following are now positional only:" +msgstr "Les éléments suivants sont maintenant positionnels uniquement :" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "Les mots clés suivants sont maintenant uniquement :" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Changements d'événement" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` remplace `on_member_update` pour les mises à jour vers :attr:`Member.status` et :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` ne sera plus envoyé à cause de changements dans Discord." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` n'est plus dispatché pour des données incomplètes, et la valeur passée est toujours décompressée et décodée en :class:`str`. Auparavant, lorsque nous avons reçu un message binaire zlib-compressé, :func:`on_socket_raw_receive` était dispatché sur tous les messages avec les `bytes` :class:compressés et encodés." + +msgid "Message.type For Replies" +msgstr "Message.type de réponse" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` retourne maintenant :attr:`MessageType.reply` pour les réponses, au lieu de :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Changements d'autocollant" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` a été supprimé car Discord ne fournit plus les données." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, un énum de formats autocollants, est renommé en :class:`StickerFormatType`. L'ancien nom est utilisé pour une nouvelle énumération à des fins différentes (vérifier si l'autocollant est un autocollant de guilde ou un autocollant Nitro)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` est maintenant List[:class:`StickerItem`] au lieu de List[:class:`Sticker`]. Alors que :class:`StickerItem` supporte certaines opérations des attributs précédents ``Sticker``, ``description`` et ``pack_id`` n'existent pas. :class:`Sticker` peut être récupéré via la méthode :meth:`StickerItem.fetch`." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "Le ``Sticker.image`` est supprimé. Le `Sticker` :class:peut toujours être récupéré via :meth:`Sticker.read` ou :meth:`Sticker. ave` et son URL sont accessibles via :attr:`Sticker.url`, tout comme le nouveau :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "En raison de l'introduction de :class:`GuildSticker`, ``Sticker.tags`` est retiré de la classe parente :class:`Sticker` et déplacé vers :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Changements de type" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "De nombreux arguments de méthode rejettent maintenant ``None`` ou retournent ``None``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` est maintenant optionnel, et retournera ``None`` dans de nombreux cas." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` retourne ``None`` si l'avatar n'est pas défini et est plutôt l'avatar par défaut." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr "L'argument ``topic`` de :attr:`Guild.create_text_channel` n'accepte plus ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` peut maintenant retourner ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr "L'argument ``name`` de `Template.edit` de :attr:n'accepte plus ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr "L'argument ``roles`` de Member.edit` de :attr:n'accepte plus ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr "Les arguments :attr:`Bot.add_listener` et :attr:`Bot.remove_listener` n'acceptent plus ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "Les attributs :class:`.ext.commands.Context` suivants peuvent maintenant être ``None`` : ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` peut maintenant être ``None``." + +msgid "Miscellaneous Changes" +msgstr "Changements divers" + +msgid "The following were removed:" +msgstr "Les éléments suivants ont été supprimés :" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "Arguild_subscriptions`` de :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "Argument ``fetch_offline_members`` de :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` déplacé vers :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "Les attributs ``VerificationLevel.table_flip`` (alias de ``high``) ont été supprimés. Les attributs ``extreme``, ``very_high`` et ``double_table_flip`` ont été supprimés et remplacés par :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "Les éléments suivants ont été renommés:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` est renommé en :attr:`Colour.og_blurple`, et :attr:`Colour.blurple` retourne maintenant la nouvelle couleur." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "Les arguments ``missing_perms`` et les attributs de :class:`ext.commands.MissingPermissions` et :class:`ext.commands.BotMissingPermissions` sont renommés en ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/fr/LC_MESSAGES/old_changelog.po b/docs/locales/fr/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..5aa87be0fa --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/fr/LC_MESSAGES/quickstart.po b/docs/locales/fr/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..67d89fc499 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/fr/LC_MESSAGES/version_guarantees.po b/docs/locales/fr/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..43d08cb2ec --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Garanties de version" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "La bibliothèque suit le `principe de versionnage sémantique `_ ce qui signifie que la version majeure est mise à jour chaque fois qu'il y a un changement d'API incompatible. Cependant, en raison du manque de garanties du côté Discord lorsqu'il s'agit de briser les changements ainsi que la nature assez dynamique de Python, il peut être difficile de discerner ce qui peut être considéré comme un changement cassé et ce qui ne l'est pas." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "La première chose à garder à l'esprit est que les changements cassés ne s'appliquent qu'aux **fonctions et classes publiquement documentées**. Si elle n'est pas listée dans la documentation ici, alors elle ne fait pas partie de l'API publique et est donc tenue de changer. Cela inclut les attributs qui commencent par un trait de soulignement ou des fonctions sans trait de soulignement qui ne sont pas documentés." + +msgid "The examples below are non-exhaustive." +msgstr "Les exemples ci-dessous ne sont pas exhaustifs." + +msgid "Examples of Breaking Changes" +msgstr "Exemples de ruptures de changements" + +msgid "Changing the default parameter value to something else." +msgstr "Changement de la valeur par défaut du paramètre à autre chose." + +msgid "Renaming a function without an alias to an old function." +msgstr "Renommer une fonction sans alias vers une ancienne fonction." + +msgid "Adding or removing parameters to an event." +msgstr "Ajout ou suppression de paramètres à un événement." + +msgid "Examples of Non-Breaking Changes" +msgstr "Exemples de changements sans interruption" + +msgid "Adding or removing private underscored attributes." +msgstr "Ajout ou suppression d'attributs soulignements privés." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Ajout d'un élément dans la classe de données ``__slots__`` d'une classe de données." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Modification du comportement d'une fonction pour corriger un bogue." + +msgid "Changes in the documentation." +msgstr "Changements dans la documentation." + +msgid "Modifying the internal HTTP handling." +msgstr "Modification de la gestion interne HTTP." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Mettre à jour les dépendances vers une nouvelle version, majeure ou autre." + diff --git a/docs/locales/hi/LC_MESSAGES/api/abcs.po b/docs/locales/hi/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..dd0448a634 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/hi/LC_MESSAGES/api/application_commands.po b/docs/locales/hi/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..04127bd885 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/hi/LC_MESSAGES/api/application_info.po b/docs/locales/hi/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..31922fca86 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/hi/LC_MESSAGES/api/async_iter.po b/docs/locales/hi/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..b322381f39 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/hi/LC_MESSAGES/api/audit_logs.po b/docs/locales/hi/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..05c56e27c2 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/hi/LC_MESSAGES/api/clients.po b/docs/locales/hi/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..60e40ace2a --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/hi/LC_MESSAGES/api/cogs.po b/docs/locales/hi/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..84328f678d --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/hi/LC_MESSAGES/api/data_classes.po b/docs/locales/hi/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..bc1c9d6327 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/hi/LC_MESSAGES/api/enums.po b/docs/locales/hi/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..2c4b44a5ea --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifies the input type of an option." + +msgid "A slash subcommand." +msgstr "A slash subcommand." + +msgid "A slash command group." +msgstr "A slash command group." + +msgid "A string." +msgstr "A string." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "An integer between -2⁵³ and 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, such as 881224361015672863, are often too big for this input type." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "A channel from the current guild." + +msgid "A role from the current guild." +msgstr "A role from the current guild." + +msgid "A mentionable (user or role)." +msgstr "A mentionable (user or role)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "A floating-point number between -2⁵³ and 2⁵³." + +msgid "An attachment." +msgstr "An attachment." + +msgid "Specifies the type of channel." +msgstr "Specifies the type of channel." + +msgid "A text channel." +msgstr "A text channel." + +msgid "A voice channel." +msgstr "A voice channel." + +msgid "A private text channel. Also called a direct message." +msgstr "A private text channel. Also called a direct message." + +msgid "A private group text channel." +msgstr "A private group text channel." + +msgid "A category channel." +msgstr "A category channel." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/hi/LC_MESSAGES/api/events.po b/docs/locales/hi/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..3de9f161c1 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/hi/LC_MESSAGES/api/exceptions.po b/docs/locales/hi/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..1840bc94e8 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/hi/LC_MESSAGES/api/index.po b/docs/locales/hi/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..80efb62166 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/hi/LC_MESSAGES/api/models.po b/docs/locales/hi/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..98fa624eee --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/hi/LC_MESSAGES/api/sinks.po b/docs/locales/hi/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..c041d54623 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/hi/LC_MESSAGES/api/ui_kit.po b/docs/locales/hi/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..0e374cd9d7 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/hi/LC_MESSAGES/api/utils.po b/docs/locales/hi/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..c59ea4f08e --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/hi/LC_MESSAGES/api/version_info.po b/docs/locales/hi/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..a57036beac --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/hi/LC_MESSAGES/api/voice.po b/docs/locales/hi/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..ce04e5fda5 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/hi/LC_MESSAGES/api/webhooks.po b/docs/locales/hi/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c6f477ed90 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/hi/LC_MESSAGES/changelog.po b/docs/locales/hi/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..b51e2dd62b --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/hi/LC_MESSAGES/cogs.po b/docs/locales/hi/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..d3b99d560a --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/hi/LC_MESSAGES/discord.po b/docs/locales/hi/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..1d84eae006 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po b/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..c8f2bfa309 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po b/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..d829d3af31 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/api.po b/docs/locales/hi/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..e7f531d004 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b6bdcd19af --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po b/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..1a44455c05 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..aefcfd5e04 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/index.po b/docs/locales/hi/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..201036b377 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/hi/LC_MESSAGES/ext/pages/index.po b/docs/locales/hi/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..30b0c29ee7 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po b/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..beb1ad9f67 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/hi/LC_MESSAGES/faq.po b/docs/locales/hi/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..5326557f7a --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/hi/LC_MESSAGES/index.po b/docs/locales/hi/LC_MESSAGES/index.po new file mode 100644 index 0000000000..e04d506e0c --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/hi/LC_MESSAGES/installing.po b/docs/locales/hi/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..89b42dbb7a --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/hi/LC_MESSAGES/intents.po b/docs/locales/hi/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..036ca6dbac --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/hi/LC_MESSAGES/logging.po b/docs/locales/hi/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..9b9b2f2707 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po b/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ba2c21442b --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po b/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..41ef72997c --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migrating to v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 introduced new Discord features and deprecated some old ones." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Below are major changes that have happened in v2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Dropped User Accounts Support" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` argument of :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` and ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Events: ``on_relationship_add`` and ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Timezone-aware Time" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Asset Changes" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``await user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``await user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\"))``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Webhook Changes" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "Intents Changes" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." + +msgid "Threads Introduced" +msgstr "Threads Introduced" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "The following methods and attributes can return :class:`Thread` objects:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Permission Changes" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Edit Method Behavior Change" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." + +msgid "Positional-Keyword Argument Split" +msgstr "Positional-Keyword Argument Split" + +msgid "The following are now positional only:" +msgstr "The following are now positional only:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "The following are now keyword only:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "Message.type For Replies" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Sticker Changes" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` was removed as Discord no longer provides the data." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Type Changes" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Many method arguments now reject ``None`` or return ``None``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` can now return ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` can now be ``None``." + +msgid "Miscellaneous Changes" +msgstr "Miscellaneous Changes" + +msgid "The following were removed:" +msgstr "The following were removed:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` argument of :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argument of :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "The following were renamed:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/hi/LC_MESSAGES/old_changelog.po b/docs/locales/hi/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..21e169d5d4 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/hi/LC_MESSAGES/quickstart.po b/docs/locales/hi/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..21a2adf607 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/hi/LC_MESSAGES/version_guarantees.po b/docs/locales/hi/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..5a827907dc --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Version Guarantees" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." + +msgid "The examples below are non-exhaustive." +msgstr "The examples below are non-exhaustive." + +msgid "Examples of Breaking Changes" +msgstr "Examples of Breaking Changes" + +msgid "Changing the default parameter value to something else." +msgstr "Changing the default parameter value to something else." + +msgid "Renaming a function without an alias to an old function." +msgstr "Renaming a function without an alias to an old function." + +msgid "Adding or removing parameters to an event." +msgstr "Adding or removing parameters to an event." + +msgid "Examples of Non-Breaking Changes" +msgstr "Examples of Non-Breaking Changes" + +msgid "Adding or removing private underscored attributes." +msgstr "Adding or removing private underscored attributes." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Adding an element into the ``__slots__`` of a data class." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Changing the behaviour of a function to fix a bug." + +msgid "Changes in the documentation." +msgstr "Changes in the documentation." + +msgid "Modifying the internal HTTP handling." +msgstr "Modifying the internal HTTP handling." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Upgrading the dependencies to a new version, major or otherwise." + diff --git a/docs/locales/it/LC_MESSAGES/api/abcs.po b/docs/locales/it/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..dd0448a634 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/it/LC_MESSAGES/api/application_commands.po b/docs/locales/it/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..04127bd885 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/it/LC_MESSAGES/api/application_info.po b/docs/locales/it/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..31922fca86 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/it/LC_MESSAGES/api/async_iter.po b/docs/locales/it/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..b322381f39 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/it/LC_MESSAGES/api/audit_logs.po b/docs/locales/it/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..05c56e27c2 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/it/LC_MESSAGES/api/clients.po b/docs/locales/it/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..60e40ace2a --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/it/LC_MESSAGES/api/cogs.po b/docs/locales/it/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..84328f678d --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/it/LC_MESSAGES/api/data_classes.po b/docs/locales/it/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..bc1c9d6327 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/it/LC_MESSAGES/api/enums.po b/docs/locales/it/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..c190b98fce --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerazioni" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "L'API fornisce alcune enumerazioni per alcuni tipi di stringhe per evitare che l'API venga digitata con stringa nel caso in cui le stringhe cambiino in futuro." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "Tutte le enumerazioni sono sottoclassi di una classe interna che imita il comportamento di :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifica il tipo di input di un'opzione." + +msgid "A slash subcommand." +msgstr "Un sottocomando slash." + +msgid "A slash command group." +msgstr "Un gruppo di comando slash." + +msgid "A string." +msgstr "Una stringa." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "Un numero intero compreso tra -253 e 253." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "Gli ID, come 881224361015672863, sono spesso troppo grandi per questo tipo di input." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "Un utente dal canale corrente. Questo verrà convertito in un'istanza di :class:`.User` in canali privati, altrimenti :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "Un canale dalla gilda corrente." + +msgid "A role from the current guild." +msgstr "Un ruolo dalla gilda attuale." + +msgid "A mentionable (user or role)." +msgstr "Un accennato (utente o ruolo)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "Un numero in virgola mobile compreso tra -253 e 253." + +msgid "An attachment." +msgstr "Un allegato." + +msgid "Specifies the type of channel." +msgstr "Specifica il tipo di canale." + +msgid "A text channel." +msgstr "Un canale di testo." + +msgid "A voice channel." +msgstr "Un canale vocale." + +msgid "A private text channel. Also called a direct message." +msgstr "Un canale di testo privato. Chiamato anche un messaggio diretto." + +msgid "A private group text channel." +msgstr "Un canale di testo di gruppo privato." + +msgid "A category channel." +msgstr "Un canale di categoria." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/it/LC_MESSAGES/api/events.po b/docs/locales/it/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..3de9f161c1 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/it/LC_MESSAGES/api/exceptions.po b/docs/locales/it/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..1840bc94e8 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/it/LC_MESSAGES/api/index.po b/docs/locales/it/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..80efb62166 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/it/LC_MESSAGES/api/models.po b/docs/locales/it/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..98fa624eee --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/it/LC_MESSAGES/api/sinks.po b/docs/locales/it/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..c041d54623 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/it/LC_MESSAGES/api/ui_kit.po b/docs/locales/it/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..0e374cd9d7 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/it/LC_MESSAGES/api/utils.po b/docs/locales/it/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..c59ea4f08e --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/it/LC_MESSAGES/api/version_info.po b/docs/locales/it/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..a57036beac --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/it/LC_MESSAGES/api/voice.po b/docs/locales/it/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..ce04e5fda5 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/it/LC_MESSAGES/api/webhooks.po b/docs/locales/it/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c6f477ed90 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/it/LC_MESSAGES/changelog.po b/docs/locales/it/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..b51e2dd62b --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/it/LC_MESSAGES/cogs.po b/docs/locales/it/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..d3b99d560a --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/it/LC_MESSAGES/discord.po b/docs/locales/it/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..1d84eae006 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/it/LC_MESSAGES/ext/bridge/api.po b/docs/locales/it/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..c8f2bfa309 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/it/LC_MESSAGES/ext/bridge/index.po b/docs/locales/it/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..d829d3af31 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/api.po b/docs/locales/it/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..e7f531d004 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b6bdcd19af --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/commands.po b/docs/locales/it/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..1a44455c05 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..aefcfd5e04 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/index.po b/docs/locales/it/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..201036b377 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/it/LC_MESSAGES/ext/pages/index.po b/docs/locales/it/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..30b0c29ee7 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/it/LC_MESSAGES/ext/tasks/index.po b/docs/locales/it/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..beb1ad9f67 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/it/LC_MESSAGES/faq.po b/docs/locales/it/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..5326557f7a --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/it/LC_MESSAGES/index.po b/docs/locales/it/LC_MESSAGES/index.po new file mode 100644 index 0000000000..e04d506e0c --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/it/LC_MESSAGES/installing.po b/docs/locales/it/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..89b42dbb7a --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/it/LC_MESSAGES/intents.po b/docs/locales/it/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..036ca6dbac --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/it/LC_MESSAGES/logging.po b/docs/locales/it/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..9b9b2f2707 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/it/LC_MESSAGES/migrating_to_v1.po b/docs/locales/it/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ba2c21442b --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/it/LC_MESSAGES/migrating_to_v2.po b/docs/locales/it/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..81762b2845 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migrazione a v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 ha introdotto nuove funzionalità di Discord e deprecato alcune vecchie." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Parte della riprogettazione comporta la creazione di comandi e componenti delle applicazioni. Queste modifiche includono una nuova classe :class:`Bot`, :class:`ui. iew`, e una nuova classe :class:`ApplicationContext`. Se sei interessato a crearli, controlla la nostra `guida :resource:." + +msgid "Python Version Change" +msgstr "Modifica Versione Python" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "Al fine di rendere lo sviluppo più facile e anche per consentire le nostre dipendenze di aggiornare per consentire l'uso di 3. o superiore, la libreria ha dovuto rimuovere il supporto per le versioni Python inferiori a 3. , il che significa essenzialmente che **il supporto per Python 3.7 e inferiore è stato abbandonato**." + +msgid "Major Model Changes" +msgstr "Variazioni Principali Del Modello" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Di seguito sono riportati i grandi cambiamenti che sono accaduti in v2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Supporto Account Utente Eliminato" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Prima di v2.0, gli account utente sono stati supportati. Questo è stato contro lo spirito della libreria e la discordia ToS ed è stato rimosso. Pertanto, queste caratteristiche che erano applicabili solo a loro sono state rimosse:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argomento di :meth:`Client.start` e :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` argomento di :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Classi ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTA: ``GroupChannel`` rimane ancora)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` e ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ```premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Argomenti di ``ClientUser.edit``: ``password``, ``new_password``, ``email`, ``casa``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ```profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Eventi: ``on_relationship_add`` e ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Tempo Timezone-aware" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` diventa ``now(datetime.timezone.utc)``. Se stai costruendo tu stesso :class:`datetime.datetime``, passa ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Nota che il nuovo :meth:`utils.utcnow()` può essere usato come alias di ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Modifiche Asset" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Attributi relativi all'asset che hanno precedentemente restituito stringhe di hash (ad esempio :attr:`User.avatar`) ora restituisce :class:`Asset`. :attr:`Asset.key` restituisce l'hash da ora in poi." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` e ``Class.x_url_as`` sono rimossi. :meth:`Asset.replace` o :meth:`Asset.with_x` metodi possono essere utilizzati per ottenere specifiche dimensioni o tipi di asset." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` e :attr:`PartialEmoji.url` sono ora :class:`str`. :meth:`Emoji.save` e :meth:`Emoji.read` sono aggiunti per salvare o leggere le emoji." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` e ``PartialEmoji.url_as`` sono rimossi." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Alcuni attributi :class:`AuditLogDiff` ora restituiscono :class:`Asset` invece di :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` restituisce ``None`` se l'avatar non è impostato ed è invece l'avatar predefinito; usa :attr:`User.display_avatar` per il comportamento pre-2.0." + +msgid "Before" +msgstr "Prima" + +msgid "After" +msgstr "Dopo" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``await user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``await user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\"))``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Modifiche Webhook" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` e :class:`WebhookMessage` sono ora sempre asincroni. Per uso sincrono (``requests``), usa :class:`SyncWebhook` e :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, e ``RequestsWebhookAdapter`` sono rimossi, poiché non sono necessari." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` argomenti di :meth:`Webhook.partial` e :meth:`Webhook.from_url` sono rimossi. Le sessioni sono ora passate direttamente a ``partial`` / ``from_url```." + +msgid "Intents Changes" +msgstr "Modifiche Intenti" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` è ora un intento privilegiato. Disabilitarlo causa :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message. ttachments` per essere vuoto (una stringa vuota o un array vuoto), causando direttamente :class:`ext. ommands.Command` s to not run. See `here `_ for more information." + +msgid "Threads Introduced" +msgstr "Discussioni Introdotte" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "I seguenti metodi e attributi possono restituire oggetti :class:`Thread`:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argomento" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Modifiche Dei Permessi" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` è stato rimosso a favore del controllo dei permessi del canale per detto utente." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Modifica Metodo Comportamento Modifica" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "``edit`` i metodi della maggior parte delle classi non aggiornano più la cache sul posto, e invece restituisce l'oggetto modificato." + +msgid "Positional-Keyword Argument Split" +msgstr "Positional-Keyword Argomento Divisione" + +msgid "The following are now positional only:" +msgstr "I seguenti sono ora solo posizioni:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "Ora sono solo parole chiave:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Modifiche Evento" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` sostituisce `on_member_update` per aggiornamenti a :attr:`Member.status` e :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` non sarà più spedito a causa delle modifiche di Discord." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` non è più spedito per dati incompleti, e il valore passato è sempre decompresso e decodificato in :class:`str`. In precedenza, quando ricevette un messaggio binario zlib-compresso, :func:`on_socket_raw_receive` è stato inviato su tutti i messaggi con il compresso codificato :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "Message.Type Per Le Risposte" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` restituisce ora :attr:`MessageType.reply` per le risposte, invece di :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Modifiche Adesivo" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` è stato rimosso poiché Discord non fornisce più i dati." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType```, un enum di formati di adesivi, è rinominato in :class:`StickerFormatType`. Il vecchio nome è usato per un nuovo enum con scopi diversi (controllare se l'adesivo è un adesivo di gilda o un adesivo di Nitro)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` è ora List[:class:`StickerItem`] invece di List[:class:`Sticker`]. Mentre :class:`StickerItem` supporta alcune operazioni dei precedenti ``Sticker``, ``description`` e ``pack_id`` gli attributi non esistono. :class:`Sticker` può essere recuperato tramite il metodo :meth:`StickerItem.fetch`." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` è rimosso. :class:`Sticker` può ancora essere recuperato tramite :meth:`Sticker.read` o :meth:`Sticker. ave` e il suo URL possono essere accessibili tramite :attr:`Sticker.url`, proprio come il nuovo :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "A causa dell'introduzione di :class:`GuildSticker`, ``Sticker.tags`` viene rimosso dalla classe padre :class:`Sticker` e spostato in :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Tipo Modifiche" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Molti argomenti del metodo ora rifiutano ``None`` o restituiscono ``None``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` è ora opzionale, e restituirà ``None`` in molti casi." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` restituisce ``None`` se l'avatar non è impostato ed è invece l'avatar predefinito." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`'s ``topic`` l'argomento non accetta più ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` può ora restituire ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit`'s ``name`` l'argomento non accetta più ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit`'s ``roles`` argomento non accetta più ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` e :attr:`Bot.remove_listener`'s ``name`` argomenti non accettano più ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "I seguenti attributi :class:`.ext.commands.Context` possono ora essere ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` può ora essere ``None``." + +msgid "Miscellaneous Changes" +msgstr "Modifiche Varie" + +msgid "The following were removed:" +msgstr "Sono stati rimossi i seguenti:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` argomento di :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argomento di :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` spostato in :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias ``high``) è stato rimosso. ``extreme``, ``very_high```, e ``double_table_flip`` gli attributi sono stati rimossi e sostituiti con :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "Vengono rinominati i seguenti:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` è rinominato in :attr:`Colour.og_blurple`, e :attr:`Colour.blurple` ora restituisce il colore più nuovo." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` argomenti e attributi di :class:`ext.commands.MissingPermissions` e :class:`ext.commands.BotMissingPermissions` sono rinominati in ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/it/LC_MESSAGES/old_changelog.po b/docs/locales/it/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..21e169d5d4 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/it/LC_MESSAGES/quickstart.po b/docs/locales/it/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..21a2adf607 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/it/LC_MESSAGES/version_guarantees.po b/docs/locales/it/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..a8173a707e --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Versione Garanzie" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "La libreria segue il principio di versionamento semantico `_ che significa che la versione principale viene aggiornata ogni volta che c'è una modifica API incompatibile. Tuttavia, a causa della mancanza di garanzie sul lato Discord quando si tratta di rompere i cambiamenti insieme alla natura abbastanza dinamica di Python può essere difficile discernere quello che può essere considerato un cambiamento di rottura e ciò che non è." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "La prima cosa da tenere a mente è che i cambiamenti di rottura si applicano solo a **funzioni e classi pubblicamente documentate**. Se non è elencato nella documentazione qui allora non fa parte dell'API pubblica e quindi è tenuto a cambiare. Questo include gli attributi che iniziano con un underscore o funzioni senza un underscore che non sono documentati." + +msgid "The examples below are non-exhaustive." +msgstr "Gli esempi riportati di seguito non sono esaustivi." + +msgid "Examples of Breaking Changes" +msgstr "Esempi di cambiamenti di rottura" + +msgid "Changing the default parameter value to something else." +msgstr "Cambiare il valore del parametro predefinito in qualcos'altro." + +msgid "Renaming a function without an alias to an old function." +msgstr "Rinomina una funzione senza un alias a una vecchia funzione." + +msgid "Adding or removing parameters to an event." +msgstr "Aggiungere o rimuovere parametri a un evento." + +msgid "Examples of Non-Breaking Changes" +msgstr "Esempi di cambiamenti non rotti" + +msgid "Adding or removing private underscored attributes." +msgstr "Aggiunta o rimozione di attributi sottolineati privati." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Aggiungere un elemento nel ``__slots__`` di una classe di dati." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Cambiare il comportamento di una funzione per correggere un bug." + +msgid "Changes in the documentation." +msgstr "Modifiche nella documentazione." + +msgid "Modifying the internal HTTP handling." +msgstr "Modifica della gestione HTTP interna." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Aggiornare le dipendenze a una nuova versione, maggiore o meno." + diff --git a/docs/locales/ja/LC_MESSAGES/api/abcs.po b/docs/locales/ja/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..0657b37252 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/ja/LC_MESSAGES/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..0b410708bc --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/ja/LC_MESSAGES/api/application_info.po b/docs/locales/ja/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..86c5570471 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/ja/LC_MESSAGES/api/async_iter.po b/docs/locales/ja/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..c7934bda21 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/ja/LC_MESSAGES/api/audit_logs.po b/docs/locales/ja/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..0f409b5f5a --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/ja/LC_MESSAGES/api/clients.po b/docs/locales/ja/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..8b2880e93b --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/ja/LC_MESSAGES/api/cogs.po b/docs/locales/ja/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..921f33a172 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/ja/LC_MESSAGES/api/data_classes.po b/docs/locales/ja/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..fcb1ec47b6 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/ja/LC_MESSAGES/api/enums.po b/docs/locales/ja/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..8ec182d4bf --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifies the input type of an option." + +msgid "A slash subcommand." +msgstr "A slash subcommand." + +msgid "A slash command group." +msgstr "A slash command group." + +msgid "A string." +msgstr "A string." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "An integer between -2⁵³ and 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, such as 881224361015672863, are often too big for this input type." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "A channel from the current guild." + +msgid "A role from the current guild." +msgstr "A role from the current guild." + +msgid "A mentionable (user or role)." +msgstr "A mentionable (user or role)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "A floating-point number between -2⁵³ and 2⁵³." + +msgid "An attachment." +msgstr "An attachment." + +msgid "Specifies the type of channel." +msgstr "Specifies the type of channel." + +msgid "A text channel." +msgstr "A text channel." + +msgid "A voice channel." +msgstr "A voice channel." + +msgid "A private text channel. Also called a direct message." +msgstr "A private text channel. Also called a direct message." + +msgid "A private group text channel." +msgstr "A private group text channel." + +msgid "A category channel." +msgstr "A category channel." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/ja/LC_MESSAGES/api/events.po b/docs/locales/ja/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..cc86ab0031 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/ja/LC_MESSAGES/api/exceptions.po b/docs/locales/ja/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..e4cd130b21 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/ja/LC_MESSAGES/api/index.po b/docs/locales/ja/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..70d92c282d --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/ja/LC_MESSAGES/api/models.po b/docs/locales/ja/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..abcf0bdca8 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/ja/LC_MESSAGES/api/sinks.po b/docs/locales/ja/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..82436a6b02 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/ja/LC_MESSAGES/api/ui_kit.po b/docs/locales/ja/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..bcbfa362d8 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/ja/LC_MESSAGES/api/utils.po b/docs/locales/ja/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..11cc3bc28c --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/ja/LC_MESSAGES/api/version_info.po b/docs/locales/ja/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..3e7ff6039a --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/ja/LC_MESSAGES/api/voice.po b/docs/locales/ja/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..6458abab9e --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/ja/LC_MESSAGES/api/webhooks.po b/docs/locales/ja/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..37d7e63745 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/abcs.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/abcs.po new file mode 100644 index 0000000000..e490a75ebc --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameter" +msgstr "Parameter" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":py:class:`~discord.iterators.HistoryIterator`" +msgstr ":py:class:`~discord.iterators.HistoryIterator`" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :py:class:`~discord.context_managers.Typing`" +msgstr "This is useful for denoting long computations in your bot. :rtype: :py:class:`~discord.context_managers.Typing`" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + 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 new file mode 100644 index 0000000000..74fdbe6b20 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameter" +msgstr "Parameter" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:data:`~typing.Callable`" +msgstr ":py:data:`~typing.Callable`" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.SlashCommand` | :py:class:`~discord.commands.core.SlashCommandGroup`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.SlashCommand` | :py:class:`~discord.commands.core.SlashCommandGroup`, :py:obj:`None`, :py:obj:`None`]" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":py:class:`~typing.TypeVar`\\(``T``)" +msgstr ":py:class:`~typing.TypeVar`\\(``T``)" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/application_info.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_info.po new file mode 100644 index 0000000000..d118b5841a --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameter" +msgstr "Parameter" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/async_iter.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/async_iter.po new file mode 100644 index 0000000000..604a7598ee --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameter" +msgstr "Parameter" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/audit_logs.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/audit_logs.po new file mode 100644 index 0000000000..19b7d4154b --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameter" +msgstr "Parameter" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/clients.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/clients.po new file mode 100644 index 0000000000..8c3a467d5b --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameter" +msgstr "Parameter" + +msgid ":py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])" +msgstr ":py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])], :py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])], :py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])]" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":py:class:`~discord.iterators.EntitlementIterator`" +msgstr ":py:class:`~discord.iterators.EntitlementIterator`" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":py:class:`~discord.iterators.GuildIterator`" +msgstr ":py:class:`~discord.iterators.GuildIterator`" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.abc.GuildChannel`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.abc.GuildChannel`, :py:obj:`None`, :py:obj:`None`]" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.member.Member`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.member.Member`, :py:obj:`None`, :py:obj:`None`]" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :py:class:`bool`" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :py:class:`bool`" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":py:class:`list`\\[:py:class:`~discord.types.interactions.ApplicationCommand`]" +msgstr ":py:class:`list`\\[:py:class:`~discord.types.interactions.ApplicationCommand`]" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.ApplicationCommand`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.ApplicationCommand`, :py:obj:`None`, :py:obj:`None`]" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":py:data:`~typing.Optional`\\[:py:class:`~discord.shard.ShardInfo`]" +msgstr ":py:data:`~typing.Optional`\\[:py:class:`~discord.shard.ShardInfo`]" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :py:class:`bool`" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :py:class:`bool`" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/cogs.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/cogs.po new file mode 100644 index 0000000000..39635c156e --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.ApplicationCommand`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.ApplicationCommand`, :py:obj:`None`, :py:obj:`None`]" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameter" +msgstr "Parameter" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``FuncT``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:data:`~typing.Any`])], :py:class:`~typing.TypeVar`\\(``FuncT``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:data:`~typing.Any`])]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``FuncT``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:data:`~typing.Any`])], :py:class:`~typing.TypeVar`\\(``FuncT``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:data:`~typing.Any`])]" + +msgid "Checks whether the cog has an error handler. :rtype: :py:class:`bool`" +msgstr "Checks whether the cog has an error handler. :rtype: :py:class:`bool`" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + 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 new file mode 100644 index 0000000000..766e459e39 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:class:`~discord.flags.Intents`" +msgstr ":py:class:`~discord.flags.Intents`" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :py:class:`bool`" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :py:class:`bool`" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :py:class:`~typing.TypeVar`\\(``A``, bound= AllowedMentions)" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :py:class:`~typing.TypeVar`\\(``A``, bound= AllowedMentions)" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :py:class:`~typing.TypeVar`\\(``A``, bound= AllowedMentions)" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :py:class:`~typing.TypeVar`\\(``A``, bound= AllowedMentions)" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":py:class:`~typing.TypeVar`\\(``E``, bound= Embed)" +msgstr ":py:class:`~typing.TypeVar`\\(``E``, bound= Embed)" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":py:class:`~discord.embeds.EmbedField`" +msgstr ":py:class:`~discord.embeds.EmbedField`" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":py:class:`~discord.poll.Poll`" +msgstr ":py:class:`~discord.poll.Poll`" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":py:class:`~discord.iterators.VoteIterator`" +msgstr ":py:class:`~discord.iterators.VoteIterator`" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":py:class:`~discord.flags.MemberCacheFlags`" +msgstr ":py:class:`~discord.flags.MemberCacheFlags`" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":py:class:`list`\\[:py:class:`~discord.enums.UserFlags`]" +msgstr ":py:class:`list`\\[:py:class:`~discord.enums.UserFlags`]" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":py:class:`tuple`\\[:py:class:`int`, :py:class:`int`, :py:class:`int`]" +msgstr ":py:class:`tuple`\\[:py:class:`int`, :py:class:`int`, :py:class:`int`]" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr ":py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :py:class:`~typing.TypeVar`\\(``CT``, bound= Colour)" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr ":py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :py:class:`~typing.TypeVar`\\(``P``, bound= Permissions)" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":py:class:`tuple`\\[:py:class:`~discord.permissions.Permissions`, :py:class:`~discord.permissions.Permissions`]" +msgstr ":py:class:`tuple`\\[:py:class:`~discord.permissions.Permissions`, :py:class:`~discord.permissions.Permissions`]" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":py:class:`~typing.TypeVar`\\(``PO``, bound= PermissionOverwrite)" +msgstr ":py:class:`~typing.TypeVar`\\(``PO``, bound= PermissionOverwrite)" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/enums.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/enums.po new file mode 100644 index 0000000000..f43361483c --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifies the input type of an option." + +msgid "A slash subcommand." +msgstr "A slash subcommand." + +msgid "A slash command group." +msgstr "A slash command group." + +msgid "A string." +msgstr "A string." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "An integer between -2⁵³ and 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, such as 881224361015672863, are often too big for this input type." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "A channel from the current guild." + +msgid "A role from the current guild." +msgstr "A role from the current guild." + +msgid "A mentionable (user or role)." +msgstr "A mentionable (user or role)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "A floating-point number between -2⁵³ and 2⁵³." + +msgid "An attachment." +msgstr "An attachment." + +msgid "Specifies the type of channel." +msgstr "Specifies the type of channel." + +msgid "A text channel." +msgstr "A text channel." + +msgid "A voice channel." +msgstr "A voice channel." + +msgid "A private text channel. Also called a direct message." +msgstr "A private text channel. Also called a direct message." + +msgid "A private group text channel." +msgstr "A private group text channel." + +msgid "A category channel." +msgstr "A category channel." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/events.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/events.po new file mode 100644 index 0000000000..228d4d3f0b --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameter" +msgstr "Parameter" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/exceptions.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/exceptions.po new file mode 100644 index 0000000000..8d5907137c --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameter" +msgstr "Parameter" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/index.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/index.po new file mode 100644 index 0000000000..384a17615c --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/models.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/models.po new file mode 100644 index 0000000000..6c343a365b --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/models.po @@ -0,0 +1,7789 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameter" +msgstr "Parameter" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":py:class:`~discord.iterators.HistoryIterator`" +msgstr ":py:class:`~discord.iterators.HistoryIterator`" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :py:class:`~discord.context_managers.Typing`" +msgstr "This is useful for denoting long computations in your bot. :rtype: :py:class:`~discord.context_managers.Typing`" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":py:class:`~discord.iterators.EntitlementIterator`" +msgstr ":py:class:`~discord.iterators.EntitlementIterator`" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :py:class:`bool`" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :py:class:`bool`" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":py:class:`~discord.message.Message`" +msgstr ":py:class:`~discord.message.Message`" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":py:class:`~discord.iterators.ReactionIterator`" +msgstr ":py:class:`~discord.iterators.ReactionIterator`" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :py:obj:`None`" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :py:obj:`None`" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":py:class:`~discord.iterators.MemberIterator`" +msgstr ":py:class:`~discord.iterators.MemberIterator`" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":py:class:`~discord.iterators.AuditLogIterator`" +msgstr ":py:class:`~discord.iterators.AuditLogIterator`" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :py:obj:`None`" +msgstr "Leaves the guild. :rtype: :py:obj:`None`" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":py:class:`~discord.iterators.BanIterator`" +msgstr ":py:class:`~discord.iterators.BanIterator`" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":py:class:`~discord.template.Template`" +msgstr ":py:class:`~discord.template.Template`" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :py:obj:`None`" +msgstr "Only applies to stage channels. :rtype: :py:obj:`None`" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :py:obj:`None`" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :py:obj:`None`" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :py:class:`bool`" +msgstr "Whether the role is associated with a bot. :rtype: :py:class:`bool`" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :py:class:`bool`" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :py:class:`bool`" + +msgid "Whether the role is managed by an integration. :rtype: :py:class:`bool`" +msgstr "Whether the role is managed by an integration. :rtype: :py:class:`bool`" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :py:class:`bool`" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :py:class:`bool`" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":py:class:`~discord.iterators.ScheduledEventSubscribersIterator`" +msgstr ":py:class:`~discord.iterators.ScheduledEventSubscribersIterator`" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :py:class:`bool`" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :py:class:`bool`" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":py:class:`~discord.interactions.Interaction`" +msgstr ":py:class:`~discord.interactions.Interaction`" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :py:class:`~discord.interactions.Interaction`" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :py:class:`~discord.interactions.Interaction`" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :py:class:`bool`" +msgstr "Whether the bot can use this emoji. :rtype: :py:class:`bool`" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":py:class:`~discord.iterators.ArchivedThreadIterator`" +msgstr ":py:class:`~discord.iterators.ArchivedThreadIterator`" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":py:data:`~typing.Optional`\\[:py:class:`~discord.channel.ForumTag`]" +msgstr ":py:data:`~typing.Optional`\\[:py:class:`~discord.channel.ForumTag`]" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/sinks.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/sinks.po new file mode 100644 index 0000000000..25fce10ee0 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/ui_kit.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/ui_kit.po new file mode 100644 index 0000000000..17a20d0d03 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameter" +msgstr "Parameter" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``I``, bound= Item), :py:class:`~discord.interactions.Interaction`], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]]], :py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``I``, bound= Item), :py:class:`~discord.interactions.Interaction`], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]]]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``I``, bound= Item), :py:class:`~discord.interactions.Interaction`], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]]], :py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``I``, bound= Item), :py:class:`~discord.interactions.Interaction`], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]]]" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/utils.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/utils.po new file mode 100644 index 0000000000..c8fe388369 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameter" +msgstr "Parameter" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:data:`~typing.Optional`\\[:py:class:`~typing.TypeVar`\\(``T``)]" +msgstr ":py:data:`~typing.Optional`\\[:py:class:`~typing.TypeVar`\\(``T``)]" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Callable`\\[\\[:py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)], :py:class:`~typing.TypeVar`\\(``T``)]], :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)], :py:class:`~typing.TypeVar`\\(``T``)]]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Callable`\\[\\[:py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)], :py:class:`~typing.TypeVar`\\(``T``)]], :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)], :py:class:`~typing.TypeVar`\\(``T``)]]" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/version_info.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/version_info.po new file mode 100644 index 0000000000..4d41fda84e --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/voice.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/voice.po new file mode 100644 index 0000000000..7eff94744d --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameter" +msgstr "Parameter" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":py:data:`~typing.Optional`\\[:py:class:`~_asyncio.Future`]" +msgstr ":py:data:`~typing.Optional`\\[:py:class:`~_asyncio.Future`]" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/api/webhooks.po b/docs/locales/ja/LC_MESSAGES/build/locales/api/webhooks.po new file mode 100644 index 0000000000..aa1175420c --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":py:class:`~discord.webhook.async_.Webhook`" +msgstr ":py:class:`~discord.webhook.async_.Webhook`" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :py:class:`bool`" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :py:class:`bool`" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :py:class:`bool`" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :py:class:`bool`" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":py:class:`~discord.webhook.sync.SyncWebhookMessage`" +msgstr ":py:class:`~discord.webhook.sync.SyncWebhookMessage`" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/changelog.po b/docs/locales/ja/LC_MESSAGES/build/locales/changelog.po new file mode 100644 index 0000000000..276ed18a03 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/cogs.po b/docs/locales/ja/LC_MESSAGES/build/locales/cogs.po new file mode 100644 index 0000000000..1f9de82102 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/discord.po b/docs/locales/ja/LC_MESSAGES/build/locales/discord.po new file mode 100644 index 0000000000..05f30872a4 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/bridge/api.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/bridge/api.po new file mode 100644 index 0000000000..8614499de3 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameter" +msgstr "Parameter" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":py:class:`~collections.abc.Iterator`\\[:py:class:`~discord.ext.bridge.core.BridgeCommand`]" +msgstr ":py:class:`~collections.abc.Iterator`\\[:py:class:`~discord.ext.bridge.core.BridgeCommand`]" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":py:class:`~discord.interactions.Interaction` | :py:class:`~discord.webhook.async_.WebhookMessage` | :py:class:`~discord.message.Message`" +msgstr ":py:class:`~discord.interactions.Interaction` | :py:class:`~discord.webhook.async_.WebhookMessage` | :py:class:`~discord.message.Message`" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :py:obj:`None`" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :py:obj:`None`" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":py:class:`~discord.interactions.InteractionMessage` | :py:class:`~discord.message.Message`" +msgstr ":py:class:`~discord.interactions.InteractionMessage` | :py:class:`~discord.message.Message`" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":py:data:`~typing.Any`" +msgstr ":py:data:`~typing.Any`" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/bridge/index.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/bridge/index.po new file mode 100644 index 0000000000..c8365e1d1c --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/api.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/api.po new file mode 100644 index 0000000000..0cada3a41e --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameter" +msgstr "Parameter" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])" +msgstr ":py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])], :py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])], :py:class:`~typing.TypeVar`\\(``Coro``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]])]" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":py:class:`~discord.iterators.EntitlementIterator`" +msgstr ":py:class:`~discord.iterators.EntitlementIterator`" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":py:class:`~discord.iterators.GuildIterator`" +msgstr ":py:class:`~discord.iterators.GuildIterator`" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.abc.GuildChannel`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.abc.GuildChannel`, :py:obj:`None`, :py:obj:`None`]" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.member.Member`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.member.Member`, :py:obj:`None`, :py:obj:`None`]" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :py:class:`bool`" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :py:class:`bool`" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":py:class:`list`\\[:py:class:`~discord.types.interactions.ApplicationCommand`]" +msgstr ":py:class:`list`\\[:py:class:`~discord.types.interactions.ApplicationCommand`]" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.ApplicationCommand`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.commands.core.ApplicationCommand`, :py:obj:`None`, :py:obj:`None`]" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :py:class:`~typing.Generator`\\[:py:class:`~discord.ext.commands.core.Command`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:data:`~typing.Any`, :py:data:`~typing.Any`], :py:obj:`None`, :py:obj:`None`]" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :py:class:`~typing.Generator`\\[:py:class:`~discord.ext.commands.core.Command`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:data:`~typing.Any`, :py:data:`~typing.Any`], :py:obj:`None`, :py:obj:`None`]" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":py:class:`list`\\[:py:class:`str`]" +msgstr ":py:class:`list`\\[:py:class:`str`]" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":py:data:`~typing.Callable`\\[\\[:py:class:`~discord.ext.commands.bot.Bot` | :py:class:`~discord.ext.commands.bot.AutoShardedBot`, :py:class:`~discord.message.Message`], :py:class:`list`\\[:py:class:`str`]]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:class:`~discord.ext.commands.bot.Bot` | :py:class:`~discord.ext.commands.bot.AutoShardedBot`, :py:class:`~discord.message.Message`], :py:class:`list`\\[:py:class:`str`]]" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Union`\\[:py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]], :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``T``)]]]], :py:data:`~typing.Union`\\[:py:class:`~discord.ext.commands.core.Command`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`), :py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``CommandT``, bound= Command)]]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Union`\\[:py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]], :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``T``)]]]], :py:data:`~typing.Union`\\[:py:class:`~discord.ext.commands.core.Command`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`), :py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``CommandT``, bound= Command)]]" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Union`\\[:py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]], :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``T``)]]]], :py:data:`~typing.Union`\\[:py:class:`~discord.ext.commands.core.Group`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`), :py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``GroupT``, bound= Group)]]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Union`\\[:py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:data:`~typing.Any`]], :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.Concatenate`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.TypeVar`\\(``ContextT``, bound= Context), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`)]], :py:class:`~typing.Coroutine`\\[:py:data:`~typing.Any`, :py:data:`~typing.Any`, :py:class:`~typing.TypeVar`\\(``T``)]]]], :py:data:`~typing.Union`\\[:py:class:`~discord.ext.commands.core.Group`\\[:py:class:`~typing.TypeVar`\\(``CogT``, bound= Cog), :py:class:`~typing.ParamSpec`\\(``P``, bound= :py:obj:`None`), :py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``GroupT``, bound= Group)]]" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":py:class:`~typing.TypeVar`\\(``HookT``, bound= Hook)" +msgstr ":py:class:`~typing.TypeVar`\\(``HookT``, bound= Hook)" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":py:class:`~typing.TypeVar`\\(``ErrorT``, bound= Error)" +msgstr ":py:class:`~typing.TypeVar`\\(``ErrorT``, bound= Error)" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":py:class:`~typing.TypeVar`\\(``T``)" +msgstr ":py:class:`~typing.TypeVar`\\(``T``)" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :py:class:`bool`" +msgstr "Checks whether the command has an error handler registered. :rtype: :py:class:`bool`" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":py:class:`~typing.Generator`\\[:py:class:`~discord.ext.commands.core.Command`, :py:obj:`None`, :py:obj:`None`]" +msgstr ":py:class:`~typing.Generator`\\[:py:class:`~discord.ext.commands.core.Command`, :py:obj:`None`, :py:obj:`None`]" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":py:class:`str`" +msgstr ":py:class:`str`" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``T``)], :py:class:`~typing.TypeVar`\\(``T``)]" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":py:class:`~discord.iterators.HistoryIterator`" +msgstr ":py:class:`~discord.iterators.HistoryIterator`" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :py:class:`~discord.context_managers.Typing`" +msgstr "This is useful for denoting long computations in your bot. :rtype: :py:class:`~discord.context_managers.Typing`" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":py:class:`~typing.TypeVar`\\(``T_co``, covariant=True)" +msgstr ":py:class:`~typing.TypeVar`\\(``T_co``, covariant=True)" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":py:class:`~discord.object.Object`" +msgstr ":py:class:`~discord.object.Object`" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":py:class:`~discord.member.Member`" +msgstr ":py:class:`~discord.member.Member`" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":py:class:`~discord.user.User`" +msgstr ":py:class:`~discord.user.User`" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":py:class:`~discord.message.Message`" +msgstr ":py:class:`~discord.message.Message`" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":py:class:`~discord.message.PartialMessage`" +msgstr ":py:class:`~discord.message.PartialMessage`" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":py:class:`~discord.abc.GuildChannel`" +msgstr ":py:class:`~discord.abc.GuildChannel`" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":py:class:`~discord.channel.TextChannel`" +msgstr ":py:class:`~discord.channel.TextChannel`" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":py:class:`~discord.channel.VoiceChannel`" +msgstr ":py:class:`~discord.channel.VoiceChannel`" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":py:class:`~discord.channel.StageChannel`" +msgstr ":py:class:`~discord.channel.StageChannel`" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":py:class:`~discord.channel.CategoryChannel`" +msgstr ":py:class:`~discord.channel.CategoryChannel`" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":py:class:`~discord.channel.ForumChannel`" +msgstr ":py:class:`~discord.channel.ForumChannel`" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":py:class:`~discord.invite.Invite`" +msgstr ":py:class:`~discord.invite.Invite`" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":py:class:`~discord.guild.Guild`" +msgstr ":py:class:`~discord.guild.Guild`" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":py:class:`~discord.role.Role`" +msgstr ":py:class:`~discord.role.Role`" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":py:class:`~discord.activity.Game`" +msgstr ":py:class:`~discord.activity.Game`" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":py:class:`~discord.colour.Colour`" +msgstr ":py:class:`~discord.colour.Colour`" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":py:class:`~discord.emoji.Emoji`" +msgstr ":py:class:`~discord.emoji.Emoji`" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":py:class:`~discord.partial_emoji.PartialEmoji`" +msgstr ":py:class:`~discord.partial_emoji.PartialEmoji`" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":py:class:`~discord.threads.Thread`" +msgstr ":py:class:`~discord.threads.Thread`" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":py:class:`~discord.sticker.GuildSticker`" +msgstr ":py:class:`~discord.sticker.GuildSticker`" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":py:class:`dict`\\[:py:class:`str`, :py:class:`~discord.ext.commands.flags.Flag`]" +msgstr ":py:class:`dict`\\[:py:class:`str`, :py:class:`~discord.ext.commands.flags.Flag`]" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":py:data:`~typing.Any`" +msgstr ":py:data:`~typing.Any`" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/cogs.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/cogs.po new file mode 100644 index 0000000000..6fe8e9c4fd --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/commands.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/commands.po new file mode 100644 index 0000000000..3f449870e4 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/extensions.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/extensions.po new file mode 100644 index 0000000000..64386db1ee --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/index.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/index.po new file mode 100644 index 0000000000..8647254770 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/pages/index.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/pages/index.po new file mode 100644 index 0000000000..1ec538890f --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameter" +msgstr "Parameter" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:data:`~typing.Optional`\\[:py:class:`list`\\[:py:class:`~discord.file.File`]]" +msgstr ":py:data:`~typing.Optional`\\[:py:class:`list`\\[:py:class:`~discord.file.File`]]" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":py:class:`list`\\[:py:class:`~discord.ext.pages.pagination.Page`]" +msgstr ":py:class:`list`\\[:py:class:`~discord.ext.pages.pagination.Page`]" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":py:class:`~discord.ext.pages.pagination.Page`" +msgstr ":py:class:`~discord.ext.pages.pagination.Page`" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/ext/tasks/index.po b/docs/locales/ja/LC_MESSAGES/build/locales/ext/tasks/index.po new file mode 100644 index 0000000000..7a09c10f75 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameter" +msgstr "Parameter" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Verursacht" +msgstr "Verursacht" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Rückgabetyp" +msgstr "Rückgabetyp" + +msgid ":py:class:`~typing.TypeVar`\\(``FT``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])" +msgstr ":py:class:`~typing.TypeVar`\\(``FT``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":py:class:`~typing.TypeVar`\\(``ET``, bound= :py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Any`, :py:class:`BaseException`], :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])" +msgstr ":py:class:`~typing.TypeVar`\\(``ET``, bound= :py:data:`~typing.Callable`\\[\\[:py:data:`~typing.Any`, :py:class:`BaseException`], :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":py:data:`~typing.Any`" +msgstr ":py:data:`~typing.Any`" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Rückgabe" +msgstr "Rückgabe" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :py:obj:`None`" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :py:obj:`None`" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":py:obj:`None`" +msgstr ":py:obj:`None`" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :py:obj:`None`" +msgstr "Removes all exception types that are handled. :rtype: :py:obj:`None`" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":py:data:`~typing.Optional`\\[:py:class:`~_asyncio.Task`\\[:py:obj:`None`]]" +msgstr ":py:data:`~typing.Optional`\\[:py:class:`~_asyncio.Task`\\[:py:obj:`None`]]" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":py:class:`bool`" +msgstr ":py:class:`bool`" + +msgid "Whether the internal task has failed. :rtype: :py:class:`bool`" +msgstr "Whether the internal task has failed. :rtype: :py:class:`bool`" + +msgid "Check if the task is currently running. :rtype: :py:class:`bool`" +msgstr "Check if the task is currently running. :rtype: :py:class:`bool`" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``LF``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])], :py:class:`~discord.ext.tasks.Loop`\\[:py:class:`~typing.TypeVar`\\(``LF``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])]]" +msgstr ":py:data:`~typing.Callable`\\[\\[:py:class:`~typing.TypeVar`\\(``LF``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])], :py:class:`~discord.ext.tasks.Loop`\\[:py:class:`~typing.TypeVar`\\(``LF``, bound= :py:data:`~typing.Callable`\\[:py:data:`...`, :py:class:`~typing.Awaitable`\\[:py:data:`~typing.Any`]])]]" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/faq.po b/docs/locales/ja/LC_MESSAGES/build/locales/faq.po new file mode 100644 index 0000000000..1ca9ee694d --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/index.po b/docs/locales/ja/LC_MESSAGES/build/locales/index.po new file mode 100644 index 0000000000..bdd49237dc --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/installing.po b/docs/locales/ja/LC_MESSAGES/build/locales/installing.po new file mode 100644 index 0000000000..6ce2876f00 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/intents.po b/docs/locales/ja/LC_MESSAGES/build/locales/intents.po new file mode 100644 index 0000000000..bf7c13556a --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/logging.po b/docs/locales/ja/LC_MESSAGES/build/locales/logging.po new file mode 100644 index 0000000000..5a565ddb69 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/migrating_to_v1.po b/docs/locales/ja/LC_MESSAGES/build/locales/migrating_to_v1.po new file mode 100644 index 0000000000..145230a20b --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/migrating_to_v2.po b/docs/locales/ja/LC_MESSAGES/build/locales/migrating_to_v2.po new file mode 100644 index 0000000000..8aef7d54ed --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migrating to v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 introduced new Discord features and deprecated some old ones." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Below are major changes that have happened in v2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Dropped User Accounts Support" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` argument of :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` and ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Events: ``on_relationship_add`` and ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Timezone-aware Time" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Asset Changes" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``await user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``await user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\"))``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Webhook Changes" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "Intents Changes" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." + +msgid "Threads Introduced" +msgstr "Threads Introduced" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "The following methods and attributes can return :class:`Thread` objects:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Permission Changes" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Edit Method Behavior Change" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." + +msgid "Positional-Keyword Argument Split" +msgstr "Positional-Keyword Argument Split" + +msgid "The following are now positional only:" +msgstr "The following are now positional only:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "The following are now keyword only:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "Message.type For Replies" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Sticker Changes" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` was removed as Discord no longer provides the data." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Type Changes" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Many method arguments now reject ``None`` or return ``None``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` can now return ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` can now be ``None``." + +msgid "Miscellaneous Changes" +msgstr "Miscellaneous Changes" + +msgid "The following were removed:" +msgstr "The following were removed:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` argument of :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argument of :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "The following were renamed:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/old_changelog.po b/docs/locales/ja/LC_MESSAGES/build/locales/old_changelog.po new file mode 100644 index 0000000000..07de1f26c6 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/quickstart.po b/docs/locales/ja/LC_MESSAGES/build/locales/quickstart.po new file mode 100644 index 0000000000..ac8cb242dd --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/ja/LC_MESSAGES/build/locales/version_guarantees.po b/docs/locales/ja/LC_MESSAGES/build/locales/version_guarantees.po new file mode 100644 index 0000000000..a65f5a9755 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/build/locales/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Version Guarantees" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." + +msgid "The examples below are non-exhaustive." +msgstr "The examples below are non-exhaustive." + +msgid "Examples of Breaking Changes" +msgstr "Examples of Breaking Changes" + +msgid "Changing the default parameter value to something else." +msgstr "Changing the default parameter value to something else." + +msgid "Renaming a function without an alias to an old function." +msgstr "Renaming a function without an alias to an old function." + +msgid "Adding or removing parameters to an event." +msgstr "Adding or removing parameters to an event." + +msgid "Examples of Non-Breaking Changes" +msgstr "Examples of Non-Breaking Changes" + +msgid "Adding or removing private underscored attributes." +msgstr "Adding or removing private underscored attributes." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Adding an element into the ``__slots__`` of a data class." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Changing the behaviour of a function to fix a bug." + +msgid "Changes in the documentation." +msgstr "Changes in the documentation." + +msgid "Modifying the internal HTTP handling." +msgstr "Modifying the internal HTTP handling." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Upgrading the dependencies to a new version, major or otherwise." + diff --git a/docs/locales/ja/LC_MESSAGES/changelog.po b/docs/locales/ja/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..d18690d984 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/ja/LC_MESSAGES/cogs.po b/docs/locales/ja/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..713392b91f --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/ja/LC_MESSAGES/discord.po b/docs/locales/ja/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..242f4b20a4 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po b/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..2e66ef4160 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po b/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..5d04d47e3a --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/api.po b/docs/locales/ja/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..a2b86203a5 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..324861b347 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po b/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..85b41501d1 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..4f3fd6efcd --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/index.po b/docs/locales/ja/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..d05921587d --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/ja/LC_MESSAGES/ext/pages/index.po b/docs/locales/ja/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..19c1622bfa --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po b/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..6236de13f1 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/ja/LC_MESSAGES/faq.po b/docs/locales/ja/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..91d04f72fb --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/ja/LC_MESSAGES/index.po b/docs/locales/ja/LC_MESSAGES/index.po new file mode 100644 index 0000000000..f6843e1e93 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/ja/LC_MESSAGES/installing.po b/docs/locales/ja/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..f2d0f0d14d --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/ja/LC_MESSAGES/intents.po b/docs/locales/ja/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..7201bbd103 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/ja/LC_MESSAGES/logging.po b/docs/locales/ja/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..8130d84e9f --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po b/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ea81171aff --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po b/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..fc5cd39d5d --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "v2.0への移行" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 は新しいDiscord機能を導入し、古い機能を非推奨にしました。" + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." + +msgid "Python Version Change" +msgstr "Python のバージョンの変更" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "開発を容易にし、依存関係を3の使用を可能にするためにアップグレードすることもできます。 もしくはそれ以上で、ライブラリは 3 以下の Python バージョンのサポートを削除する必要がありました。 、基本的には**Python 3.7 以下のサポートが削除された**ことを意味します。" + +msgid "Major Model Changes" +msgstr "主要なモデルの変更" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "以下は v2.0 で起こった主な変更点です:" + +msgid "Dropped User Accounts Support" +msgstr "ドロップされたユーザーアカウントのサポート" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "v2.0以前は、ユーザーアカウントがサポートされていました。これはライブラリとdiscordの精神に反しており、削除されています。 したがって、それらにのみ適用されたこれらの機能は削除されます:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr ":meth:`Client.change_presence` の ``afk`` 引数" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "クラス ``Profile`` 、 ``Relationship`` 、 ``Call Message`` 、 ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` 自体は残ります)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` と ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "``ClientUser.edit``の引数: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relation``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "イベント: ``on_relationship_add`` と ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "タイムゾーン対応時間" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` は ``now(datetime.timezone.utc)`` になります。 :class:`datetime.datetime`` を自分で構築する場合は、 ``tzinfo=datetime.timezone.utc`` を渡してください。" + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "新しく追加された :meth:`utils.utcnow()` は ``datetime.datetime.now(datetime.timezone.utc)`` のエイリアスとして使用できます。" + +msgid "Asset Changes" +msgstr "資産の変更" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "以前にハッシュ文字列を返したアセット関連の属性 (例: :attr:`User.avatar`) が、 :class:`Asset` を返すようになりました。 :attr:`Asset.key` はこれからハッシュを返します。" + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` と ``Class.x_url_as`` が削除されます。 :meth:`Asset.replace` または :meth:`Asset.with_x` メソッドは、特定のアセットのサイズやタイプを取得するために使用できます。" + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` と :attr:`PartialEmoji.url` が :class:`str` になりました。 :meth:`Emoji.save` と :meth:`Emoji.read` が絵文字を保存または読むために追加されました。" + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` と ``PartialEmoji.url_as`` は削除されます。" + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "いくつかの :class:`AuditLogDiff` 属性は :class:`str`ではなく :class:`Asset` を返すようになりました: :attr:`AuditLogDiff.splash` 、 :attr:`AuditLogDiff.icon` 、 :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` は、アバターが設定されておらず、デフォルトのアバターの代わりに``None`` を返します。 :attr:`User.display_avatar` を使用して、2.0以前の動作をします。" + +msgid "Before" +msgstr "前" + +msgid "After" +msgstr "後" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``await user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``await user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\")``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Webhookの変更" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` と :class:`WebhookMessage` は常に非同期になりました。同期に使用するには、 :class:`SyncWebhook` と :class:`SyncWebhookMessage` を使用してください。" + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, ``RequestsWebhookAdapter`` は不要なので削除されます。" + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr ":meth:`Webhook.partial` と :meth:`Webhook.from_url` の ``adapter`` 引数が削除されました。セッションは ``partial`` / ``from_url`` に直接渡されるようになりました。" + +msgid "Intents Changes" +msgstr "インテントの変更" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." + +msgid "Threads Introduced" +msgstr "導入済みスレッド" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "以下のメソッドと属性は、 :class:`Thread` オブジェクトを返します。" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`の``channel`` 引数" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "権限の変更" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` は削除されました。" + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "メソッドの動作の変更を編集" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "ほとんどのクラスの ``edit`` メソッドはもはやキャッシュをインプレースで更新せず、代わりに修正されたオブジェクトを返します。" + +msgid "Positional-Keyword Argument Split" +msgstr "位置キーワード引数分割" + +msgid "The following are now positional only:" +msgstr "以下は現在位置のみです:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named@@1" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "以下はキーワードのみです。" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "イベントの変更" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` は、 `on_member_update` を :attr:`Member.status` と :attr:`Member.activities` への更新に置き換えます。" + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` はDiscordの変更によりディスパッチされなくなります。" + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "Message.type 返信用" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "ステッカーの変更" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "Discordがデータを提供しなくなったため、``Sticker.preview_image`` が削除されました。" + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "ステッカーフォーマットの列挙型である ``StickerType`` は :class:`StickerFormatType` に名前を変更しました。 古い名前は、異なる目的を持つ新しい列挙に使用されます(ステッカーがギルドステッカーまたはニトロステッカーであるかを確認します)。" + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr ":class:`GuildSticker` の導入により、親クラス :class:`Sticker` から ``Sticker.tags`` が削除され、 :attr:`StandardSticker.tags` に移動されました。" + +msgid "Type Changes" +msgstr "種類の変更" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "多くのメソッド引数は、``None`` または ``None`` を返すようになりました。" + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` は省略可能になり、多くの場合は ``None`` を返します。" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` は、アバターが設定されておらず、デフォルトのアバターの代わりに``None`` を返します。" + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel` の ``topic`` 引数が ``None`` を受け付けなくなりました。" + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` は ``None`` を返せるようになりました。" + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit` の ``name`` 引数は ``None`` を受け付けなくなりました。" + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit` の ``roles`` 引数は ``None`` を受け付けなくなりました。" + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` と :attr:`Bot.remove_listener` の ``name`` 引数は ``None`` を受け付けなくなりました。" + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "以下の :class:`.ext.commands.Context` 属性が ``None`` になりました: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand`` 。" + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` は ``None`` になりました。" + +msgid "Miscellaneous Changes" +msgstr "その他の変更" + +msgid "The following were removed:" +msgstr "以下が削除されました:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` argument of :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr ":class:`Client` の ``fetch_offline_members`` 引数" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` が :attr:`ext.commands.Context.clean_prefix` に移動しました" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (``high`` のエイリアス) が削除されました。 ``extreme``, ``very_high``, および ``double_table_flip`` 属性は削除され、 :attr:`VerificationLevel.highest` に置き換えられました。" + +msgid "The following were renamed:" +msgstr "以下の名前が変更されました:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:の `Color.og_blurple` が :attr:に名前を変更され、 :attr:の `Colour.blurple` が新しい色を返すようになりました。" + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` 引数と属性 :class:`ext.commands.MissingPermissions` と :class:`ext.commands.BotMissingPermissions` は ``missing_permissions`` に名前を変更しました。" + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/ja/LC_MESSAGES/old_changelog.po b/docs/locales/ja/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..a1f5831ab1 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/ja/LC_MESSAGES/quickstart.po b/docs/locales/ja/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..018b5372f2 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/ja/LC_MESSAGES/version_guarantees.po b/docs/locales/ja/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..f4c2df6e87 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "バージョン保証" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "ライブラリは `semantic versioning principal `_ に従います。これは互換性のないAPI変更が発生するたびにメジャーバージョンが更新されることを意味します。 しかし、Discord側の保証がないため、Pythonのかなりダイナミックな性質とともに変更を破ることになると、何が壊れた変化とみなされるか、何がそうでないのかを判断するのは難しいことです。" + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "最初に注意すべきことは、壊れた変更は**公開されている関数とクラス**にのみ適用されることです。 ここでドキュメントに記載されていない場合は、それはパブリック API の一部ではなく、変更されることになります。 これには、文書化されていないアンダースコアまたはアンダースコアがない関数で始まる属性が含まれます。" + +msgid "The examples below are non-exhaustive." +msgstr "以下の例は網羅的ではありません。" + +msgid "Examples of Breaking Changes" +msgstr "破損変更の例" + +msgid "Changing the default parameter value to something else." +msgstr "デフォルトのパラメータ値を別のものに変更します。" + +msgid "Renaming a function without an alias to an old function." +msgstr "古い関数へのエイリアスなしで関数の名前を変更します。" + +msgid "Adding or removing parameters to an event." +msgstr "イベントにパラメータを追加または削除します。" + +msgid "Examples of Non-Breaking Changes" +msgstr "非破壊的変更の例" + +msgid "Adding or removing private underscored attributes." +msgstr "アンダースコアの非公開属性の追加または削除。" + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "データクラスの「__slots__」に要素を追加します。" + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "バグを修正する関数の動作を変更します。" + +msgid "Changes in the documentation." +msgstr "ドキュメントの変更" + +msgid "Modifying the internal HTTP handling." +msgstr "内部 HTTP 処理を変更します。" + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "依存関係を新しいバージョン、メジャーまたはそうでないにアップグレードします。" + diff --git a/docs/locales/ko/LC_MESSAGES/api/abcs.po b/docs/locales/ko/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..0657b37252 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/ko/LC_MESSAGES/api/application_commands.po b/docs/locales/ko/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..0b410708bc --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/ko/LC_MESSAGES/api/application_info.po b/docs/locales/ko/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..86c5570471 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/ko/LC_MESSAGES/api/async_iter.po b/docs/locales/ko/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..c7934bda21 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/ko/LC_MESSAGES/api/audit_logs.po b/docs/locales/ko/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..0f409b5f5a --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/ko/LC_MESSAGES/api/clients.po b/docs/locales/ko/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..8b2880e93b --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/ko/LC_MESSAGES/api/cogs.po b/docs/locales/ko/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..921f33a172 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/ko/LC_MESSAGES/api/data_classes.po b/docs/locales/ko/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..fcb1ec47b6 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/ko/LC_MESSAGES/api/enums.po b/docs/locales/ko/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..8ec182d4bf --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifies the input type of an option." + +msgid "A slash subcommand." +msgstr "A slash subcommand." + +msgid "A slash command group." +msgstr "A slash command group." + +msgid "A string." +msgstr "A string." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "An integer between -2⁵³ and 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, such as 881224361015672863, are often too big for this input type." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "A channel from the current guild." + +msgid "A role from the current guild." +msgstr "A role from the current guild." + +msgid "A mentionable (user or role)." +msgstr "A mentionable (user or role)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "A floating-point number between -2⁵³ and 2⁵³." + +msgid "An attachment." +msgstr "An attachment." + +msgid "Specifies the type of channel." +msgstr "Specifies the type of channel." + +msgid "A text channel." +msgstr "A text channel." + +msgid "A voice channel." +msgstr "A voice channel." + +msgid "A private text channel. Also called a direct message." +msgstr "A private text channel. Also called a direct message." + +msgid "A private group text channel." +msgstr "A private group text channel." + +msgid "A category channel." +msgstr "A category channel." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/ko/LC_MESSAGES/api/events.po b/docs/locales/ko/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..cc86ab0031 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/ko/LC_MESSAGES/api/exceptions.po b/docs/locales/ko/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..e4cd130b21 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/ko/LC_MESSAGES/api/index.po b/docs/locales/ko/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..70d92c282d --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/ko/LC_MESSAGES/api/models.po b/docs/locales/ko/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..abcf0bdca8 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/ko/LC_MESSAGES/api/sinks.po b/docs/locales/ko/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..82436a6b02 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/ko/LC_MESSAGES/api/ui_kit.po b/docs/locales/ko/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..bcbfa362d8 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/ko/LC_MESSAGES/api/utils.po b/docs/locales/ko/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..11cc3bc28c --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/ko/LC_MESSAGES/api/version_info.po b/docs/locales/ko/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..3e7ff6039a --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/ko/LC_MESSAGES/api/voice.po b/docs/locales/ko/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..6458abab9e --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/ko/LC_MESSAGES/api/webhooks.po b/docs/locales/ko/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..37d7e63745 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/ko/LC_MESSAGES/changelog.po b/docs/locales/ko/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..d18690d984 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/ko/LC_MESSAGES/cogs.po b/docs/locales/ko/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..713392b91f --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/ko/LC_MESSAGES/discord.po b/docs/locales/ko/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..242f4b20a4 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po b/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..2e66ef4160 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po b/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..5d04d47e3a --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/api.po b/docs/locales/ko/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..a2b86203a5 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..324861b347 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po b/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..85b41501d1 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..4f3fd6efcd --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/index.po b/docs/locales/ko/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..d05921587d --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/ko/LC_MESSAGES/ext/pages/index.po b/docs/locales/ko/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..19c1622bfa --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po b/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..6236de13f1 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/ko/LC_MESSAGES/faq.po b/docs/locales/ko/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..91d04f72fb --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/ko/LC_MESSAGES/index.po b/docs/locales/ko/LC_MESSAGES/index.po new file mode 100644 index 0000000000..f6843e1e93 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/ko/LC_MESSAGES/installing.po b/docs/locales/ko/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..f2d0f0d14d --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/ko/LC_MESSAGES/intents.po b/docs/locales/ko/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..7201bbd103 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/ko/LC_MESSAGES/logging.po b/docs/locales/ko/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..8130d84e9f --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po b/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ea81171aff --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po b/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..4220fe4212 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migrating to v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 introduced new Discord features and deprecated some old ones." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Below are major changes that have happened in v2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Dropped User Accounts Support" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` argument of :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` and ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Events: ``on_relationship_add`` and ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Timezone-aware Time" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Asset Changes" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128))``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``await user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``await user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\"))``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Webhook Changes" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "Intents Changes" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." + +msgid "Threads Introduced" +msgstr "Threads Introduced" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "The following methods and attributes can return :class:`Thread` objects:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Permission Changes" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Edit Method Behavior Change" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." + +msgid "Positional-Keyword Argument Split" +msgstr "Positional-Keyword Argument Split" + +msgid "The following are now positional only:" +msgstr "The following are now positional only:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "The following are now keyword only:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "Message.type For Replies" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Sticker Changes" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` was removed as Discord no longer provides the data." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Type Changes" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Many method arguments now reject ``None`` or return ``None``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` can now return ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` can now be ``None``." + +msgid "Miscellaneous Changes" +msgstr "Miscellaneous Changes" + +msgid "The following were removed:" +msgstr "The following were removed:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` argument of :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argument of :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "The following were renamed:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/ko/LC_MESSAGES/old_changelog.po b/docs/locales/ko/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..a1f5831ab1 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/ko/LC_MESSAGES/quickstart.po b/docs/locales/ko/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..018b5372f2 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/ko/LC_MESSAGES/version_guarantees.po b/docs/locales/ko/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..fc3d82a0ee --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Version Guarantees" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." + +msgid "The examples below are non-exhaustive." +msgstr "The examples below are non-exhaustive." + +msgid "Examples of Breaking Changes" +msgstr "Examples of Breaking Changes" + +msgid "Changing the default parameter value to something else." +msgstr "Changing the default parameter value to something else." + +msgid "Renaming a function without an alias to an old function." +msgstr "Renaming a function without an alias to an old function." + +msgid "Adding or removing parameters to an event." +msgstr "Adding or removing parameters to an event." + +msgid "Examples of Non-Breaking Changes" +msgstr "Examples of Non-Breaking Changes" + +msgid "Adding or removing private underscored attributes." +msgstr "Adding or removing private underscored attributes." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Adding an element into the ``__slots__`` of a data class." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Changing the behaviour of a function to fix a bug." + +msgid "Changes in the documentation." +msgstr "Changes in the documentation." + +msgid "Modifying the internal HTTP handling." +msgstr "Modifying the internal HTTP handling." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Upgrading the dependencies to a new version, major or otherwise." + diff --git a/docs/locales/pt/LC_MESSAGES/api/abcs.po b/docs/locales/pt/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..dd0448a634 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/pt/LC_MESSAGES/api/application_commands.po b/docs/locales/pt/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..04127bd885 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/pt/LC_MESSAGES/api/application_info.po b/docs/locales/pt/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..31922fca86 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/pt/LC_MESSAGES/api/async_iter.po b/docs/locales/pt/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..b322381f39 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/pt/LC_MESSAGES/api/audit_logs.po b/docs/locales/pt/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..05c56e27c2 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/pt/LC_MESSAGES/api/clients.po b/docs/locales/pt/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..60e40ace2a --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/pt/LC_MESSAGES/api/cogs.po b/docs/locales/pt/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..84328f678d --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/pt/LC_MESSAGES/api/data_classes.po b/docs/locales/pt/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..bc1c9d6327 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/pt/LC_MESSAGES/api/enums.po b/docs/locales/pt/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..2c4b44a5ea --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifies the input type of an option." + +msgid "A slash subcommand." +msgstr "A slash subcommand." + +msgid "A slash command group." +msgstr "A slash command group." + +msgid "A string." +msgstr "A string." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "An integer between -2⁵³ and 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, such as 881224361015672863, are often too big for this input type." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "A channel from the current guild." + +msgid "A role from the current guild." +msgstr "A role from the current guild." + +msgid "A mentionable (user or role)." +msgstr "A mentionable (user or role)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "A floating-point number between -2⁵³ and 2⁵³." + +msgid "An attachment." +msgstr "An attachment." + +msgid "Specifies the type of channel." +msgstr "Specifies the type of channel." + +msgid "A text channel." +msgstr "A text channel." + +msgid "A voice channel." +msgstr "A voice channel." + +msgid "A private text channel. Also called a direct message." +msgstr "A private text channel. Also called a direct message." + +msgid "A private group text channel." +msgstr "A private group text channel." + +msgid "A category channel." +msgstr "A category channel." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/pt/LC_MESSAGES/api/events.po b/docs/locales/pt/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..3de9f161c1 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/pt/LC_MESSAGES/api/exceptions.po b/docs/locales/pt/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..1840bc94e8 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/pt/LC_MESSAGES/api/index.po b/docs/locales/pt/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..80efb62166 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/pt/LC_MESSAGES/api/models.po b/docs/locales/pt/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..98fa624eee --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/pt/LC_MESSAGES/api/sinks.po b/docs/locales/pt/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..c041d54623 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/pt/LC_MESSAGES/api/ui_kit.po b/docs/locales/pt/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..0e374cd9d7 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/pt/LC_MESSAGES/api/utils.po b/docs/locales/pt/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..c59ea4f08e --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/pt/LC_MESSAGES/api/version_info.po b/docs/locales/pt/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..a57036beac --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/pt/LC_MESSAGES/api/voice.po b/docs/locales/pt/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..ce04e5fda5 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/pt/LC_MESSAGES/api/webhooks.po b/docs/locales/pt/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c6f477ed90 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/pt/LC_MESSAGES/changelog.po b/docs/locales/pt/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..b51e2dd62b --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/pt/LC_MESSAGES/cogs.po b/docs/locales/pt/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..d3b99d560a --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/pt/LC_MESSAGES/discord.po b/docs/locales/pt/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..1d84eae006 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/pt/LC_MESSAGES/ext/bridge/api.po b/docs/locales/pt/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..c8f2bfa309 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/pt/LC_MESSAGES/ext/bridge/index.po b/docs/locales/pt/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..d829d3af31 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/pt/LC_MESSAGES/ext/commands/api.po b/docs/locales/pt/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..e7f531d004 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/pt/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/pt/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b6bdcd19af --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/pt/LC_MESSAGES/ext/commands/commands.po b/docs/locales/pt/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..1a44455c05 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/pt/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/pt/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..aefcfd5e04 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/pt/LC_MESSAGES/ext/commands/index.po b/docs/locales/pt/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..201036b377 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/pt/LC_MESSAGES/ext/pages/index.po b/docs/locales/pt/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..30b0c29ee7 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/pt/LC_MESSAGES/ext/tasks/index.po b/docs/locales/pt/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..beb1ad9f67 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/pt/LC_MESSAGES/faq.po b/docs/locales/pt/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..5326557f7a --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/pt/LC_MESSAGES/index.po b/docs/locales/pt/LC_MESSAGES/index.po new file mode 100644 index 0000000000..e04d506e0c --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/pt/LC_MESSAGES/installing.po b/docs/locales/pt/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..89b42dbb7a --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/pt/LC_MESSAGES/intents.po b/docs/locales/pt/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..036ca6dbac --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/pt/LC_MESSAGES/logging.po b/docs/locales/pt/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..9b9b2f2707 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/pt/LC_MESSAGES/migrating_to_v1.po b/docs/locales/pt/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ba2c21442b --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/pt/LC_MESSAGES/migrating_to_v2.po b/docs/locales/pt/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..5fb05ad061 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "Migrando para v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "a v2.0 introduziu novos recursos do Discord e descontinuou alguns antigos." + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Parte do redesign envolve a criação de comandos e componentes para o aplicativo. Estas alterações incluem uma nova classe :class:`Bot`, :class:`ui. iew`, e uma nova classe :class:`ApplicationContext`. Se você está interessado em criá-las, por favor, confira nosso `guide :resource: `." + +msgid "Python Version Change" +msgstr "Alteração de versão Python" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "Para facilitar o desenvolvimento, e também permitir que as nossas dependências atualizem para permitir o uso de 3. ou superior, a biblioteca teve que remover o suporte para versões Python menores que 3. , o que significa, essencialmente, que o **suporte para Python 3.7 e abaixo foi descartado**." + +msgid "Major Model Changes" +msgstr "Alterações maiores no modelo" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Abaixo estão as grandes mudanças que ocorreram na versão 2.0:" + +msgid "Dropped User Accounts Support" +msgstr "Suporte a Contas de Usuário Dropados" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "Antes da v2.0, as contas de usuários eram suportadas. Isso foi contra o espírito da biblioteca e do Discord de TSS e foi removido. Assim, estes recursos que eram aplicáveis apenas a eles são removidos:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argumento de :meth:`Client.start` e :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` argumento de :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "Classes ``Perfil``, ``Relationship``, ``Call Message``, ``Group Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` ainda resta)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Cliente.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Cliente.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` e ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "Argumentos de ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship``, ``mutual_friends``, ``is_amigo``, ``is_bloqueado``, ``block``, ``unblock``, ``remove_amigo``, ``send_friend_request``, ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "Eventos: ``on_relationship_add`` e ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "Hora do fuso horário" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` se torna ``now(datetime.timezone.utc)``. Se você estiver construindo :class:`datetime.datetime``, passe ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Note que adicionado :meth:`utils.utcnow()` pode ser usado como um alias de ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "Mudanças de conteúdo" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` e ``Class.x_url_as`` são removidos. :meth:`Asset.replace` ou :meth:métodos `Asset.with_x` podem ser usados para obter tamanhos ou tipos específicos de ativos." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` e :attr:`ParalEmoji.url` estão agora :class:`str`. :meth:`Emoji.save` e :meth:`Emoji.read` são adicionados para salvar ou ler emojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` e ``ParalEmoji.url_as`` são removidos." + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Alguns atributos :class:`AuditLogDiff` agora retornam :class:`Asset` ao invés de :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` retorna ``None`` se o avatar não estiver definido e for o avatar padrão; use :attr:`User.display_avatar` para comportamento pré-2.0." + +msgid "Before" +msgstr "Antes" + +msgid "After" +msgstr "Depois" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128)``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_format=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``await user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``await user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32))``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_format=\"png\"))``" + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_format=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Alterações de webhook" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` e :class:`WebhookMessage` agora estão sempre assíncronos. Para uso síncrono (``requests``), use :class:`SyncWebhook` e :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, e ``RequestsWebhookAdapter`` são removidos, uma vez que são desnecessárias." + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` argumentos de :meth:`Webhook.partial` e :meth:`Webhook.from_url` são removidos. As sessões agora são passadas diretamente para ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "Alterações de intensidade" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` agora é uma intenção privilegiada. Desabilitando isso causa :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, e :attr:`Message. ttachments` para estar vazio (uma string vazia ou um array vazio), causando diretamente :class:`ext. ommands.Command` s para não executar. Veja `aqui `_ para mais informações." + +msgid "Threads Introduced" +msgstr "Tópicos introduzidos" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "Os seguintes métodos e atributos podem retornar Objetos :class:`Thread`:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Cliente.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel``" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Cliente.get_channel`" + +msgid "Permission Changes" +msgstr "Alterações de permissão" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` foi removido a favor de verificar as permissões do canal para esse usuário." + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "Editar Método de Comportamento Alterar" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "Os métodos de ``edit`` da maioria das classes não atualizam mais o cache no local e, em vez disso, retornam o objeto modificado." + +msgid "Positional-Keyword Argument Split" +msgstr "Divisão de Argumento Palavra-Chave Posicional" + +msgid "The following are now positional only:" +msgstr "Seguintes agora são apenas posicionais:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`ParalMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "Agora são apenas a palavra-chave:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reacção.usuários`" + +msgid "Event Changes" +msgstr "Mudanças de Evento" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` substitui `on_member_update` por atualizações para :attr:`Member.status` e :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` não será mais despachado devido a mudanças no Discord." + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` não é mais enviado para dados incompletos, e o valor passado é sempre descompactado e decodificado para :class:`str`. Anteriormente, quando recebeu uma mensagem binária composta por várias partes de zlib, :func:`on_socket_raw_receive` foi enviada em todas as mensagens com o compresso e codificado :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "Message.type para respostas" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` agora retorna :attr:`MessageType.reply` para respostas, em vez de :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Alterações de Adesivo" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` foi removido pois o Discord não fornece mais os dados." + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, um enum dos formatos de stickers, é renomeado para :class:`StickerFormatType`. Nome antigo é usado para um enum novo com propósito diferente (verificar se o adesivo é de guilda ou adesivo de Nitro)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` agora é List[:class:`StickerItem`] em vez de List[:class:`Sticker`]. Enquanto :class:`StickerItem` suporta algumas operações de atributos anteriores ``Sticker``, ``description`` e ``pack_id`` não existem. :class:`Sticker` pode ser buscado através do método :meth:`StickerItem.fetch`." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Devido à introdução de :class:`GuildSticker`, ``Sticker.tags`` é removido da classe pai :class:`Sticker` e movido para :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "Mudanças de tipo" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "Muitos argumentos de método agora rejeitam ``None`` ou retornam ``None``." + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` agora é opcional, e irá retornar ``None`` em muitos casos." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` retorna ``None`` se o avatar não estiver definido e em vez disso é o avatar padrão." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`'s ``topic`` não aceita mais o argumento ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` agora pode retornar ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr "O argumento ``name`` de :attr:`Template.edit` não aceita mais o argumento ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr "O argumento ``roles`` de :attr:`Member.edit` não aceita mais o argumento ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` e :attr:`Bot.remove_listener`'s ``name`` não aceitam mais os argumentos ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "Os atributos :class:`.ext.commands.Context` podem agora ser ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` agora pode ser ``None``." + +msgid "Miscellaneous Changes" +msgstr "Mudanças diversas" + +msgid "The following were removed:" +msgstr "Os seguintes foram removidos:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "Argumento ``guild_subscriptions`` do :class:`Cliente`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argumento de :class:`Cliente`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` foi movido para :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias de ``high``) foi removido. ``extreme``, ``very_high`` e os atributos ``double_table_flip`` foram removidos e substituídos por :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "Os seguintes foram renomeados:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` foi renomeado para :attr:`Colour.og_blurple`, e :attr:`Colour.blurple` agora retorna a cor mais nova." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` argumentos e atributos de :class:`ext.commands.MissingPermissions` e :class:`ext.commands.BotMissingPermissions` são renomeados para ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/pt/LC_MESSAGES/old_changelog.po b/docs/locales/pt/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..21e169d5d4 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/pt/LC_MESSAGES/quickstart.po b/docs/locales/pt/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..21a2adf607 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/pt/LC_MESSAGES/version_guarantees.po b/docs/locales/pt/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..ba921f0202 --- /dev/null +++ b/docs/locales/pt/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "Garantia de versão" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "A biblioteca segue o 'princípio de versionamento semântico `_ o que significa que a versão principal é atualizada toda vez que há uma mudança incompatível na API. No entanto, devido à falta de garantias do lado do Discord, quando se trata de quebrar mudanças juntamente com a natureza bastante dinâmica do Python, pode ser difícil discernir o que pode ser considerado uma mudança e o que não é." + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "A primeira coisa a ter em mente é que a quebra de alterações só se aplica a **funções e classes publicamente documentadas**. Se ele não está listado na documentação aqui, então ele não faz parte da API pública e portanto está vinculado a mudar. Isto inclui atributos que começam com um sublinhado ou funções sem um sublinhado que não estão documentados." + +msgid "The examples below are non-exhaustive." +msgstr "Os exemplos abaixo não são exaustivos." + +msgid "Examples of Breaking Changes" +msgstr "Exemplos de mudanças de ruptura" + +msgid "Changing the default parameter value to something else." +msgstr "Alterando o valor do parâmetro padrão para outra coisa." + +msgid "Renaming a function without an alias to an old function." +msgstr "Renomeando uma função sem um alias para uma função antiga." + +msgid "Adding or removing parameters to an event." +msgstr "Adicionar ou remover parâmetros para um evento." + +msgid "Examples of Non-Breaking Changes" +msgstr "Exemplos de alterações não quebradas" + +msgid "Adding or removing private underscored attributes." +msgstr "Adicionar ou remover atributos sublinhados privados." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Adicionando um elemento ao ``__slots__`` de uma classe de dados." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Alterando o comportamento de uma função para corrigir um erro." + +msgid "Changes in the documentation." +msgstr "Alterações na documentação." + +msgid "Modifying the internal HTTP handling." +msgstr "Modificando a manipulação interna de HTTP." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Atualizando as dependências para uma nova versão, principal ou diferente." + diff --git a/docs/locales/zh/LC_MESSAGES/api/abcs.po b/docs/locales/zh/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..0657b37252 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Abstract Base Classes" + +msgid "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." +msgstr "An :term:`abstract base class` (also known as an ``abc``) is a class that models can inherit to get their behaviour. **Abstract base classes should not be instantiated**. They are mainly there for usage with :func:`isinstance` and :func:`issubclass`\\." + +msgid "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." +msgstr "This library has a module related to abstract base classes, in which all the ABCs are subclasses of :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "An ABC that details the common operations on a Discord model." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Almost all :ref:`Discord models ` meet this abstract base class." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "If you want to create a snowflake on your own, consider using :class:`.Object`." + +msgid "The model's unique ID." +msgstr "The model's unique ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "An ABC that details the common operations on a Discord user." + +msgid "The following implement this ABC:" +msgstr "The following implement this ABC:" + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid ":class:`~discord.ClientUser`" +msgstr ":class:`~discord.ClientUser`" + +msgid ":class:`~discord.Member`" +msgstr ":class:`~discord.Member`" + +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "This ABC must also implement :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "The user's discriminator." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "The avatar asset the user has." +msgstr "The avatar asset the user has." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "If the user is a bot account." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Returns the user's display name." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "An ABC that details the common operations on a private Discord channel." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "An ABC that details the common operations on a Discord guild channel." + +msgid ":class:`~discord.TextChannel`" +msgstr ":class:`~discord.TextChannel`" + +msgid ":class:`~discord.VoiceChannel`" +msgstr ":class:`~discord.VoiceChannel`" + +msgid ":class:`~discord.CategoryChannel`" +msgstr ":class:`~discord.CategoryChannel`" + +msgid ":class:`~discord.StageChannel`" +msgstr ":class:`~discord.StageChannel`" + +msgid ":class:`~discord.ForumChannel`" +msgstr ":class:`~discord.ForumChannel`" + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid ":class:`~discord.Guild`" +msgstr ":class:`~discord.Guild`" + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "Returns" +msgstr "Returns" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Examples" +msgstr "Examples" + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "An ABC that details the common operations on a model that can send messages." + +msgid ":class:`~discord.ext.commands.Context`" +msgstr ":class:`~discord.ext.commands.Context`" + +msgid ":class:`~discord.Thread`" +msgstr ":class:`~discord.Thread`" + +msgid ":class:`~discord.ApplicationContext`" +msgstr ":class:`~discord.ApplicationContext`" + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "An ABC that details the common operations on a channel that can connect to a voice server." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." + diff --git a/docs/locales/zh/LC_MESSAGES/api/application_commands.po b/docs/locales/zh/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..0b410708bc --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,880 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Command Permission Decorators" +msgstr "Command Permission Decorators" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "A decorator that limits the usage of an application command to members with certain permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." +msgstr "These permissions can be updated by server administrators per-guild. As such, these are only \"defaults\", as the name suggests. If you want to make sure that a user **always** has the specified permissions regardless, you should use an internal check such as :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Example" + +msgid "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." +msgstr "A decorator that limits the usage of an application command to guild contexts. The command won't be able to be used in private message channels." + +msgid "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." +msgstr "A decorator that limits the usage of an application command to 18+ channels and users. In guilds, the command will only be able to be used in channels marked as NSFW. In DMs, users must have opted into age-restricted commands via privacy settings." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Note that apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "Commands" +msgstr "Commands" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." +msgstr "A decorator that transforms a function into an :class:`.ApplicationCommand`. More specifically, usually one of :class:`.SlashCommand`, :class:`.UserCommand`, or :class:`.MessageCommand`. The exact class depends on the ``cls`` parameter. By default, the ``description`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding. The ``name`` attribute also defaults to the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Raises" + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "This decorator is overridden by :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator for slash commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator for user commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorator for message commands that invokes :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objects" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "This uses the current time instead of the interaction time." +msgstr "This uses the current time instead of the interaction time." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Checks whether the command has an error handler registered." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``/one two three`` the qualified name would be ``one two three``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Retrieves the fully qualified command ID." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "A class that implements the protocol for a slash command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The description for the command." +msgstr "The description for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "The ids of the guilds where this command will be registered." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "The parameters for this command." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Returns a string that allows you to mention the slash command." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Whether the command should only be usable inside a guild." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Use the :attr:`contexts` parameter instead." + +msgid "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Whether the command should be restricted to 18+ channels and users. Apps intending to be listed in the App Directory cannot have NSFW commands." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "The default permissions a member needs to be able to run the command." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.ApplicationContext` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.ApplicationCommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_application_command_error` event." + +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "Optional[:class:`~discord.ext.commands.Cooldown`]" + +msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Dict[:class:`str`, :class:`str`]" +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 "Set[:class:`IntegrationType`]" +msgstr "Set[:class:`IntegrationType`]" + +msgid "The location where this command can be used. Cannot be set if this is a guild command." +msgstr "The location where this command can be used. Cannot be set if this is a guild command." + +msgid "Set[:class:`InteractionContextType`]" +msgstr "Set[:class:`InteractionContextType`]" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +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 "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +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 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`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid "Represents context for a slash command's option autocomplete." +msgstr "Represents context for a slash command's option autocomplete." + +msgid "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." +msgstr "This class is not created manually and is instead passed to an :class:`.Option`'s autocomplete callback." + +msgid "The interaction object that invoked the autocomplete." +msgstr "The interaction object that invoked the autocomplete." + +msgid "The option the user is currently typing." +msgstr "The option the user is currently typing." + +msgid ":class:`.Option`" +msgstr ":class:`.Option`" + +msgid "The content of the focused option." +msgstr "The content of the focused option." + +msgid ":class:`.str`" +msgstr ":class:`.str`" + +msgid "A name to value mapping of the options that the user has selected before this option." +msgstr "A name to value mapping of the options that the user has selected before this option." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + diff --git a/docs/locales/zh/LC_MESSAGES/api/application_info.po b/docs/locales/zh/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..86c5570471 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/application_info.po @@ -0,0 +1,181 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Application Info" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Represents the application info for the bot provided by Discord." + +msgid "The application ID." +msgstr "The application ID." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "The application name." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "The application owner." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "The application's team." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "The application description." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Whether the bot can be invited by anyone or if it is locked to the application owner." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Whether the bot requires the completion of the full OAuth2 code grant flow to join." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "A list of RPC origin URLs, if RPC is enabled." + +msgid "Optional[List[:class:`str`]]" +msgstr "Optional[List[:class:`str`]]" + +msgid "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." +msgstr "If this application is a game sold on Discord, this field will be the summary field for the store page of its primary SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked to." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." +msgstr "If this application is a game sold on Discord, this field will be the id of the \"Game SKU\" that is created, if it exists." + +msgid "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." +msgstr "If this application is a game sold on Discord, this field will be the URL slug that links to the store page." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "The application's terms of service URL, if set." + +msgid "The application's privacy policy URL, if set." +msgstr "The application's privacy policy URL, if set." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Retrieves the application's icon asset, if any." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Retrieves the cover image on a store embed, if any." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "This is only available if the application is a game sold on Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "If this application is a game sold on Discord, this field will be the guild to which it has been linked." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Represents an application team for a bot provided by Discord." + +msgid "The team ID." +msgstr "The team ID." + +msgid "The team name." +msgstr "The team name." + +msgid "The team's owner ID." +msgstr "The team's owner ID." + +msgid "A list of the members in the team." +msgstr "A list of the members in the team." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Retrieves the team's icon asset, if any." + +msgid "The team's owner." +msgstr "The team's owner." + +msgid "Represents a team member in a team." +msgstr "Represents a team member in a team." + +msgid "Checks if two team members are equal." +msgstr "Checks if two team members are equal." + +msgid "Checks if two team members are not equal." +msgstr "Checks if two team members are not equal." + +msgid "Return the team member's hash." +msgstr "Return the team member's hash." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Returns the team member's name with discriminator or global_name." + +msgid "The team member's username." +msgstr "The team member's username." + +msgid "The team member's unique ID." +msgstr "The team member's unique ID." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "The team member's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "The team member's global name." +msgstr "The team member's global name." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "The avatar hash the team member has. Could be ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "The team that the member is from." +msgstr "The team that the member is from." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "The membership state of the member (e.g. invited or accepted)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/zh/LC_MESSAGES/api/async_iter.po b/docs/locales/zh/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..c7934bda21 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Async Iterator" + +msgid "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." +msgstr "Some API functions return an \"async iterator\". An async iterator is something that is capable of being used in an :ref:`async for statement `." + +msgid "These async iterators can be used as follows: ::" +msgstr "These async iterators can be used as follows: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Certain utilities make working with async iterators easier, detailed below." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." + +msgid "Iterates over the contents of the async iterator." +msgstr "Iterates over the contents of the async iterator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Similar to :func:`utils.get` except run over the async iterator." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Getting the last message by a user named 'Dave' or ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Similar to :func:`utils.find` except run over the async iterator." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Getting the last audit log with a reason or ``None``: ::" + +msgid "Parameters" +msgstr "Parameters" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "The predicate to use. Could be a |coroutine_link|_." + +msgid "Returns" +msgstr "Returns" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "The first element that returns ``True`` for the predicate or ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Flattens the async iterator into a :class:`list` with all the elements." + +msgid "A list of every element in the async iterator." +msgstr "A list of every element in the async iterator." + +msgid "Return type" +msgstr "Return type" + +msgid "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." +msgstr "Collects items into chunks of up to a given maximum size. Another :class:`AsyncIterator` is returned which collects items into :class:`list`\\s of a given size. The maximum chunk size must be a positive integer." + +msgid "Collecting groups of users: ::" +msgstr "Collecting groups of users: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The size of individual chunks." +msgstr "The size of individual chunks." + +msgid ":class:`AsyncIterator`" +msgstr ":class:`AsyncIterator`" + +msgid "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`map ` function. Another :class:`AsyncIterator` is returned that executes the function on every element it is iterating over. This function can either be a regular function or a |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Creating a content iterator: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "The function to call on every element. Could be a |coroutine_link|_." + +msgid "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." +msgstr "This is similar to the built-in :func:`filter ` function. Another :class:`AsyncIterator` is returned that filters over the original async iterator. This predicate can be a regular function or a |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Getting messages by non-bot accounts: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "The predicate to call on every element. Could be a |coroutine_link|_." + diff --git a/docs/locales/zh/LC_MESSAGES/api/audit_logs.po b/docs/locales/zh/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..0f409b5f5a --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Audit Log Data" + +msgid "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." +msgstr "Working with :meth:`Guild.audit_logs` is a complicated process with a lot of machinery involved. The library attempts to make it easy to use and friendly. In order to accomplish this goal, it must make use of a couple of data classes that aid in this goal." + +msgid "Represents an Audit Log entry." +msgstr "Represents an Audit Log entry." + +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "You retrieve these via :meth:`Guild.audit_logs`." + +msgid "Checks if two entries are equal." +msgstr "Checks if two entries are equal." + +msgid "Checks if two entries are not equal." +msgstr "Checks if two entries are not equal." + +msgid "Returns the entry's hash." +msgstr "Returns the entry's hash." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Audit log entries are now comparable and hashable." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid "type" +msgstr "type" + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." +msgstr "The user who initiated this action. Usually a :class:`Member`\\, unless gone then it's a :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The target that got changed. The exact type of this depends on the action being done." +msgstr "The target that got changed. The exact type of this depends on the action being done." + +msgid "Any" +msgstr "Any" + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the entry's creation time in UTC." +msgstr "Returns the entry's creation time in UTC." + +msgid "The category of the action, if applicable." +msgstr "The category of the action, if applicable." + +msgid "The list of changes this entry has." +msgstr "The list of changes this entry has." + +msgid "The target's prior state." +msgstr "The target's prior state." + +msgid "The target's subsequent state." +msgstr "The target's subsequent state." + +msgid "An audit log change set." +msgstr "An audit log change set." + +msgid "The old value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The old value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" +msgstr "Depending on the :class:`AuditLogActionCategory` retrieved by :attr:`~AuditLogEntry.category`\\, the data retrieved by this attribute differs:" + +msgid "Category" +msgstr "Category" + +msgid "Description" +msgstr "Description" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "All attributes are set to ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "All attributes are set the value before deletion." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "All attributes are set the value before updating." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "No attributes are set." + +msgid "The new value. The attribute has the type of :class:`AuditLogDiff`." +msgstr "The new value. The attribute has the type of :class:`AuditLogDiff`." + +msgid "All attributes are set to the created value" +msgstr "All attributes are set to the created value" + +msgid "All attributes are set to ``None``" +msgstr "All attributes are set to ``None``" + +msgid "All attributes are set the value after updating." +msgstr "All attributes are set the value after updating." + +msgid "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." +msgstr "Represents an audit log \"change\" object. A change object has dynamic attributes that depend on the type of action being done. Certain actions map to certain attributes being set." + +msgid "Note that accessing an attribute that does not match the specified action will lead to an attribute error." +msgstr "Note that accessing an attribute that does not match the specified action will lead to an attribute error." + +msgid "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." +msgstr "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 on the action being done, check the documentation for :class:`AuditLogAction`, otherwise check the documentation below for all attributes that are possible." + +msgid "Returns an iterator over (attribute, value) tuple of this diff." +msgstr "Returns an iterator over (attribute, value) tuple of this diff." + +msgid "A name of something." +msgstr "A name of something." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A guild's icon. See also :attr:`Guild.icon`." +msgstr "A guild's icon. See also :attr:`Guild.icon`." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "The guild's invite splash. See also :attr:`Guild.splash`." +msgstr "The guild's invite splash. See also :attr:`Guild.splash`." + +msgid "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." +msgstr "The guild's discovery splash. See also :attr:`Guild.discovery_splash`." + +msgid "The guild's banner. See also :attr:`Guild.banner`." +msgstr "The guild's banner. See also :attr:`Guild.banner`." + +msgid "The guild's owner. See also :attr:`Guild.owner`" +msgstr "The guild's owner. See also :attr:`Guild.owner`" + +msgid "Union[:class:`Member`, :class:`User`]" +msgstr "Union[:class:`Member`, :class:`User`]" + +msgid "The guild's AFK channel." +msgstr "The guild's AFK channel." + +msgid "If this could not be found, then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found, then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.afk_channel`." +msgstr "See :attr:`Guild.afk_channel`." + +msgid "Union[:class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`VoiceChannel`, :class:`Object`]" + +msgid "The guild's system channel." +msgstr "The guild's system channel." + +msgid "See :attr:`Guild.system_channel`." +msgstr "See :attr:`Guild.system_channel`." + +msgid "Union[:class:`TextChannel`, :class:`Object`]" +msgstr "Union[:class:`TextChannel`, :class:`Object`]" + +msgid "The guild's rules channel." +msgstr "The guild's rules channel." + +msgid "If this could not be found then it falls back to a :class:`Object` with the ID being set." +msgstr "If this could not be found then it falls back to a :class:`Object` with the ID being set." + +msgid "See :attr:`Guild.rules_channel`." +msgstr "See :attr:`Guild.rules_channel`." + +msgid "The guild's public updates channel." +msgstr "The guild's public updates channel." + +msgid "See :attr:`Guild.public_updates_channel`." +msgstr "See :attr:`Guild.public_updates_channel`." + +msgid "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." +msgstr "The guild's AFK timeout. See :attr:`Guild.afk_timeout`." + +msgid "The guild's MFA level. See :attr:`Guild.mfa_level`." +msgstr "The guild's MFA level. See :attr:`Guild.mfa_level`." + +msgid "The guild's widget has been enabled or disabled." +msgstr "The guild's widget has been enabled or disabled." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The widget's channel." +msgstr "The widget's channel." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid "See also :attr:`Guild.verification_level`." +msgstr "See also :attr:`Guild.verification_level`." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's default notification level." +msgstr "The guild's default notification level." + +msgid "See also :attr:`Guild.default_notifications`." +msgstr "See also :attr:`Guild.default_notifications`." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "The guild's content filter." +msgstr "The guild's content filter." + +msgid "See also :attr:`Guild.explicit_content_filter`." +msgstr "See also :attr:`Guild.explicit_content_filter`." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's default message notification setting." +msgstr "The guild's default message notification setting." + +msgid "The guild's vanity URL." +msgstr "The guild's vanity URL." + +msgid "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." +msgstr "See also :meth:`Guild.vanity_invite` and :meth:`Guild.edit`." + +msgid "The position of a :class:`Role` or :class:`abc.GuildChannel`." +msgstr "The position of a :class:`Role` or :class:`abc.GuildChannel`." + +msgid "The type of channel or sticker." +msgstr "The type of channel or sticker." + +msgid "Union[:class:`ChannelType`, :class:`StickerType`]" +msgstr "Union[:class:`ChannelType`, :class:`StickerType`]" + +msgid "The topic of a :class:`TextChannel` or :class:`StageChannel`." +msgstr "The topic of a :class:`TextChannel` or :class:`StageChannel`." + +msgid "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." +msgstr "See also :attr:`TextChannel.topic` or :attr:`StageChannel.topic`." + +msgid "The bitrate of a :class:`VoiceChannel`." +msgstr "The bitrate of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.bitrate`." +msgstr "See also :attr:`VoiceChannel.bitrate`." + +msgid "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." +msgstr "A list of permission overwrite tuples that represents a target and a :class:`PermissionOverwrite` for said target." + +msgid "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." +msgstr "The first element is the object being targeted, which can either be a :class:`Member` or :class:`User` or :class:`Role`. If this object is not found then it is a :class:`Object` with an ID being filled and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help decide what type of ID it is." + +msgid "List[Tuple[target, :class:`PermissionOverwrite`]]" +msgstr "List[Tuple[target, :class:`PermissionOverwrite`]]" + +msgid "The privacy level of the stage instance or scheduled event." +msgstr "The privacy level of the stage instance or scheduled event." + +msgid "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" +msgstr "Union[:class:`StagePrivacyLevel`, :class:`ScheduledEventPrivacyLevel`]" + +msgid "A list of roles being added or removed from a member." +msgstr "A list of roles being added or removed from a member." + +msgid "If a role is not found then it is a :class:`Object` with the ID and name being filled in." +msgstr "If a role is not found then it is a :class:`Object` with the ID and name being filled in." + +msgid "List[Union[:class:`Role`, :class:`Object`]]" +msgstr "List[Union[:class:`Role`, :class:`Object`]]" + +msgid "The nickname of a member." +msgstr "The nickname of a member." + +msgid "See also :attr:`Member.nick`" +msgstr "See also :attr:`Member.nick`" + +msgid "Whether the member is being server deafened." +msgstr "Whether the member is being server deafened." + +msgid "See also :attr:`VoiceState.deaf`." +msgstr "See also :attr:`VoiceState.deaf`." + +msgid "Whether the member is being server muted." +msgstr "Whether the member is being server muted." + +msgid "See also :attr:`VoiceState.mute`." +msgstr "See also :attr:`VoiceState.mute`." + +msgid "The permissions of a role." +msgstr "The permissions of a role." + +msgid "See also :attr:`Role.permissions`." +msgstr "See also :attr:`Role.permissions`." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "The colour of a role." +msgstr "The colour of a role." + +msgid "See also :attr:`Role.colour`" +msgstr "See also :attr:`Role.colour`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid "Whether the role is being hoisted or not." +msgstr "Whether the role is being hoisted or not." + +msgid "See also :attr:`Role.hoist`" +msgstr "See also :attr:`Role.hoist`" + +msgid "Whether the role is mentionable or not." +msgstr "Whether the role is mentionable or not." + +msgid "See also :attr:`Role.mentionable`" +msgstr "See also :attr:`Role.mentionable`" + +msgid "The invite's code." +msgstr "The invite's code." + +msgid "See also :attr:`Invite.code`" +msgstr "See also :attr:`Invite.code`" + +msgid "A guild channel." +msgstr "A guild channel." + +msgid "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." +msgstr "If the channel is not found then it is a :class:`Object` with the ID being set. In some cases the channel name is also set." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`]" + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "See also :attr:`Invite.inviter`." +msgstr "See also :attr:`Invite.inviter`." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The invite's max uses." +msgstr "The invite's max uses." + +msgid "See also :attr:`Invite.max_uses`." +msgstr "See also :attr:`Invite.max_uses`." + +msgid "The invite's current uses." +msgstr "The invite's current uses." + +msgid "See also :attr:`Invite.uses`." +msgstr "See also :attr:`Invite.uses`." + +msgid "The invite's max age in seconds." +msgstr "The invite's max age in seconds." + +msgid "See also :attr:`Invite.max_age`." +msgstr "See also :attr:`Invite.max_age`." + +msgid "If the invite is a temporary invite." +msgstr "If the invite is a temporary invite." + +msgid "See also :attr:`Invite.temporary`." +msgstr "See also :attr:`Invite.temporary`." + +msgid "The permissions being allowed or denied." +msgstr "The permissions being allowed or denied." + +msgid "The ID of the object being changed." +msgstr "The ID of the object being changed." + +msgid "The avatar of a member." +msgstr "The avatar of a member." + +msgid "See also :attr:`User.avatar`." +msgstr "See also :attr:`User.avatar`." + +msgid "The number of seconds members have to wait before sending another message in the channel." +msgstr "The number of seconds members have to wait before sending another message in the channel." + +msgid "See also :attr:`TextChannel.slowmode_delay`." +msgstr "See also :attr:`TextChannel.slowmode_delay`." + +msgid "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel’s voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "See also :attr:`VoiceChannel.rtc_region`." +msgstr "See also :attr:`VoiceChannel.rtc_region`." + +msgid ":class:`VoiceRegion`" +msgstr ":class:`VoiceRegion`" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid "See also :attr:`VoiceChannel.video_quality_mode`." +msgstr "See also :attr:`VoiceChannel.video_quality_mode`." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "The format type of a sticker being changed." +msgstr "The format type of a sticker being changed." + +msgid "See also :attr:`GuildSticker.format`" +msgstr "See also :attr:`GuildSticker.format`" + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The name of the emoji that represents a sticker being changed." +msgstr "The name of the emoji that represents a sticker being changed." + +msgid "See also :attr:`GuildSticker.emoji`" +msgstr "See also :attr:`GuildSticker.emoji`" + +msgid "The description of a sticker being changed." +msgstr "The description of a sticker being changed." + +msgid "See also :attr:`GuildSticker.description`" +msgstr "See also :attr:`GuildSticker.description`" + +msgid "The availability of a sticker being changed." +msgstr "The availability of a sticker being changed." + +msgid "See also :attr:`GuildSticker.available`" +msgstr "See also :attr:`GuildSticker.available`" + +msgid "The thread is now archived." +msgstr "The thread is now archived." + +msgid "The thread is being locked or unlocked." +msgstr "The thread is being locked or unlocked." + +msgid "The thread's auto archive duration being changed." +msgstr "The thread's auto archive duration being changed." + +msgid "See also :attr:`Thread.auto_archive_duration`" +msgstr "See also :attr:`Thread.auto_archive_duration`" + +msgid "The default auto archive duration for newly created threads being changed." +msgstr "The default auto archive duration for newly created threads being changed." + +msgid "Non-moderators can now add other non-moderators to this thread." +msgstr "Non-moderators can now add other non-moderators to this thread." + +msgid "This command's permissions were updated." +msgstr "This command's permissions were updated." + +msgid "The voice channel status of a :class:`VoiceChannel`." +msgstr "The voice channel status of a :class:`VoiceChannel`." + +msgid "See also :attr:`VoiceChannel.status`." +msgstr "See also :attr:`VoiceChannel.status`." + +msgid "The cover image of a :class:`ScheduledEvent`." +msgstr "The cover image of a :class:`ScheduledEvent`." + diff --git a/docs/locales/zh/LC_MESSAGES/api/clients.po b/docs/locales/zh/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..8b2880e93b --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/clients.po @@ -0,0 +1,1576 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Client Objects" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Client` and as a result anything that you can do with a :class:`discord.Client` you can do with this bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." + +msgid "The content prefixed into the default help message." +msgstr "The content prefixed into the default help message." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." +msgstr "The user ID that owns the bot. If this is not set and is then queried via :meth:`.is_owner` then it is fetched automatically using :meth:`~.Bot.application_info`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." +msgstr "The user IDs that owns the bot. This is similar to :attr:`owner_id`. If this is not set and the application is team based, then it is fetched automatically using :meth:`~.Bot.application_info`. For performance reasons it is recommended to use a :class:`set` for the collection. You cannot set both ``owner_id`` and ``owner_ids``." + +msgid "Optional[Collection[:class:`int`]]" +msgstr "Optional[Collection[:class:`int`]]" + +msgid "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." +msgstr "Guild IDs of guilds to use for testing commands. The bot will not create any global commands if debug guild IDs are passed." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." +msgstr "Whether to automatically sync slash commands. This will call :meth:`~.Bot.sync_commands` in :func:`discord.on_connect`, and in :attr:`.process_application_commands` if the command is not found. Defaults to ``True``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." +msgstr "The default context types that the bot will use for commands. Defaults to a set containing :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm`, and :attr:`InteractionContextType.private_channel`." + +msgid "Collection[:class:`InteractionContextType`]" +msgstr "Collection[:class:`InteractionContextType`]" + +msgid "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "The default integration types that the bot will use for commands. Defaults to a set containing :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "An alias for :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "This decorator is overridden by :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "Example" +msgstr "Example" + +msgid "Parameters" +msgstr "Parameters" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." +msgstr "The WebSocket gateway the client is currently connected to. Could be ``None``." + +msgid "The event loop that the client uses for asynchronous operations." +msgstr "The event loop that the client uses for asynchronous operations." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." +msgstr "A client similar to :class:`Client` except it handles the complications of sharding for the user into a more manageable and transparent single process bot." + +msgid "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." +msgstr "When using this client, you will be able to use it as-if it was a regular :class:`Client` with a single shard when implementation wise internally it is split up into multiple shards. This allows you to not have to deal with IPC or other complicated infrastructure." + +msgid "It is recommended to use this client only if you have surpassed at least 1000 guilds." +msgstr "It is recommended to use this client only if you have surpassed at least 1000 guilds." + +msgid "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." +msgstr "If no :attr:`.shard_count` is provided, then the library will use the Bot Gateway endpoint call to figure out how many shards to use." + +msgid "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." +msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used to launch the internal shards. Note that :attr:`.shard_count` must be provided if this is used. By default, when omitted, the client will launch shards from 0 to ``shard_count - 1``." + +msgid "An optional list of shard_ids to launch the shards with." +msgstr "An optional list of shard_ids to launch the shards with." + +msgid "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." +msgstr "This operates similarly to :meth:`Client.latency` except it uses the average latency of every shard's latency. To get a list of shard latency, check the :attr:`latencies` property. Returns ``nan`` if there are no shards ready." + +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "This returns a list of tuples with elements ``(shard_id, latency)``." + +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "Gets the shard information at a given shard ID or ``None`` if not found." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "Returns a mapping of shard IDs to their respective info object." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." + +msgid "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." +msgstr "The shard_id to change the presence to. If not specified or ``None``, then it will change the presence of every shard the bot can see." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "If the ``activity`` parameter is not of proper type." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." + +msgid "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This implementation checks if any of the shards are rate limited. For more granular control, consider :meth:`ShardInfo.is_ws_ratelimited`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + diff --git a/docs/locales/zh/LC_MESSAGES/api/cogs.po b/docs/locales/zh/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..921f33a172 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/zh/LC_MESSAGES/api/data_classes.po b/docs/locales/zh/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..fcb1ec47b6 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2896 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Data Classes" +msgstr "Data Classes" + +msgid "Some classes are just there to be data containers, this lists them." +msgstr "Some classes are just there to be data containers, this lists them." + +msgid "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." +msgstr "Unlike :ref:`models ` you are allowed to create most of these yourself, even if they can also be used to hold attributes." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." +msgstr "The only exception to this rule is :class:`Object`, which is made with dynamic attributes in mind." + +msgid "Represents a generic Discord object." +msgstr "Represents a generic Discord object." + +msgid "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." +msgstr "The purpose of this class is to allow you to create 'miniature' versions of data classes if you want to pass in just an ID. Most functions that take in a specific data class with an ID can also take in this class as a substitute instead. Note that even though this is the case, not all objects (if any) actually inherit from this class." + +msgid "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." +msgstr "There are also some cases where some WebSocket events are received in :dpy-issue:`strange order <21>` and when such events happened you would receive this class rather than the actual data class. These cases are extremely rare." + +msgid "Checks if two objects are equal." +msgstr "Checks if two objects are equal." + +msgid "Checks if two objects are not equal." +msgstr "Checks if two objects are not equal." + +msgid "Returns the object's hash." +msgstr "Returns the object's hash." + +msgid "The ID of the object." +msgstr "The ID of the object." + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the snowflake's creation time in UTC." +msgstr "Returns the snowflake's creation time in UTC." + +msgid "Returns the worker id that made the snowflake." +msgstr "Returns the worker id that made the snowflake." + +msgid "Returns the process id that made the snowflake." +msgstr "Returns the process id that made the snowflake." + +msgid "Returns the increment id that made the snowflake." +msgstr "Returns the increment id that made the snowflake." + +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "Represents a :class:`discord.SelectMenu`'s option." + +msgid "These can be created by users." +msgstr "These can be created by users." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not provided when constructed then it defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The emoji of the option, if available." +msgstr "The emoji of the option, if available." + +msgid "Wraps up a Discord gateway intent flag." +msgstr "Wraps up a Discord gateway intent flag." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools." + +msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." +msgstr "To construct an object you can pass keyword arguments denoting the flags to enable or disable." + +msgid "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." +msgstr "This is used to disable certain gateway features that are unnecessary to run your bot. To make use of this, it is passed to the ``intents`` keyword argument of :class:`Client`." + +msgid "Checks if two flags are equal." +msgstr "Checks if two flags are equal." + +msgid "Checks if two flags are not equal." +msgstr "Checks if two flags are not equal." + +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "Adds two flags together. Equivalent to ``x | y``." + +msgid "Subtracts two flags from each other." +msgstr "Subtracts two flags from each other." + +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "Returns the union of two flags. Equivalent to ``x + y``." + +msgid "Returns the intersection of two flags." +msgstr "Returns the intersection of two flags." + +msgid "Returns the inverse of a flag." +msgstr "Returns the inverse of a flag." + +msgid "Return the flag's hash." +msgstr "Return the flag's hash." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs." + +msgid "The raw value. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. You should query flags via the properties rather than using this raw value." + +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "A factory method that creates a :class:`Intents` with everything enabled." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" + +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "A factory method that creates a :class:`Intents` with everything disabled." + +msgid "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "A factory method that creates a :class:`Intents` with everything enabled except :attr:`presences`, :attr:`members`, and :attr:`message_content`." + +msgid "Whether guild related events are enabled." +msgstr "Whether guild related events are enabled." + +msgid "This corresponds to the following events:" +msgstr "This corresponds to the following events:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_pins_update`" +msgstr ":func:`on_guild_channel_pins_update`" + +msgid "This also corresponds to the following attributes and classes in terms of cache:" +msgstr "This also corresponds to the following attributes and classes in terms of cache:" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid ":class:`Guild` and all its attributes." +msgstr ":class:`Guild` and all its attributes." + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_all_channels`" +msgstr ":meth:`Client.get_all_channels`" + +msgid "It is highly advisable to leave this intent enabled for your bot to function." +msgstr "It is highly advisable to leave this intent enabled for your bot to function." + +msgid "Whether guild member related events are enabled." +msgstr "Whether guild member related events are enabled." + +msgid ":func:`on_member_join`" +msgstr ":func:`on_member_join`" + +msgid ":func:`on_member_remove`" +msgstr ":func:`on_member_remove`" + +msgid ":func:`on_raw_member_remove`" +msgstr ":func:`on_raw_member_remove`" + +msgid ":func:`on_member_update`" +msgstr ":func:`on_member_update`" + +msgid ":func:`on_user_update`" +msgstr ":func:`on_user_update`" + +msgid ":meth:`Client.get_all_members`" +msgstr ":meth:`Client.get_all_members`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid ":attr:`Member.roles`" +msgstr ":attr:`Member.roles`" + +msgid ":attr:`Member.nick`" +msgstr ":attr:`Member.nick`" + +msgid ":attr:`Member.premium_since`" +msgstr ":attr:`Member.premium_since`" + +msgid ":attr:`User.name`" +msgstr ":attr:`User.name`" + +msgid ":attr:`User.avatar`" +msgstr ":attr:`User.avatar`" + +msgid ":attr:`User.discriminator`" +msgstr ":attr:`User.discriminator`" + +msgid "For more information go to the :ref:`member intent documentation `." +msgstr "For more information go to the :ref:`member intent documentation `." + +msgid "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." +msgstr "This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal." + +msgid "Alias of :attr:`.moderation`." +msgstr "Alias of :attr:`.moderation`." + +msgid "Changed to an alias." +msgstr "Changed to an alias." + +msgid "Whether guild moderation related events are enabled." +msgstr "Whether guild moderation related events are enabled." + +msgid ":func:`on_audit_log_entry`" +msgstr ":func:`on_audit_log_entry`" + +msgid ":func:`on_member_ban`" +msgstr ":func:`on_member_ban`" + +msgid ":func:`on_member_unban`" +msgstr ":func:`on_member_unban`" + +msgid "This does not correspond to any attributes or classes in the library in terms of cache." +msgstr "This does not correspond to any attributes or classes in the library in terms of cache." + +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "Alias of :attr:`.emojis_and_stickers`." + +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "Whether guild emoji and sticker related events are enabled." + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_stickers_update`" +msgstr ":func:`on_guild_stickers_update`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Client.get_sticker`" +msgstr ":meth:`Client.get_sticker`" + +msgid ":meth:`Client.emojis`" +msgstr ":meth:`Client.emojis`" + +msgid ":meth:`Client.stickers`" +msgstr ":meth:`Client.stickers`" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.stickers`" +msgstr ":attr:`Guild.stickers`" + +msgid "Whether guild integration related events are enabled." +msgstr "Whether guild integration related events are enabled." + +msgid ":func:`on_guild_integrations_update`" +msgstr ":func:`on_guild_integrations_update`" + +msgid ":func:`on_integration_create`" +msgstr ":func:`on_integration_create`" + +msgid ":func:`on_integration_update`" +msgstr ":func:`on_integration_update`" + +msgid ":func:`on_raw_integration_delete`" +msgstr ":func:`on_raw_integration_delete`" + +msgid "Whether guild webhook related events are enabled." +msgstr "Whether guild webhook related events are enabled." + +msgid ":func:`on_webhooks_update`" +msgstr ":func:`on_webhooks_update`" + +msgid "Whether guild invite related events are enabled." +msgstr "Whether guild invite related events are enabled." + +msgid ":func:`on_invite_create`" +msgstr ":func:`on_invite_create`" + +msgid ":func:`on_invite_delete`" +msgstr ":func:`on_invite_delete`" + +msgid "Whether guild voice state related events are enabled." +msgstr "Whether guild voice state related events are enabled." + +msgid ":func:`on_voice_state_update`" +msgstr ":func:`on_voice_state_update`" + +msgid ":attr:`VoiceChannel.members`" +msgstr ":attr:`VoiceChannel.members`" + +msgid ":attr:`VoiceChannel.voice_states`" +msgstr ":attr:`VoiceChannel.voice_states`" + +msgid ":attr:`StageChannel.members`" +msgstr ":attr:`StageChannel.members`" + +msgid ":attr:`StageChannel.speakers`" +msgstr ":attr:`StageChannel.speakers`" + +msgid ":attr:`StageChannel.listeners`" +msgstr ":attr:`StageChannel.listeners`" + +msgid ":attr:`StageChannel.moderators`" +msgstr ":attr:`StageChannel.moderators`" + +msgid ":attr:`StageChannel.voice_states`" +msgstr ":attr:`StageChannel.voice_states`" + +msgid ":attr:`Member.voice`" +msgstr ":attr:`Member.voice`" + +msgid "This intent is required to connect to voice." +msgstr "This intent is required to connect to voice." + +msgid "Whether guild presence related events are enabled." +msgstr "Whether guild presence related events are enabled." + +msgid ":func:`on_presence_update`" +msgstr ":func:`on_presence_update`" + +msgid ":attr:`Member.activities`" +msgstr ":attr:`Member.activities`" + +msgid ":attr:`Member.status`" +msgstr ":attr:`Member.status`" + +msgid ":attr:`Member.raw_status`" +msgstr ":attr:`Member.raw_status`" + +msgid "For more information go to the :ref:`presence intent documentation `." +msgstr "For more information go to the :ref:`presence intent documentation `." + +msgid "Whether guild and direct message related events are enabled." +msgstr "Whether guild and direct message related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." +msgstr "This is a shortcut to set or get both :attr:`guild_messages` and :attr:`dm_messages`." + +msgid ":func:`on_message` (both guilds and DMs)" +msgstr ":func:`on_message` (both guilds and DMs)" + +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr ":func:`on_message_edit` (both guilds and DMs)" + +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr ":func:`on_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr ":func:`on_raw_message_delete` (both guilds and DMs)" + +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr ":func:`on_raw_message_edit` (both guilds and DMs)" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":attr:`Client.cached_messages`" +msgstr ":attr:`Client.cached_messages`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":attr:`Client.polls`" +msgstr ":attr:`Client.polls`" + +msgid ":meth:`Client.get_poll`" +msgstr ":meth:`Client.get_poll`" + +msgid "Note that due to an implicit relationship this also corresponds to the following events:" +msgstr "Note that due to an implicit relationship this also corresponds to the following events:" + +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`message_content` is required to receive the actual content of guild messages." +msgstr ":attr:`message_content` is required to receive the actual content of guild messages." + +msgid "Whether guild message related events are enabled." +msgstr "Whether guild message related events are enabled." + +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." + +msgid ":func:`on_message` (only for guilds)" +msgstr ":func:`on_message` (only for guilds)" + +msgid ":func:`on_message_edit` (only for guilds)" +msgstr ":func:`on_message_edit` (only for guilds)" + +msgid ":func:`on_message_delete` (only for guilds)" +msgstr ":func:`on_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr ":func:`on_raw_message_delete` (only for guilds)" + +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr ":func:`on_raw_message_edit` (only for guilds)" + +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr ":attr:`Client.cached_messages` (only for guilds)" + +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr ":meth:`Client.get_message` (only for guilds)" + +msgid ":attr:`Client.polls` (only for guilds)" +msgstr ":attr:`Client.polls` (only for guilds)" + +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr ":meth:`Client.get_poll` (only for guilds)" + +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr ":func:`on_reaction_add` (only for guilds)" + +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr ":func:`on_reaction_remove` (only for guilds)" + +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr ":func:`on_reaction_clear` (only for guilds)" + +msgid "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" +msgstr "Without the :attr:`message_content` intent enabled, the following fields are either an empty string or empty array:" + +msgid ":attr:`Message.content`" +msgstr ":attr:`Message.content`" + +msgid ":attr:`Message.embeds`" +msgstr ":attr:`Message.embeds`" + +msgid ":attr:`Message.attachments`" +msgstr ":attr:`Message.attachments`" + +msgid ":attr:`Message.components`" +msgstr ":attr:`Message.components`" + +msgid ":attr:`Message.poll`" +msgstr ":attr:`Message.poll`" + +msgid "For more information go to the :ref:`message content intent documentation `." +msgstr "For more information go to the :ref:`message content intent documentation `." + +msgid "Whether direct message related events are enabled." +msgstr "Whether direct message related events are enabled." + +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." + +msgid ":func:`on_message` (only for DMs)" +msgstr ":func:`on_message` (only for DMs)" + +msgid ":func:`on_message_edit` (only for DMs)" +msgstr ":func:`on_message_edit` (only for DMs)" + +msgid ":func:`on_message_delete` (only for DMs)" +msgstr ":func:`on_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr ":func:`on_raw_message_delete` (only for DMs)" + +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr ":func:`on_raw_message_edit` (only for DMs)" + +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr ":attr:`Client.cached_messages` (only for DMs)" + +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr ":meth:`Client.get_message` (only for DMs)" + +msgid ":attr:`Client.polls` (only for DMs)" +msgstr ":attr:`Client.polls` (only for DMs)" + +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr ":meth:`Client.get_poll` (only for DMs)" + +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr ":func:`on_reaction_add` (only for DMs)" + +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr ":func:`on_reaction_remove` (only for DMs)" + +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr ":func:`on_reaction_clear` (only for DMs)" + +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "Whether guild and direct message reaction related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." +msgstr "This is a shortcut to set or get both :attr:`guild_reactions` and :attr:`dm_reactions`." + +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_add` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr ":func:`on_raw_reaction_clear` (both guilds and DMs)" + +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr ":attr:`Message.reactions` (both guild and DM messages)" + +msgid "Whether guild message reaction related events are enabled." +msgstr "Whether guild message reaction related events are enabled." + +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr ":func:`on_raw_reaction_add` (only for guilds)" + +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr ":func:`on_raw_reaction_remove` (only for guilds)" + +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr ":func:`on_raw_reaction_clear` (only for guilds)" + +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr ":attr:`Message.reactions` (only for guild messages)" + +msgid "Whether direct message reaction related events are enabled." +msgstr "Whether direct message reaction related events are enabled." + +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." + +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr ":func:`on_raw_reaction_add` (only for DMs)" + +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr ":func:`on_raw_reaction_remove` (only for DMs)" + +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr ":func:`on_raw_reaction_clear` (only for DMs)" + +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr ":attr:`Message.reactions` (only for DM messages)" + +msgid "Whether guild and direct message typing related events are enabled." +msgstr "Whether guild and direct message typing related events are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." +msgstr "This is a shortcut to set or get both :attr:`guild_typing` and :attr:`dm_typing`." + +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr ":func:`on_typing` (both guilds and DMs)" + +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for guilds)" +msgstr ":func:`on_typing` (only for guilds)" + +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." + +msgid ":func:`on_typing` (only for DMs)" +msgstr ":func:`on_typing` (only for DMs)" + +msgid "Whether the bot will receive message content in guild messages." +msgstr "Whether the bot will receive message content in guild messages." + +msgid "This corresponds to the following attributes:" +msgstr "This corresponds to the following attributes:" + +msgid "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." +msgstr "These attributes will still be available for messages received from interactions, the bot's own messages, messages the bot was mentioned in, and DMs." + +msgid "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." +msgstr "As of September 2022 using this intent requires opting in explicitly via the Developer Portal to receive the actual content of the guild messages. This intent is privileged, meaning that bots in over 100 guilds that require this intent would need to request this intent on the Developer Portal. See https://support-dev.discord.com/hc/en-us/articles/4404772028055 for more information." + +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "Whether \"scheduled event\" related events are enabled." + +msgid ":func:`on_scheduled_event_create`" +msgstr ":func:`on_scheduled_event_create`" + +msgid ":func:`on_scheduled_event_update`" +msgstr ":func:`on_scheduled_event_update`" + +msgid ":func:`on_scheduled_event_delete`" +msgstr ":func:`on_scheduled_event_delete`" + +msgid ":func:`on_scheduled_event_user_add`" +msgstr ":func:`on_scheduled_event_user_add`" + +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr ":func:`on_raw_scheduled_event_user_add`" + +msgid ":func:`on_scheduled_event_user_remove`" +msgstr ":func:`on_scheduled_event_user_remove`" + +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr ":func:`on_raw_scheduled_event_user_remove`" + +msgid ":class:`ScheduledEvent`" +msgstr ":class:`ScheduledEvent`" + +msgid ":meth:`Guild.get_scheduled_event`" +msgstr ":meth:`Guild.get_scheduled_event`" + +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "Whether guild auto moderation configuration events are enabled." + +msgid ":func:`on_auto_moderation_rule_create`" +msgstr ":func:`on_auto_moderation_rule_create`" + +msgid ":func:`on_auto_moderation_rule_update`" +msgstr ":func:`on_auto_moderation_rule_update`" + +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr ":func:`on_auto_moderation_rule_delete`" + +msgid "Whether guild auto moderation execution events are enabled." +msgstr "Whether guild auto moderation execution events are enabled." + +msgid ":func:`on_auto_moderation_action_execution`" +msgstr ":func:`on_auto_moderation_action_execution`" + +msgid "Whether poll-related events in guilds are enabled." +msgstr "Whether poll-related events in guilds are enabled." + +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr ":func:`on_poll_vote_add` (only for guilds)" + +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_poll_vote_remove` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_add` (only for guilds)" + +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr ":func:`on_raw_poll_vote_remove` (only for guilds)" + +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr ":attr:`PollAnswer.count` (only for guild polls)" + +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr ":attr:`PollResults.answer_counts` (only for guild polls)" + +msgid "Whether poll-related events in direct messages are enabled." +msgstr "Whether poll-related events in direct messages are enabled." + +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." + +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr ":func:`on_poll_vote_add` (only for DMs)" + +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_poll_vote_remove` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_add` (only for DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (only for DMs)" + +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr ":attr:`PollAnswer.count` (only for DM polls)" + +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr ":attr:`PollResults.answer_counts` (only for DM polls)" + +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "Whether poll-related events in guilds and direct messages are enabled." + +msgid "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." +msgstr "This is a shortcut to set or get both :attr:`guild_polls` and :attr:`dm_polls`." + +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_poll_vote_remove` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_add` (both guilds and DMs)" + +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" + +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr ":attr:`PollAnswer.count` (both guild and DM polls)" + +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr ":attr:`PollResults.answer_counts` (both guild and DM polls)" + +msgid "A class that gives information and control over a specific shard." +msgstr "A class that gives information and control over a specific shard." + +msgid "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." +msgstr "You can retrieve this object via :meth:`AutoShardedClient.get_shard` or :attr:`AutoShardedClient.shards`." + +msgid "The shard ID for this shard." +msgstr "The shard ID for this shard." + +msgid "The shard count for this cluster. If this is ``None`` then the bot has not started yet." +msgstr "The shard count for this cluster. If this is ``None`` then the bot has not started yet." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Whether the shard connection is currently closed." +msgstr "Whether the shard connection is currently closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects a shard. When this is called, the shard connection will no longer be open." +msgstr "Disconnects a shard. When this is called, the shard connection will no longer be open." + +msgid "If the shard is already disconnected this does nothing." +msgstr "If the shard is already disconnected this does nothing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Disconnects and then connects the shard again." +msgstr "Disconnects and then connects the shard again." + +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "Connects a shard. If the shard is already connected this does nothing." + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard." + +msgid "Whether the websocket is currently rate limited." +msgstr "Whether the websocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Message" +msgstr "Message" + +msgid "A class that represents what mentions are allowed in a message." +msgstr "A class that represents what mentions are allowed in a message." + +msgid "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." +msgstr "This class can be set during :class:`Client` initialisation to apply to every message sent. It can also be applied on a per-message basis via :meth:`abc.Messageable.send` for more fine-grained control." + +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "Whether to allow everyone and here mentions. Defaults to ``True``." + +msgid "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." +msgstr "Controls the users being mentioned. If ``True`` (the default) then users are mentioned based on the message content. If ``False`` then users are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the users provided will be mentioned, provided those users are in the message content." + +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" + +msgid "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." +msgstr "Controls the roles being mentioned. If ``True`` (the default) then roles are mentioned based on the message content. If ``False`` then roles are not mentioned at all. If a list of :class:`abc.Snowflake` is given then only the roles provided will be mentioned, provided those roles are in the message content." + +msgid "Whether to mention the author of the message being replied to. Defaults to ``True``." +msgstr "Whether to mention the author of the message being replied to. Defaults to ``True``." + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields explicitly set to ``True`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" +msgstr "A factory method that returns a :class:`AllowedMentions` with all fields set to ``False`` :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`A\\`\\`\\, bound\\= AllowedMentions\\)`" + +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "Represents a reference to a :class:`~discord.Message`." + +msgid "This class can now be constructed by users." +msgstr "This class can now be constructed by users." + +msgid "The id of the message referenced." +msgstr "The id of the message referenced." + +msgid "The channel id of the message referenced." +msgstr "The channel id of the message referenced." + +msgid "The guild id of the message referenced." +msgstr "The guild id of the message referenced." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." +msgstr "The message that this reference resolved to. If this is ``None`` then the original message was not fetched either due to the Discord API not attempting to resolve it or it not being available at the time of creation. If the message was resolved at a prior point but has since been deleted then this will be of type :class:`DeletedReferencedMessage`." + +msgid "Currently, this is mainly the replied to message when a user replies to a message." +msgstr "Currently, this is mainly the replied to message when a user replies to a message." + +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" + +msgid "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." +msgstr "Creates a :class:`MessageReference` from an existing :class:`~discord.Message`." + +msgid "The message to be converted into a reference." +msgstr "The message to be converted into a reference." + +msgid "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying to the referenced message should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Returns" +msgstr "Returns" + +msgid "A reference to the message." +msgstr "A reference to the message." + +msgid ":class:`MessageReference`" +msgstr ":class:`MessageReference`" + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "Returns a URL that allows the client to jump to the referenced message." + +msgid "Represents information about a call in a private channel." +msgstr "Represents information about a call in a private channel." + +msgid "A list of :class:`User` that participated in this call." +msgstr "A list of :class:`User` that participated in this call." + +msgid "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." +msgstr "If a user is not found in the client's cache, then it will be returned as an :class:`Object`." + +msgid "An aware timestamp of when the call ended." +msgstr "An aware timestamp of when the call ended." + +msgid "Represents a partial message to aid with working messages when only a message and channel ID are present." +msgstr "Represents a partial message to aid with working messages when only a message and channel ID are present." + +msgid "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" +msgstr "There are two ways to construct this class. The first one is through the constructor itself, and the second is via the following:" + +msgid ":meth:`TextChannel.get_partial_message`" +msgstr ":meth:`TextChannel.get_partial_message`" + +msgid ":meth:`Thread.get_partial_message`" +msgstr ":meth:`Thread.get_partial_message`" + +msgid ":meth:`DMChannel.get_partial_message`" +msgstr ":meth:`DMChannel.get_partial_message`" + +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr ":meth:`VoiceChannel.get_partial_message`" + +msgid ":meth:`StageChannel.get_partial_message`" +msgstr ":meth:`StageChannel.get_partial_message`" + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messages are equal." +msgstr "Checks if two partial messages are equal." + +msgid "Checks if two partial messages are not equal." +msgstr "Checks if two partial messages are not equal." + +msgid "Returns the partial message's hash." +msgstr "Returns the partial message's hash." + +msgid "The channel associated with this partial message." +msgstr "The channel associated with this partial message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Raises" +msgstr "Raises" + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "The partial message's creation time in UTC." +msgstr "The partial message's creation time in UTC." + +msgid "The guild that the partial message belongs to, if applicable." +msgstr "The guild that the partial message belongs to, if applicable." + +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "Fetches the partial message to a full :class:`Message`." + +msgid "The full message." +msgstr "The full message." + +msgid "The message was not found." +msgstr "The message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid ":class:`discord.Message` is returned instead of ``None`` if an edit took place." +msgstr ":class:`discord.Message` is returned instead of ``None`` if an edit took place." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The message that was edited." +msgstr "The message that was edited." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." +msgstr "A parameter object used for :meth:`abc.Messageable.send` for sending file objects." + +msgid "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." +msgstr "File objects are single use and are not meant to be reused in multiple :meth:`abc.Messageable.send`\\s." + +msgid "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." +msgstr "A file-like object opened in binary mode and read mode or a filename representing a file in the hard drive to open." + +msgid "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." +msgstr "If the file-like object passed is opened via ``open`` then the modes 'rb' should be used." + +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "To pass binary data, consider usage of ``io.BytesIO``." + +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" + +msgid "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." +msgstr "The filename to display when uploading to Discord. If this is not given then it defaults to ``fp.name`` or if ``fp`` is a string then the ``filename`` will default to the string given." + +msgid "The description of a file, used by Discord to display alternative text on images." +msgstr "The description of a file, used by Discord to display alternative text on images." + +msgid "Whether the attachment is a spoiler." +msgstr "Whether the attachment is a spoiler." + +msgid "Embed" +msgstr "Embed" + +msgid "Represents a Discord embed." +msgstr "Represents a Discord embed." + +msgid "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." +msgstr "Returns the total size of the embed. Useful for checking if it's within the 6000 character limit." + +msgid "Returns whether the embed has any data set." +msgstr "Returns whether the embed has any data set." + +msgid "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." +msgstr "For ease of use, all parameters that expect a :class:`str` are implicitly cast to :class:`str` for you." + +msgid "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." +msgstr "The title of the embed. This can be set during initialisation. Must be 256 characters or fewer." + +msgid "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" +msgstr "The type of embed. Usually \"rich\". This can be set during initialisation. Possible strings for embed types can be found on discord's `api docs `_" + +msgid "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." +msgstr "The description of the embed. This can be set during initialisation. Must be 4096 characters or fewer." + +msgid "The URL of the embed. This can be set during initialisation." +msgstr "The URL of the embed. This can be set during initialisation." + +msgid "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." +msgstr "The timestamp of the embed content. This is an aware datetime. If a naive datetime is passed, it is converted to an aware datetime with the local timezone." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." +msgstr "The colour code of the embed. Aliased to ``color`` as well. This can be set during initialisation." + +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "Union[:class:`Colour`, :class:`int`]" + +msgid "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`Embed` provided it is in the format that Discord expects it to be in." + +msgid "You can find out about this format in the `official Discord documentation`__." +msgstr "You can find out about this format in the `official Discord documentation`__." + +msgid "The dictionary to convert into an embed." +msgstr "The dictionary to convert into an embed." + +msgid "The converted embed object." +msgstr "The converted embed object." + +msgid ":class:`Embed`" +msgstr ":class:`Embed`" + +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "Creates a shallow copy of the :class:`Embed` object." + +msgid "The copied embed object." +msgstr "The copied embed object." + +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "Returns an :class:`EmbedFooter` denoting the footer contents." + +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "See :meth:`set_footer` for possible values you can access." + +msgid "If the footer is not set then `None` is returned." +msgstr "If the footer is not set then `None` is returned." + +msgid "Sets the footer for the embed content." +msgstr "Sets the footer for the embed content." + +msgid "This function returns the class instance to allow for fluent-style chaining." +msgstr "This function returns the class instance to allow for fluent-style chaining." + +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "The footer text. Must be 2048 characters or fewer." + +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "The URL of the footer icon. Only HTTP(S) is supported." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" + +msgid "Clears embed's footer information." +msgstr "Clears embed's footer information." + +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "Returns an :class:`EmbedMedia` denoting the image contents." + +msgid "Attributes you can access are:" +msgstr "Attributes you can access are:" + +msgid "``url``" +msgstr "``url``" + +msgid "``proxy_url``" +msgstr "``proxy_url``" + +msgid "``width``" +msgstr "``width``" + +msgid "``height``" +msgstr "``height``" + +msgid "If the image is not set then `None` is returned." +msgstr "If the image is not set then `None` is returned." + +msgid "Sets the image for the embed content." +msgstr "Sets the image for the embed content." + +msgid "Passing `None` removes the image." +msgstr "Passing `None` removes the image." + +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "The source URL for the image. Only HTTP(S) is supported." + +msgid "Removes the embed's image." +msgstr "Removes the embed's image." + +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "Returns an :class:`EmbedMedia` denoting the thumbnail contents." + +msgid "If the thumbnail is not set then `None` is returned." +msgstr "If the thumbnail is not set then `None` is returned." + +msgid "Sets the thumbnail for the embed content." +msgstr "Sets the thumbnail for the embed content." + +msgid "Passing `None` removes the thumbnail." +msgstr "Passing `None` removes the thumbnail." + +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "The source URL for the thumbnail. Only HTTP(S) is supported." + +msgid "Removes the embed's thumbnail." +msgstr "Removes the embed's thumbnail." + +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "Returns an :class:`EmbedMedia` denoting the video contents." + +msgid "Attributes include:" +msgstr "Attributes include:" + +msgid "``url`` for the video URL." +msgstr "``url`` for the video URL." + +msgid "``height`` for the video height." +msgstr "``height`` for the video height." + +msgid "``width`` for the video width." +msgstr "``width`` for the video width." + +msgid "If the video is not set then `None` is returned." +msgstr "If the video is not set then `None` is returned." + +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "Returns an :class:`EmbedProvider` denoting the provider contents." + +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "The only attributes that might be accessed are ``name`` and ``url``." + +msgid "If the provider is not set then `None` is returned." +msgstr "If the provider is not set then `None` is returned." + +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "Returns an :class:`EmbedAuthor` denoting the author contents." + +msgid "See :meth:`set_author` for possible values you can access." +msgstr "See :meth:`set_author` for possible values you can access." + +msgid "If the author is not set then `None` is returned." +msgstr "If the author is not set then `None` is returned." + +msgid "Sets the author for the embed content." +msgstr "Sets the author for the embed content." + +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "The name of the author. Must be 256 characters or fewer." + +msgid "The URL for the author." +msgstr "The URL for the author." + +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "The URL of the author icon. Only HTTP(S) is supported." + +msgid "Clears embed's author information." +msgstr "Clears embed's author information." + +msgid "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." +msgstr "Returns a :class:`list` of :class:`EmbedField` objects denoting the field contents." + +msgid "See :meth:`add_field` for possible values you can access." +msgstr "See :meth:`add_field` for possible values you can access." + +msgid "If the attribute has no value then ``None`` is returned." +msgstr "If the attribute has no value then ``None`` is returned." + +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "Appends an :class:`EmbedField` object to the embed." + +msgid "The field to add." +msgstr "The field to add." + +msgid "Adds a field to the embed object." +msgstr "Adds a field to the embed object." + +msgid "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." +msgstr "This function returns the class instance to allow for fluent-style chaining. There must be 25 fields or fewer." + +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "The name of the field. Must be 256 characters or fewer." + +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "The value of the field. Must be 1024 characters or fewer." + +msgid "Whether the field should be displayed inline." +msgstr "Whether the field should be displayed inline." + +msgid "Inserts a field before a specified index to the embed." +msgstr "Inserts a field before a specified index to the embed." + +msgid "The index of where to insert the field." +msgstr "The index of where to insert the field." + +msgid "Removes all fields from this embed." +msgstr "Removes all fields from this embed." + +msgid "Removes a field at a specified index." +msgstr "Removes a field at a specified index." + +msgid "If the index is invalid or out of bounds then the error is silently swallowed." +msgstr "If the index is invalid or out of bounds then the error is silently swallowed." + +msgid "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." +msgstr "When deleting a field by index, the index of the other fields shift to fill the gap just like a regular list." + +msgid "The index of the field to remove." +msgstr "The index of the field to remove." + +msgid "Modifies a field to the embed object." +msgstr "Modifies a field to the embed object." + +msgid "The index must point to a valid pre-existing field. There must be 25 fields or fewer." +msgstr "The index must point to a valid pre-existing field. There must be 25 fields or fewer." + +msgid "The index of the field to modify." +msgstr "The index of the field to modify." + +msgid "An invalid index was provided." +msgstr "An invalid index was provided." + +msgid "Converts this embed object into a dict." +msgstr "Converts this embed object into a dict." + +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" + +msgid "Represents a field on the :class:`Embed` object." +msgstr "Represents a field on the :class:`Embed` object." + +msgid "The name of the field." +msgstr "The name of the field." + +msgid "The value of the field." +msgstr "The value of the field." + +msgid "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." +msgstr "Converts a :class:`dict` to a :class:`EmbedField` provided it is in the format that Discord expects it to be in." + +msgid "The dictionary to convert into an EmbedField object." +msgstr "The dictionary to convert into an EmbedField object." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" + +msgid "Converts this EmbedField object into a dict." +msgstr "Converts this EmbedField object into a dict." + +msgid "A dictionary of :class:`str` embed field keys bound to the respective value." +msgstr "A dictionary of :class:`str` embed field keys bound to the respective value." + +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" + +msgid "Represents the author on the :class:`Embed` object." +msgstr "Represents the author on the :class:`Embed` object." + +msgid "The name of the author." +msgstr "The name of the author." + +msgid "The URL of the hyperlink created in the author's name." +msgstr "The URL of the hyperlink created in the author's name." + +msgid "The URL of the author icon image." +msgstr "The URL of the author icon image." + +msgid "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the author icon image. This can't be set directly, it is set by Discord." + +msgid "Represents the footer on the :class:`Embed` object." +msgstr "Represents the footer on the :class:`Embed` object." + +msgid "The text inside the footer." +msgstr "The text inside the footer." + +msgid "The URL of the footer icon image." +msgstr "The URL of the footer icon image." + +msgid "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." +msgstr "The proxied URL of the footer icon image. This can't be set directly, it is set by Discord." + +msgid "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." +msgstr "Represents a media on the :class:`Embed` object. This includes thumbnails, images, and videos." + +msgid "The source URL of the media." +msgstr "The source URL of the media." + +msgid "The proxied URL of the media." +msgstr "The proxied URL of the media." + +msgid "The height of the media." +msgstr "The height of the media." + +msgid "The width of the media." +msgstr "The width of the media." + +msgid "Represents a provider on the :class:`Embed` object." +msgstr "Represents a provider on the :class:`Embed` object." + +msgid "The name of the provider." +msgstr "The name of the provider." + +msgid "The URL of the provider." +msgstr "The URL of the provider." + +msgid "Poll" +msgstr "Poll" + +msgid "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." +msgstr "Represents a Poll. Polls are sent in regular messages, and you must have :attr:`~discord.Permissions.send_polls` to send them." + +msgid "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." +msgstr "The poll's question media, or a ``str`` representing the question text. Question text can be up to 300 characters." + +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "Union[:class:`PollMedia`, :class:`str`]" + +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "A list of the poll's answers. A maximum of 10 answers can be set." + +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "Optional[List[:class:`PollAnswer`]]" + +msgid "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." +msgstr "The number of hours until this poll expires. Users must specify this when creating a poll, but existing polls return :attr:`expiry` instead. Defaults to 24." + +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "Whether multiple answers can be selected. Defaults to ``False``." + +msgid "The poll's layout type. Only one exists at the moment." +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 "Optional[:class:`PollResults`]" +msgstr "Optional[:class:`PollResults`]" + +msgid "An aware datetime object that specifies the date and time in UTC when the poll will end." +msgstr "An aware datetime object that specifies the date and time in UTC when the poll will end." + +msgid "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." +msgstr "Checks if this poll has completely ended. Shortcut for :attr:`PollResults.is_finalized`, if available." + +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "Returns a boolean if :attr:`results` is available, otherwise ``None``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." +msgstr "Shortcut for :meth:`PollResults.total_votes` This may not be precise if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." +msgstr "The total number of votes on this poll if :attr:`results` is available, otherwise ``None``." + +msgid "Get a poll answer by ID." +msgstr "Get a poll answer by ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned answer or ``None`` if not found." +msgstr "The returned answer or ``None`` if not found." + +msgid "Optional[:class:`.PollAnswer`]" +msgstr "Optional[:class:`.PollAnswer`]" + +msgid "Add an answer to this poll." +msgstr "Add an answer to this poll." + +msgid "The answer text. Maximum 55 characters." +msgstr "The answer text. Maximum 55 characters." + +msgid "The answer's emoji." +msgstr "The answer's emoji." + +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "The poll already has 10 answers or ``text`` exceeds the character length." + +msgid "You cannot add an answer to an existing poll." +msgstr "You cannot add an answer to an existing poll." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Regular usage ::" +msgstr "Regular usage ::" + +msgid "Chaining style ::" +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 "Represents a poll media object that supports both questions and answers." +msgstr "Represents a poll media object that supports both questions and answers." + +msgid "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." +msgstr "The question/answer text. May have up to 300 characters for questions and 55 characters for answers." + +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" + +msgid "Represents a poll answer object." +msgstr "Represents a poll answer object." + +msgid "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." +msgstr "The answer's ID. It currently starts at ``1`` for the first answer, then goes up sequentially. It may not be reliable to depend on this." + +msgid "The relevant media for this answer." +msgstr "The relevant media for this answer." + +msgid ":class:`PollMedia`" +msgstr ":class:`PollMedia`" + +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +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 "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." + +msgid "The maximum number of results to return. If not provided, returns all the users who voted with this answer." +msgstr "The maximum number of results to return. If not provided, returns all the users who voted with this answer." + +msgid "For pagination, answers are sorted by member." +msgstr "For pagination, answers are sorted by member." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has voted with this answer. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the voters for the answer failed." +msgstr "Getting the voters for the answer failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Represents a poll answer count object." +msgstr "Represents a poll answer count object." + +msgid "The number of votes for this answer." +msgstr "The number of votes for this answer." + +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "If the current user voted this answer. This is always ``False`` for bots." + +msgid "Represents a poll results object." +msgstr "Represents a poll results object." + +msgid "Whether the poll has ended and all answer counts have been precisely tallied." +msgstr "Whether the poll has ended and all answer counts have been precisely tallied." + +msgid "A list of counts for each answer. If an answer isn't included, it has no votes." +msgstr "A list of counts for each answer. If an answer isn't included, it has no votes." + +msgid "List[:class:`PollAnswerCount`]" +msgstr "List[:class:`PollAnswerCount`]" + +msgid "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." +msgstr "Get the total number of votes across all answers. This may not be accurate if :attr:`is_finalized` is ``False``." + +msgid "The total number of votes on this poll." +msgstr "The total number of votes on this poll." + +msgid "Flags" +msgstr "Flags" + +msgid "Controls the library's cache policy when it comes to members." +msgstr "Controls the library's cache policy when it comes to members." + +msgid "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." +msgstr "This allows for finer grained control over what members are cached. Note that the bot's own member is always cached. This class is passed to the ``member_cache_flags`` parameter in :class:`Client`." + +msgid "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." +msgstr "Due to a quirk in how Discord works, in order to ensure proper cleanup of cache resources it is recommended to have :attr:`Intents.members` enabled. Otherwise, the library cannot know when a member leaves a guild and is thus unable to clean up after itself." + +msgid "The default value is all flags enabled." +msgstr "The default value is all flags enabled." + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" + +msgid "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." +msgstr "A factory method that creates a :class:`MemberCacheFlags` with everything disabled." + +msgid "Whether to cache members that are in voice." +msgstr "Whether to cache members that are in voice." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "Members that leave voice are no longer cached." +msgstr "Members that leave voice are no longer cached." + +msgid "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." +msgstr "Whether to cache members that joined the guild or are chunked as part of the initial log in flow." + +msgid "This requires :attr:`Intents.members`." +msgstr "This requires :attr:`Intents.members`." + +msgid "Members that leave the guild are no longer cached." +msgstr "Members that leave the guild are no longer cached." + +msgid "Whether to cache members obtained through interactions." +msgstr "Whether to cache members obtained through interactions." + +msgid "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." +msgstr "This includes members received through :class:`discord.Interaction` and :class:`discord.Option`." + +msgid "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." +msgstr "A factory method that creates a :class:`MemberCacheFlags` based on the currently selected :class:`Intents`." + +msgid "The intents to select from." +msgstr "The intents to select from." + +msgid "The resulting member cache flags." +msgstr "The resulting member cache flags." + +msgid ":class:`MemberCacheFlags`" +msgstr ":class:`MemberCacheFlags`" + +msgid "Wraps up the Discord Application flags." +msgstr "Wraps up the Discord Application flags." + +msgid "Checks if two ApplicationFlags are equal." +msgstr "Checks if two ApplicationFlags are equal." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Checks if two ApplicationFlags are not equal." + +msgid "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(name, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "Returns ``True`` if the application is a managed emoji." + +msgid "Returns ``True`` if the application can create group DMs." +msgstr "Returns ``True`` if the application can create group DMs." + +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "Returns ``True`` if the application uses the Auto Moderation API." + +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "Returns ``True`` if the application has connected to RPC." + +msgid "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive presence information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited presence information over the gateway." + +msgid "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." +msgstr "Returns ``True`` if the application is verified and is allowed to receive guild members information over the gateway." + +msgid "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." +msgstr "Returns ``True`` if the application is allowed to receive limited guild members information over the gateway." + +msgid "Returns ``True`` if the application is currently pending verification and has hit the guild limit." +msgstr "Returns ``True`` if the application is currently pending verification and has hit the guild limit." + +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "Returns ``True`` if the application is embedded within the Discord client." + +msgid "Returns ``True`` if the application is allowed to read message contents in guilds." +msgstr "Returns ``True`` if the application is allowed to read message contents in guilds." + +msgid "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." +msgstr "Returns ``True`` if the application has registered at least one global application command, and by extension has the badge." + +msgid "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." +msgstr "Returns ``True`` if the app is considered active. Applications are considered active if they have had any command executions in the past 30 days." + +msgid "Wraps up a Discord system channel flag value." +msgstr "Wraps up a Discord system channel flag value." + +msgid "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." +msgstr "Similar to :class:`Permissions`\\, the properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit the system flags easily." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available flags. You should query flags via the properties rather than using this raw value." + +msgid "Returns ``True`` if the system channel is used for member join notifications." +msgstr "Returns ``True`` if the system channel is used for member join notifications." + +msgid "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." +msgstr "Returns ``True`` if the system channel is used for \"Nitro boosting\" notifications." + +msgid "Returns ``True`` if the system channel is used for server setup helpful tips notifications." +msgstr "Returns ``True`` if the system channel is used for server setup helpful tips notifications." + +msgid "Returns ``True`` if the system channel is allowing member join sticker replies." +msgstr "Returns ``True`` if the system channel is allowing member join sticker replies." + +msgid "Wraps up a Discord Message flag value." +msgstr "Wraps up a Discord Message flag value." + +msgid "See :class:`SystemChannelFlags`." +msgstr "See :class:`SystemChannelFlags`." + +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "Returns ``True`` if the message is the original crossposted message." + +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "Returns ``True`` if the message was crossposted from another channel." + +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "Returns ``True`` if the message's embeds have been suppressed." + +msgid "Returns ``True`` if the source message for this crosspost has been deleted." +msgstr "Returns ``True`` if the source message for this crosspost has been deleted." + +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "Returns ``True`` if the source message is an urgent message." + +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "An urgent message is one sent by Discord Trust and Safety." + +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "Returns ``True`` if the source message is associated with a thread." + +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "Returns ``True`` if the source message is ephemeral." + +msgid "Returns ``True`` if the source message is deferred." +msgstr "Returns ``True`` if the source message is deferred." + +msgid "The user sees a 'thinking' state." +msgstr "The user sees a 'thinking' state." + +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "Returns ``True`` if some roles are failed to mention in a thread." + +msgid "Returns ``True`` if the source message does not trigger push and desktop notifications." +msgstr "Returns ``True`` if the source message does not trigger push and desktop notifications." + +msgid "Users will still receive mentions." +msgstr "Users will still receive mentions." + +msgid "Returns ``True`` if this message is a voice message." +msgstr "Returns ``True`` if this message is a voice message." + +msgid "Wraps up the Discord Attachment flags." +msgstr "Wraps up the Discord Attachment flags." + +msgid "Returns ``True`` if the attachment is a clip." +msgstr "Returns ``True`` if the attachment is a clip." + +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "Returns ``True`` if the attachment is a thumbnail." + +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "Returns ``True`` if the attachment has been remixed." + +msgid "Wraps up the Discord User Public flags." +msgstr "Wraps up the Discord User Public flags." + +msgid "Checks if two PublicUserFlags are equal." +msgstr "Checks if two PublicUserFlags are equal." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Checks if two PublicUserFlags are not equal." + +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "Returns ``True`` if the user is a Discord Employee." + +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "Returns ``True`` if the user is a Discord Partner." + +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "Returns ``True`` if the user is a HypeSquad Events member." + +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "Returns ``True`` if the user is a Bug Hunter" + +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "Returns ``True`` if the user is marked as dismissed Nitro promotion" + +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "Returns ``True`` if the user is a HypeSquad Bravery member." + +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "Returns ``True`` if the user is a HypeSquad Brilliance member." + +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "Returns ``True`` if the user is a HypeSquad Balance member." + +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "Returns ``True`` if the user is an Early Supporter." + +msgid "Returns ``True`` if the user is a Team User." +msgstr "Returns ``True`` if the user is a Team User." + +msgid "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." +msgstr "Returns ``True`` if the user is a system user (i.e. represents Discord officially)." + +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "Returns ``True`` if the user is a Bug Hunter Level 2" + +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "Returns ``True`` if the user is a Verified Bot." + +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "Returns ``True`` if the user is an Early Verified Bot Developer." + +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "An alias for :attr:`verified_bot_developer`." + +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "Returns ``True`` if the user is a Discord Certified Moderator." + +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "Returns ``True`` if the bot has set an interactions endpoint url." + +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "Returns ``True`` if the user is an Active Developer." + +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "List[:class:`UserFlags`]: Returns all public flags the user has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" + +msgid "Wraps up the Discord Channel flags." +msgstr "Wraps up the Discord Channel flags." + +msgid "Checks if two ChannelFlags are equal." +msgstr "Checks if two ChannelFlags are equal." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Checks if two ChannelFlags are not equal." + +msgid "Returns ``True`` if the thread is pinned to the top of its parent forum channel." +msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum channel." + +msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." +msgstr "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." + +msgid "Wraps up the Discord SKU flags." +msgstr "Wraps up the Discord SKU flags." + +msgid "Checks if two SKUFlags are equal." +msgstr "Checks if two SKUFlags are equal." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Checks if two SKUFlags are not equal." + +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "Returns ``True`` if the SKU is available for purchase." + +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "Returns ``True`` if the SKU is a guild subscription." + +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "Returns ``True`` if the SKU is a user subscription." + +msgid "Wraps up the Discord Member flags." +msgstr "Wraps up the Discord Member flags." + +msgid "Checks if two MemberFlags are equal." +msgstr "Checks if two MemberFlags are equal." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Checks if two MemberFlags are not equal." + +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "Returns ``True`` if the member left and rejoined the guild." + +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "Returns ``True`` if the member has completed onboarding." + +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "Returns ``True`` if the member is exempt from verification requirements." + +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "This can be edited through :func:`~discord.Member.edit`." + +msgid "Returns ``True`` if the member has started onboarding." +msgstr "Returns ``True`` if the member has started onboarding." + +msgid "Wraps up the Discord Role flags." +msgstr "Wraps up the Discord Role flags." + +msgid "Checks if two RoleFlags are equal." +msgstr "Checks if two RoleFlags are equal." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Checks if two RoleFlags are not equal." + +msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." +msgstr "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." + +msgid "Colour" +msgstr "Colour" + +msgid "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." +msgstr "Represents a Discord role colour. This class is similar to a (red, green, blue) :class:`tuple`." + +msgid "There is an alias for this called Color." +msgstr "There is an alias for this called Color." + +msgid "Checks if two colours are equal." +msgstr "Checks if two colours are equal." + +msgid "Checks if two colours are not equal." +msgstr "Checks if two colours are not equal." + +msgid "Return the colour's hash." +msgstr "Return the colour's hash." + +msgid "Returns the hex format for the colour." +msgstr "Returns the hex format for the colour." + +msgid "Returns the raw colour value." +msgstr "Returns the raw colour value." + +msgid "The raw integer colour value." +msgstr "The raw integer colour value." + +msgid "Returns the red component of the colour." +msgstr "Returns the red component of the colour." + +msgid "Returns the green component of the colour." +msgstr "Returns the green component of the colour." + +msgid "Returns the blue component of the colour." +msgstr "Returns the blue component of the colour." + +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "Returns an (r, g, b) tuple representing the colour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\]`" + +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "Constructs a :class:`Colour` from an RGB tuple." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "Constructs a :class:`Colour` from an HSV tuple." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0``." + +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "A factory method that returns a :class:`Colour` with a random hue." + +msgid "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." +msgstr "The random algorithm works by choosing a colour with a random hue but with maxed out saturation and value." + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used. .. versionadded:: 1.7" + +msgid "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." +msgstr "The seed to initialize the RNG with. If ``None`` is passed the default RNG is used." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1abc9c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x11806a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x57F287``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x2ecc71``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x1f8b4c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x3498db``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x206694``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x206694``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x9b59b6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x71368a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe91e63``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xad1457``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf1c40f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xc27c0e``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe67e22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xa84300``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xED4245``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xe74c3c``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x992d22``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x95a5a6``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x607d8b``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x979c9f``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x546e7a``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x7289da``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x5865F2``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x99aab5``." + +msgid "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0x36393F``. This will appear transparent on Discord's dark theme. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xEB459E``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xFEE75C``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "A factory method that returns a :class:`Colour` with a value of ``0xf47fff``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" + +msgid "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" +msgstr "A factory method that returns a :class:`Colour` corresponding to the embed colours on discord clients, with a value of:" + +msgid "``0x2B2D31`` (dark)" +msgstr "``0x2B2D31`` (dark)" + +msgid "``0xEEEFF1`` (light)" +msgstr "``0xEEEFF1`` (light)" + +msgid "``0x000000`` (amoled)." +msgstr "``0x000000`` (amoled)." + +msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." +msgstr "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." + +msgid "Activity" +msgstr "Activity" + +msgid "Represents an activity in Discord." +msgstr "Represents an activity in Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "This could be an activity such as streaming, playing, listening or watching." + +msgid "For memory optimisation purposes, some activities are offered in slimmed down versions:" +msgstr "For memory optimisation purposes, some activities are offered in slimmed down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "The application ID of the game." +msgstr "The application ID of the game." + +msgid "The name of the activity." +msgstr "The name of the activity." + +msgid "A stream URL that the activity could be doing." +msgstr "A stream URL that the activity could be doing." + +msgid "The type of activity currently being done." +msgstr "The type of activity currently being done." + +msgid ":class:`ActivityType`" +msgstr ":class:`ActivityType`" + +msgid "The user's current party status or text used for a custom status." +msgstr "The user's current party status or text used for a custom status." + +msgid "The detail of the user's current activity." +msgstr "The detail of the user's current activity." + +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "A dictionary of timestamps. It contains the following optional keys:" + +msgid "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." +msgstr "``start``: Corresponds to when the user started doing the activity in milliseconds since Unix epoch." + +msgid "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." +msgstr "``end``: Corresponds to when the user will finish doing the activity in milliseconds since Unix epoch." + +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "Dict[:class:`str`, :class:`int`]" + +msgid "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" +msgstr "A dictionary representing the images and their hover text of an activity. It contains the following optional keys:" + +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "``large_image``: A string representing the ID for the large image asset." + +msgid "``large_text``: A string representing the text when hovering over the large image asset." +msgstr "``large_text``: A string representing the text when hovering over the large image asset." + +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "``small_image``: A string representing the ID for the small image asset." + +msgid "``small_text``: A string representing the text when hovering over the small image asset." +msgstr "``small_text``: A string representing the text when hovering over the small image asset." + +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "Dict[:class:`str`, :class:`str`]" + +msgid "A dictionary representing the activity party. It contains the following optional keys:" +msgstr "A dictionary representing the activity party. It contains the following optional keys:" + +msgid "``id``: A string representing the party ID." +msgstr "``id``: A string representing the party ID." + +msgid "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." +msgstr "``size``: A list of up to two integer elements denoting (current_size, maximum_size)." + +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" + +msgid "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" +msgstr "A list of dictionaries representing custom buttons shown in a rich presence. Each dictionary contains the following keys:" + +msgid "``label``: A string representing the text shown on the button." +msgstr "``label``: A string representing the text shown on the button." + +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "``url``: A string representing the URL opened upon clicking the button." + +msgid "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." +msgstr "Bots cannot access a user's activity button URLs. Therefore, the type of this attribute will be List[:class:`str`] when received through the gateway." + +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" + +msgid "The emoji that belongs to this activity." +msgstr "The emoji that belongs to this activity." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "When the user started doing this activity in UTC, if applicable." + +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "When the user will stop doing this activity in UTC, if applicable." + +msgid "Returns a URL pointing to the large image asset of this activity if applicable." +msgstr "Returns a URL pointing to the large image asset of this activity if applicable." + +msgid "Returns a URL pointing to the small image asset of this activity if applicable." +msgstr "Returns a URL pointing to the small image asset of this activity if applicable." + +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "Returns the large image asset hover text of this activity if applicable." + +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "Returns the small image asset hover text of this activity if applicable." + +msgid "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." +msgstr "The base activity that all user-settable activities inherit from. A user-settable activity is one that can be used in :meth:`Client.change_presence`." + +msgid "The following types currently count as user-settable:" +msgstr "The following types currently count as user-settable:" + +msgid ":class:`Activity`" +msgstr ":class:`Activity`" + +msgid ":class:`CustomActivity`" +msgstr ":class:`CustomActivity`" + +msgid "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." +msgstr "Note that although these types are considered user-settable by the library, Discord typically ignores certain combinations of activity depending on what is currently set. This behaviour may change in the future so there are no guarantees on whether Discord will actually let you set these types." + +msgid "When the user started doing this activity in UTC." +msgstr "When the user started doing this activity in UTC." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord game." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord game." + +msgid "This is typically displayed via **Playing** on the official Discord client." +msgstr "This is typically displayed via **Playing** on the official Discord client." + +msgid "Checks if two games are equal." +msgstr "Checks if two games are equal." + +msgid "Checks if two games are not equal." +msgstr "Checks if two games are not equal." + +msgid "Returns the game's hash." +msgstr "Returns the game's hash." + +msgid "Returns the game's name." +msgstr "Returns the game's name." + +msgid "The game's name." +msgstr "The game's name." + +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the game's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "It always returns :attr:`ActivityType.playing`." + +msgid "When the user started playing this game in UTC, if applicable." +msgstr "When the user started playing this game in UTC, if applicable." + +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "When the user will stop playing this game in UTC, if applicable." + +msgid "A slimmed down version of :class:`Activity` that represents a Discord streaming status." +msgstr "A slimmed down version of :class:`Activity` that represents a Discord streaming status." + +msgid "This is typically displayed via **Streaming** on the official Discord client." +msgstr "This is typically displayed via **Streaming** on the official Discord client." + +msgid "Checks if two streams are equal." +msgstr "Checks if two streams are equal." + +msgid "Checks if two streams are not equal." +msgstr "Checks if two streams are not equal." + +msgid "Returns the stream's hash." +msgstr "Returns the stream's hash." + +msgid "Returns the stream's name." +msgstr "Returns the stream's name." + +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "Where the user is streaming from (ie. YouTube, Twitch)." + +msgid "The stream's name." +msgstr "The stream's name." + +msgid "An alias for :attr:`name`" +msgstr "An alias for :attr:`name`" + +msgid "The game being streamed." +msgstr "The game being streamed." + +msgid "The stream's URL." +msgstr "The stream's URL." + +msgid "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." +msgstr "A dictionary comprised of similar keys than those in :attr:`Activity.assets`." + +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "It always returns :attr:`ActivityType.streaming`." + +msgid "If provided, the twitch name of the user streaming." +msgstr "If provided, the twitch name of the user streaming." + +msgid "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." +msgstr "This corresponds to the ``large_image`` key of the :attr:`Streaming.assets` dictionary if it starts with ``twitch:``. Typically this is set by the Discord client." + +msgid "Represents a Custom activity from Discord." +msgstr "Represents a Custom activity from Discord." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the custom status text." +msgstr "Returns the custom status text." + +msgid "The custom activity's name." +msgstr "The custom activity's name." + +msgid "The emoji to pass to the activity, if any." +msgstr "The emoji to pass to the activity, if any." + +msgid "The text used for the custom activity." +msgstr "The text used for the custom activity." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "It always returns :attr:`ActivityType.custom`." + +msgid "Permissions" +msgstr "Permissions" + +msgid "Wraps up the Discord permission value." +msgstr "Wraps up the Discord permission value." + +msgid "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." +msgstr "The properties provided are two way. You can set and retrieve individual bits using the properties as if they were regular bools. This allows you to edit permissions." + +msgid "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." +msgstr "You can now use keyword arguments to initialize :class:`Permissions` similar to :meth:`update`." + +msgid "Checks if two permissions are equal." +msgstr "Checks if two permissions are equal." + +msgid "Checks if two permissions are not equal." +msgstr "Checks if two permissions are not equal." + +msgid "Checks if a permission is a subset of another permission." +msgstr "Checks if a permission is a subset of another permission." + +msgid "Checks if a permission is a superset of another permission." +msgstr "Checks if a permission is a superset of another permission." + +msgid "Checks if a permission is a strict subset of another permission." +msgstr "Checks if a permission is a strict subset of another permission." + +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "Adds two permissions together. Equivalent to ``x | y``." + +msgid "Subtracts two permissions from each other." +msgstr "Subtracts two permissions from each other." + +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "Returns the union of two permissions. Equivalent to ``x + y``." + +msgid "Returns the intersection of two permissions." +msgstr "Returns the intersection of two permissions." + +msgid "Returns the inverse of a permission." +msgstr "Returns the inverse of a permission." + +msgid "Checks if a permission is a strict superset of another permission." +msgstr "Checks if a permission is a strict superset of another permission." + +msgid "Return the permission's hash." +msgstr "Return the permission's hash." + +msgid "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(perm, value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." +msgstr "The raw value. This value is a bit array field of a 53-bit integer representing the currently available permissions. You should query permissions via the properties rather than using this raw value." + +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "Returns ``True`` if self has the same or fewer permissions as other." + +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "Returns ``True`` if self has the same or more permissions as other." + +msgid "Returns ``True`` if the permissions on other are a strict subset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict subset of those on self." + +msgid "Returns ``True`` if the permissions on other are a strict superset of those on self." +msgstr "Returns ``True`` if the permissions on other are a strict superset of those on self." + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``False``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all permissions set to ``True``." + +msgid "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A :class:`Permissions` with all channel-specific permissions set to ``True`` and the guild-specific ones set to ``False``. The guild-specific permissions are currently: :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid ":attr:`manage_emojis`" +msgstr ":attr:`manage_emojis`" + +msgid ":attr:`view_audit_log`" +msgstr ":attr:`view_audit_log`" + +msgid ":attr:`view_guild_insights`" +msgstr ":attr:`view_guild_insights`" + +msgid ":attr:`manage_guild`" +msgstr ":attr:`manage_guild`" + +msgid ":attr:`change_nickname`" +msgstr ":attr:`change_nickname`" + +msgid ":attr:`manage_nicknames`" +msgstr ":attr:`manage_nicknames`" + +msgid ":attr:`kick_members`" +msgstr ":attr:`kick_members`" + +msgid ":attr:`ban_members`" +msgstr ":attr:`ban_members`" + +msgid ":attr:`administrator`" +msgstr ":attr:`administrator`" + +msgid "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." +msgstr "Added :attr:`stream`, :attr:`priority_speaker` and :attr:`use_slash_commands` permissions." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`use_external_stickers`, :attr:`send_messages_in_threads` and :attr:`request_to_speak` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"General\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." +msgstr "Permission :attr:`read_messages` is now included in the general permissions, but permissions :attr:`administrator`, :attr:`create_instant_invite`, :attr:`kick_members`, :attr:`ban_members`, :attr:`change_nickname` and :attr:`manage_nicknames` are no longer part of the general permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Membership\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Text\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." +msgstr "Permission :attr:`read_messages` is no longer part of the text permissions. Added :attr:`use_slash_commands` permission." + +msgid "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." +msgstr "Added :attr:`create_public_threads`, :attr:`create_private_threads`, :attr:`manage_threads`, :attr:`send_messages_in_threads` and :attr:`use_external_stickers` permissions." + +msgid "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." +msgstr "A factory method that creates a :class:`Permissions` with all \"Voice\" permissions from the official Discord UI set to ``True``." + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Channel\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Stage Moderator\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "A factory method that creates a :class:`Permissions` with all \"Advanced\" permissions from the official Discord UI set to ``True``. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" + +msgid "Bulk updates this permission object." +msgstr "Bulk updates this permission object." + +msgid "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." +msgstr "Allows you to set multiple attributes by using keyword arguments. The names must be equivalent to the properties listed. Extraneous key/value pairs will be silently ignored." + +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "A list of key/value pairs to bulk update permissions with." + +msgid "Returns ``True`` if the user can create instant invites." +msgstr "Returns ``True`` if the user can create instant invites." + +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "Returns ``True`` if the user can kick users from the guild." + +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "Returns ``True`` if a user can ban users from the guild." + +msgid "Returns ``True`` if a user is an administrator. This role overrides all other permissions." +msgstr "Returns ``True`` if a user is an administrator. This role overrides all other permissions." + +msgid "This also bypasses all channel-specific overrides." +msgstr "This also bypasses all channel-specific overrides." + +msgid "Returns ``True`` if a user can edit, delete, or create channels in the guild." +msgstr "Returns ``True`` if a user can edit, delete, or create channels in the guild." + +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "This also corresponds to the \"Manage Channel\" channel-specific override." + +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "Returns ``True`` if a user can edit guild properties." + +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "Returns ``True`` if a user can add reactions to messages." + +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "Returns ``True`` if a user can view the guild's audit log." + +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "Returns ``True`` if a user can be more easily heard while talking." + +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "Returns ``True`` if a user can stream in a voice channel." + +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "Returns ``True`` if a user can view all or specific channels." + +msgid "An alias for :attr:`view_channel`." +msgstr "An alias for :attr:`view_channel`." + +msgid "Returns ``True`` if a user can send messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send messages from all or specific text channels." + +msgid "Returns ``True`` if a user can send TTS messages from all or specific text channels." +msgstr "Returns ``True`` if a user can send TTS messages from all or specific text channels." + +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "Returns ``True`` if a user can delete or pin messages in a text channel." + +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "Note that there are currently no ways to edit other people's messages." + +msgid "Returns ``True`` if a user's messages will automatically be embedded by Discord." +msgstr "Returns ``True`` if a user's messages will automatically be embedded by Discord." + +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "Returns ``True`` if a user can send files in their messages." + +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "Returns ``True`` if a user can read a text channel's previous messages." + +msgid "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." +msgstr "Returns ``True`` if a user's @everyone or @here will mention everyone in the text channel." + +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "Returns ``True`` if a user can use emojis from other guilds." + +msgid "An alias for :attr:`external_emojis`." +msgstr "An alias for :attr:`external_emojis`." + +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "Returns ``True`` if a user can view the guild's insights." + +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "Returns ``True`` if a user can connect to a voice channel." + +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "Returns ``True`` if a user can speak in a voice channel." + +msgid "Returns ``True`` if a user can mute other users." +msgstr "Returns ``True`` if a user can mute other users." + +msgid "Returns ``True`` if a user can deafen other users." +msgstr "Returns ``True`` if a user can deafen other users." + +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "Returns ``True`` if a user can move users between other voice channels." + +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "Returns ``True`` if a user can use voice activation in voice channels." + +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "Returns ``True`` if a user can change their nickname in the guild." + +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "Returns ``True`` if a user can change other user's nickname in the guild." + +msgid "Returns ``True`` if a user can create or edit roles less than their role's position." +msgstr "Returns ``True`` if a user can create or edit roles less than their role's position." + +msgid "This also corresponds to the \"Manage Permissions\" channel-specific override." +msgstr "This also corresponds to the \"Manage Permissions\" channel-specific override." + +msgid "An alias for :attr:`manage_roles`." +msgstr "An alias for :attr:`manage_roles`." + +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "Returns ``True`` if a user can create, edit, or delete webhooks." + +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "Returns ``True`` if a user can create, edit, or delete emojis." + +msgid "An alias for :attr:`manage_emojis`." +msgstr "An alias for :attr:`manage_emojis`." + +msgid "Returns ``True`` if a user can use slash commands." +msgstr "Returns ``True`` if a user can use slash commands." + +msgid "An alias for :attr:`use_slash_commands`." +msgstr "An alias for :attr:`use_slash_commands`." + +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "Returns ``True`` if a user can request to speak in a stage channel." + +msgid "Returns ``True`` if a user can manage guild events." +msgstr "Returns ``True`` if a user can manage guild events." + +msgid "Returns ``True`` if a user can manage threads." +msgstr "Returns ``True`` if a user can manage threads." + +msgid "Returns ``True`` if a user can create public threads." +msgstr "Returns ``True`` if a user can create public threads." + +msgid "Returns ``True`` if a user can create private threads." +msgstr "Returns ``True`` if a user can create private threads." + +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "Returns ``True`` if a user can use stickers from other guilds." + +msgid "An alias for :attr:`external_stickers`." +msgstr "An alias for :attr:`external_stickers`." + +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "Returns ``True`` if a user can send messages in threads." + +msgid "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." +msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a voice channel." + +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "Returns ``True`` if a user can moderate members (timeout)." + +msgid "Returns ``True`` if a member can send voice messages." +msgstr "Returns ``True`` if a member can send voice messages." + +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "Returns ``True`` if a member can set voice channel status." + +msgid "Returns ``True`` if a member can send polls." +msgstr "Returns ``True`` if a member can send polls." + +msgid "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." +msgstr "Returns ``True`` if a member's user-installed apps can show public responses. Users will still be able to use user-installed apps, but responses will be ephemeral." + +msgid "This only applies to apps that are also not installed to the guild." +msgstr "This only applies to apps that are also not installed to the guild." + +msgid "A type that is used to represent a channel specific permission." +msgstr "A type that is used to represent a channel specific permission." + +msgid "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." +msgstr "Unlike a regular :class:`Permissions`\\, the default value of a permission is equivalent to ``None`` and not ``False``. Setting a value to ``False`` is **explicitly** denying that permission, while setting a value to ``True`` is **explicitly** allowing that permission." + +msgid "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." +msgstr "The values supported by this are the same as :class:`Permissions` with the added possibility of it being set to ``None``." + +msgid "Checks if two overwrites are equal." +msgstr "Checks if two overwrites are equal." + +msgid "Checks if two overwrites are not equal." +msgstr "Checks if two overwrites are not equal." + +msgid "Set the value of permissions by their name." +msgstr "Set the value of permissions by their name." + +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "Returns the (allow, deny) pair from this overwrite." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, \\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" + +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "Creates an overwrite from an allow/deny pair of :class:`Permissions`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" + +msgid "Checks if the permission overwrite is currently empty." +msgstr "Checks if the permission overwrite is currently empty." + +msgid "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." +msgstr "An empty permission overwrite is one that has no overwrites set to ``True`` or ``False``." + +msgid "Indicates if the overwrite is empty." +msgstr "Indicates if the overwrite is empty." + +msgid "Bulk updates this permission overwrite object." +msgstr "Bulk updates this permission overwrite object." + +msgid "A list of key/value pairs to bulk update with." +msgstr "A list of key/value pairs to bulk update with." + +msgid "Application Role Connections" +msgstr "Application Role Connections" + +msgid "Represents role connection metadata for a Discord application." +msgstr "Represents role connection metadata for a Discord application." + +msgid "The type of metadata value." +msgstr "The type of metadata value." + +msgid "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." +msgstr "The key for this metadata field. May only be the ``a-z``, ``0-9``, or ``_`` characters, with a maximum of 50 characters." + +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "The name for this metadata field. Maximum 100 characters." + +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "The description for this metadata field. Maximum 200 characters." + +msgid "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this metadata field. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + diff --git a/docs/locales/zh/LC_MESSAGES/api/enums.po b/docs/locales/zh/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..8ec182d4bf --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/enums.po @@ -0,0 +1,1771 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Enumerations" +msgstr "Enumerations" + +msgid "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." +msgstr "The API provides some enumerations for certain types of strings to avoid the API from being stringly typed in case the strings change in the future." + +msgid "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." +msgstr "All enumerations are subclasses of an internal class which mimics the behaviour of :class:`enum.Enum`." + +msgid "Specifies the input type of an option." +msgstr "Specifies the input type of an option." + +msgid "A slash subcommand." +msgstr "A slash subcommand." + +msgid "A slash command group." +msgstr "A slash command group." + +msgid "A string." +msgstr "A string." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "An integer between -2⁵³ and 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "IDs, such as 881224361015672863, are often too big for this input type." + +msgid "A boolean." +msgstr "A boolean." + +msgid "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" +msgstr "A user from the current channel. This will be converted to an instance of :class:`.User` in private channels, else :class:`.Member`" + +msgid "A channel from the current guild." +msgstr "A channel from the current guild." + +msgid "A role from the current guild." +msgstr "A role from the current guild." + +msgid "A mentionable (user or role)." +msgstr "A mentionable (user or role)." + +msgid "A floating-point number between -2⁵³ and 2⁵³." +msgstr "A floating-point number between -2⁵³ and 2⁵³." + +msgid "An attachment." +msgstr "An attachment." + +msgid "Specifies the type of channel." +msgstr "Specifies the type of channel." + +msgid "A text channel." +msgstr "A text channel." + +msgid "A voice channel." +msgstr "A voice channel." + +msgid "A private text channel. Also called a direct message." +msgstr "A private text channel. Also called a direct message." + +msgid "A private group text channel." +msgstr "A private group text channel." + +msgid "A category channel." +msgstr "A category channel." + +msgid "A guild news channel." +msgstr "A guild news channel." + +msgid "A guild stage voice channel." +msgstr "A guild stage voice channel." + +msgid "A news thread." +msgstr "A news thread." + +msgid "A public thread." +msgstr "A public thread." + +msgid "A private thread." +msgstr "A private thread." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "A guild directory entry, used in hub guilds, currently in experiment." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "User can only write in threads, similar functionality to a forum." + +msgid "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." +msgstr "Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "The default message type. This is the same as regular messages." +msgstr "The default message type. This is the same as regular messages." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "The system message when a user is added to a group private message or a thread." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "The system message when a user is removed from a group private message or a thread." + +msgid "The system message denoting call state, e.g. missed call, started call, etc." +msgstr "The system message denoting call state, e.g. missed call, started call, etc." + +msgid "The system message denoting that a channel's name has been changed." +msgstr "The system message denoting that a channel's name has been changed." + +msgid "The system message denoting that a channel's icon has been changed." +msgstr "The system message denoting that a channel's icon has been changed." + +msgid "The system message denoting that a pinned message has been added to a channel." +msgstr "The system message denoting that a pinned message has been added to a channel." + +msgid "The system message denoting that a new member has joined a Guild." +msgstr "The system message denoting that a new member has joined a Guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." + +msgid "The system message denoting that an announcement channel has been followed." +msgstr "The system message denoting that an announcement channel has been followed." + +msgid "The system message denoting that a member is streaming in the guild." +msgstr "The system message denoting that a member is streaming in the guild." + +msgid "The system message denoting that the guild is no longer eligible for Server Discovery." +msgstr "The system message denoting that the guild is no longer eligible for Server Discovery." + +msgid "The system message denoting that the guild has become eligible again for Server Discovery." +msgstr "The system message denoting that the guild has become eligible again for Server Discovery." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for one week." + +msgid "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." +msgstr "The system message denoting that the guild has failed to meet the Server Discovery requirements for 3 weeks in a row." + +msgid "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." +msgstr "The system message denoting that a thread has been created. This is only sent if the thread has been created from an older message. The period of time required for a message to be considered old cannot be relied upon and is up to Discord." + +msgid "The system message denoting that the author is replying to a message." +msgstr "The system message denoting that the author is replying to a message." + +msgid "The system message denoting that an application (or \"slash\") command was executed." +msgstr "The system message denoting that an application (or \"slash\") command was executed." + +msgid "The system message sent as a reminder to invite people to the guild." +msgstr "The system message sent as a reminder to invite people to the guild." + +msgid "The system message denoting the message in the thread that is the one that started the thread's conversation topic." +msgstr "The system message denoting the message in the thread that is the one that started the thread's conversation topic." + +msgid "The system message denoting that an context menu command was executed." +msgstr "The system message denoting that an context menu command was executed." + +msgid "The system message denoting an action by automod." +msgstr "The system message denoting an action by automod." + +msgid "The system message denoting a role-subscription purchase." +msgstr "The system message denoting a role-subscription purchase." + +msgid "The system message denoting an interaction premium upsell." +msgstr "The system message denoting an interaction premium upsell." + +msgid "The system message denoting that a stage event has started." +msgstr "The system message denoting that a stage event has started." + +msgid "The system message denoting that a stage event has ended." +msgstr "The system message denoting that a stage event has ended." + +msgid "The system message denoting that a stage event has a new speaker." +msgstr "The system message denoting that a stage event has a new speaker." + +msgid "The system message denoting that someone in a stage event is raising their hand." +msgstr "The system message denoting that someone in a stage event is raising their hand." + +msgid "The system message denoting that a stage event has a new topic." +msgstr "The system message denoting that a stage event has a new topic." + +msgid "The system message denoting that a member has subscribed to a guild application." +msgstr "The system message denoting that a member has subscribed to a guild application." + +msgid "Represents Discord User flags." +msgstr "Represents Discord User flags." + +msgid "The user is a Discord Employee." +msgstr "The user is a Discord Employee." + +msgid "The user is a Discord Partner." +msgstr "The user is a Discord Partner." + +msgid "The user is a HypeSquad Events member." +msgstr "The user is a HypeSquad Events member." + +msgid "The user is a Bug Hunter." +msgstr "The user is a Bug Hunter." + +msgid "The user has SMS recovery for Multi Factor Authentication enabled." +msgstr "The user has SMS recovery for Multi Factor Authentication enabled." + +msgid "The user has dismissed the Discord Nitro promotion." +msgstr "The user has dismissed the Discord Nitro promotion." + +msgid "The user is a HypeSquad Bravery member." +msgstr "The user is a HypeSquad Bravery member." + +msgid "The user is a HypeSquad Brilliance member." +msgstr "The user is a HypeSquad Brilliance member." + +msgid "The user is a HypeSquad Balance member." +msgstr "The user is a HypeSquad Balance member." + +msgid "The user is an Early Supporter." +msgstr "The user is an Early Supporter." + +msgid "The user is a Team User." +msgstr "The user is a Team User." + +msgid "Relates to partner/verification applications." +msgstr "Relates to partner/verification applications." + +msgid "The user is a system user (i.e. represents Discord officially)." +msgstr "The user is a system user (i.e. represents Discord officially)." + +msgid "The user has an unread system message." +msgstr "The user has an unread system message." + +msgid "The user is a Bug Hunter Level 2." +msgstr "The user is a Bug Hunter Level 2." + +msgid "The user was deleted for being underage." +msgstr "The user was deleted for being underage." + +msgid "The user is a Verified Bot." +msgstr "The user is a Verified Bot." + +msgid "The user is an Early Verified Bot Developer." +msgstr "The user is an Early Verified Bot Developer." + +msgid "The user is a Moderator Programs Alumni." +msgstr "The user is a Moderator Programs Alumni." + +msgid "The bot has set an interactions endpoint url." +msgstr "The bot has set an interactions endpoint url." + +msgid "The user is disabled for being a spammer." +msgstr "The user is disabled for being a spammer." + +msgid "The user is an Active Developer." +msgstr "The user is an Active Developer." + +msgid "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." +msgstr "Specifies the type of :class:`Activity`. This is used to check how to interpret the activity itself." + +msgid "An unknown activity type. This should generally not happen." +msgstr "An unknown activity type. This should generally not happen." + +msgid "A \"Playing\" activity type." +msgstr "A \"Playing\" activity type." + +msgid "A \"Streaming\" activity type." +msgstr "A \"Streaming\" activity type." + +msgid "A \"Listening\" activity type." +msgstr "A \"Listening\" activity type." + +msgid "A \"Watching\" activity type." +msgstr "A \"Watching\" activity type." + +msgid "A custom activity type." +msgstr "A custom activity type." + +msgid "A competing activity type." +msgstr "A competing activity type." + +msgid "Specifies the type of :class:`Interaction`." +msgstr "Specifies the type of :class:`Interaction`." + +msgid "Represents Discord pinging to see if the interaction response server is alive." +msgstr "Represents Discord pinging to see if the interaction response server is alive." + +msgid "Represents a slash command interaction." +msgstr "Represents a slash command interaction." + +msgid "Represents a component based interaction, i.e. using the Discord Bot UI Kit." +msgstr "Represents a component based interaction, i.e. using the Discord Bot UI Kit." + +msgid "Represents a autocomplete interaction for slash commands." +msgstr "Represents a autocomplete interaction for slash commands." + +msgid "Represents a modal based interaction." +msgstr "Represents a modal based interaction." + +msgid "Specifies the response type for the interaction." +msgstr "Specifies the response type for the interaction." + +msgid "Pongs the interaction when given a ping." +msgstr "Pongs the interaction when given a ping." + +msgid "See also :meth:`InteractionResponse.pong`" +msgstr "See also :meth:`InteractionResponse.pong`" + +msgid "Respond to the interaction with a message." +msgstr "Respond to the interaction with a message." + +msgid "See also :meth:`InteractionResponse.send_message`" +msgstr "See also :meth:`InteractionResponse.send_message`" + +msgid "Responds to the interaction with a message at a later time." +msgstr "Responds to the interaction with a message at a later time." + +msgid "See also :meth:`InteractionResponse.defer`" +msgstr "See also :meth:`InteractionResponse.defer`" + +msgid "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." +msgstr "Acknowledges the component interaction with a promise that the message will update later (though there is no need to actually update the message)." + +msgid "Responds to the interaction by editing the message." +msgstr "Responds to the interaction by editing the message." + +msgid "See also :meth:`InteractionResponse.edit_message`" +msgstr "See also :meth:`InteractionResponse.edit_message`" + +msgid "Responds to the interaction by sending the autocomplete choices." +msgstr "Responds to the interaction by sending the autocomplete choices." + +msgid "See also :meth:`InteractionResponse.send_autocomplete_result`" +msgstr "See also :meth:`InteractionResponse.send_autocomplete_result`" + +msgid "Responds to the interaction by sending a modal dialog." +msgstr "Responds to the interaction by sending a modal dialog." + +msgid "See also :meth:`InteractionResponse.send_modal`" +msgstr "See also :meth:`InteractionResponse.send_modal`" + +msgid "Represents the component type of a component." +msgstr "Represents the component type of a component." + +msgid "Represents the group component which holds different components in a row." +msgstr "Represents the group component which holds different components in a row." + +msgid "Represents a button component." +msgstr "Represents a button component." + +msgid "Represents a string select component." +msgstr "Represents a string select component." + +msgid "Use :attr:`ComponentType.string_select` instead." +msgstr "Use :attr:`ComponentType.string_select` instead." + +msgid "Represents an input_text component." +msgstr "Represents an input_text component." + +msgid "Represents a user select component." +msgstr "Represents a user select component." + +msgid "Represents a role select component." +msgstr "Represents a role select component." + +msgid "Represents a mentionable select component." +msgstr "Represents a mentionable select component." + +msgid "Represents a channel select component." +msgstr "Represents a channel select component." + +msgid "Represents the style of the button component." +msgstr "Represents the style of the button component." + +msgid "Represents a blurple button for the primary action." +msgstr "Represents a blurple button for the primary action." + +msgid "Represents a grey button for the secondary action." +msgstr "Represents a grey button for the secondary action." + +msgid "Represents a green button for a successful action." +msgstr "Represents a green button for a successful action." + +msgid "Represents a red button for a dangerous action." +msgstr "Represents a red button for a dangerous action." + +msgid "Represents a link button." +msgstr "Represents a link button." + +msgid "Represents a premium button." +msgstr "Represents a premium button." + +msgid "An alias for :attr:`primary`." +msgstr "An alias for :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "An alias for :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "An alias for :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "An alias for :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "An alias for :attr:`link`." + +msgid "Represents the style of the input text component." +msgstr "Represents the style of the input text component." + +msgid "Represents a single-line input text field." +msgstr "Represents a single-line input text field." + +msgid "Represents a multi-line input text field." +msgstr "Represents a multi-line input text field." + +msgid "An alias for :attr:`short`." +msgstr "An alias for :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "An alias for :attr:`long`." + +msgid "Specifies the region a voice server belongs to." +msgstr "Specifies the region a voice server belongs to." + +msgid "The Amsterdam region." +msgstr "The Amsterdam region." + +msgid "The Brazil region." +msgstr "The Brazil region." + +msgid "The Dubai region." +msgstr "The Dubai region." + +msgid "The EU Central region." +msgstr "The EU Central region." + +msgid "The EU West region." +msgstr "The EU West region." + +msgid "The Europe region." +msgstr "The Europe region." + +msgid "The Frankfurt region." +msgstr "The Frankfurt region." + +msgid "The Hong Kong region." +msgstr "The Hong Kong region." + +msgid "The India region." +msgstr "The India region." + +msgid "The Japan region." +msgstr "The Japan region." + +msgid "The London region." +msgstr "The London region." + +msgid "The Russia region." +msgstr "The Russia region." + +msgid "The Singapore region." +msgstr "The Singapore region." + +msgid "The South Africa region." +msgstr "The South Africa region." + +msgid "The South Korea region." +msgstr "The South Korea region." + +msgid "The Sydney region." +msgstr "The Sydney region." + +msgid "The US Central region." +msgstr "The US Central region." + +msgid "The US East region." +msgstr "The US East region." + +msgid "The US South region." +msgstr "The US South region." + +msgid "The US West region." +msgstr "The US West region." + +msgid "The Amsterdam region for VIP guilds." +msgstr "The Amsterdam region for VIP guilds." + +msgid "The US East region for VIP guilds." +msgstr "The US East region for VIP guilds." + +msgid "The US West region for VIP guilds." +msgstr "The US West region for VIP guilds." + +msgid "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." +msgstr "Specifies a :class:`Guild`\\'s verification level, which is the criteria in which a member must meet before being able to send messages to the guild." + +msgid "Checks if two verification levels are equal." +msgstr "Checks if two verification levels are equal." + +msgid "Checks if two verification levels are not equal." +msgstr "Checks if two verification levels are not equal." + +msgid "Checks if a verification level is higher than another." +msgstr "Checks if a verification level is higher than another." + +msgid "Checks if a verification level is lower than another." +msgstr "Checks if a verification level is lower than another." + +msgid "Checks if a verification level is higher or equal to another." +msgstr "Checks if a verification level is higher or equal to another." + +msgid "Checks if a verification level is lower or equal to another." +msgstr "Checks if a verification level is lower or equal to another." + +msgid "No criteria set." +msgstr "No criteria set." + +msgid "Member must have a verified email on their Discord account." +msgstr "Member must have a verified email on their Discord account." + +msgid "Member must have a verified email and be registered on Discord for more than five minutes." +msgstr "Member must have a verified email and be registered on Discord for more than five minutes." + +msgid "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." +msgstr "Member must have a verified email, be registered on Discord for more than five minutes, and be a member of the guild itself for more than ten minutes." + +msgid "Member must have a verified phone on their Discord account." +msgstr "Member must have a verified phone on their Discord account." + +msgid "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." +msgstr "Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default." + +msgid "Checks if two notification levels are equal." +msgstr "Checks if two notification levels are equal." + +msgid "Checks if two notification levels are not equal." +msgstr "Checks if two notification levels are not equal." + +msgid "Checks if a notification level is higher than another." +msgstr "Checks if a notification level is higher than another." + +msgid "Checks if a notification level is lower than another." +msgstr "Checks if a notification level is lower than another." + +msgid "Checks if a notification level is higher or equal to another." +msgstr "Checks if a notification level is higher or equal to another." + +msgid "Checks if a notification level is lower or equal to another." +msgstr "Checks if a notification level is lower or equal to another." + +msgid "Members receive notifications for every message regardless of them being mentioned." +msgstr "Members receive notifications for every message regardless of them being mentioned." + +msgid "Members receive notifications for messages they are mentioned in." +msgstr "Members receive notifications for messages they are mentioned in." + +msgid "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." +msgstr "Specifies a :class:`Guild`\\'s explicit content filter, which is the machine learning algorithms that Discord uses to detect if an image contains pornography or otherwise explicit content." + +msgid "Checks if two content filter levels are equal." +msgstr "Checks if two content filter levels are equal." + +msgid "Checks if two content filter levels are not equal." +msgstr "Checks if two content filter levels are not equal." + +msgid "Checks if a content filter level is higher than another." +msgstr "Checks if a content filter level is higher than another." + +msgid "Checks if a content filter level is lower than another." +msgstr "Checks if a content filter level is lower than another." + +msgid "Checks if a content filter level is higher or equal to another." +msgstr "Checks if a content filter level is higher or equal to another." + +msgid "Checks if a content filter level is lower or equal to another." +msgstr "Checks if a content filter level is lower or equal to another." + +msgid "The guild does not have the content filter enabled." +msgstr "The guild does not have the content filter enabled." + +msgid "The guild has the content filter enabled for members without a role." +msgstr "The guild has the content filter enabled for members without a role." + +msgid "The guild has the content filter enabled for every member." +msgstr "The guild has the content filter enabled for every member." + +msgid "Specifies a :class:`Member` 's status." +msgstr "Specifies a :class:`Member` 's status." + +msgid "The member is online." +msgstr "The member is online." + +msgid "The member is offline." +msgstr "The member is offline." + +msgid "The member is idle." +msgstr "The member is idle." + +msgid "The member is \"Do Not Disturb\"." +msgstr "The member is \"Do Not Disturb\"." + +msgid "An alias for :attr:`dnd`." +msgstr "An alias for :attr:`dnd`." + +msgid "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." +msgstr "The member is \"invisible\". In reality, this is only used in sending a presence a la :meth:`Client.change_presence`. When you receive a user's presence this will be :attr:`offline` instead." + +msgid "The member is streaming." +msgstr "The member is streaming." + +msgid "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." +msgstr "Represents the type of action being done for a :class:`AuditLogEntry`\\, which is retrievable via :meth:`Guild.audit_logs`." + +msgid "The guild has updated. Things that trigger this include:" +msgstr "The guild has updated. Things that trigger this include:" + +msgid "Changing the guild vanity URL" +msgstr "Changing the guild vanity URL" + +msgid "Changing the guild invite splash" +msgstr "Changing the guild invite splash" + +msgid "Changing the guild AFK channel or timeout" +msgstr "Changing the guild AFK channel or timeout" + +msgid "Changing the guild voice server region" +msgstr "Changing the guild voice server region" + +msgid "Changing the guild icon, banner, or discovery splash" +msgstr "Changing the guild icon, banner, or discovery splash" + +msgid "Changing the guild moderation settings" +msgstr "Changing the guild moderation settings" + +msgid "Changing things related to the guild widget" +msgstr "Changing things related to the guild widget" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Guild`." + +msgid "Possible attributes for :class:`AuditLogDiff`:" +msgstr "Possible attributes for :class:`AuditLogDiff`:" + +msgid ":attr:`~AuditLogDiff.afk_channel`" +msgstr ":attr:`~AuditLogDiff.afk_channel`" + +msgid ":attr:`~AuditLogDiff.system_channel`" +msgstr ":attr:`~AuditLogDiff.system_channel`" + +msgid ":attr:`~AuditLogDiff.afk_timeout`" +msgstr ":attr:`~AuditLogDiff.afk_timeout`" + +msgid ":attr:`~AuditLogDiff.default_message_notifications`" +msgstr ":attr:`~AuditLogDiff.default_message_notifications`" + +msgid ":attr:`~AuditLogDiff.explicit_content_filter`" +msgstr ":attr:`~AuditLogDiff.explicit_content_filter`" + +msgid ":attr:`~AuditLogDiff.mfa_level`" +msgstr ":attr:`~AuditLogDiff.mfa_level`" + +msgid ":attr:`~AuditLogDiff.name`" +msgstr ":attr:`~AuditLogDiff.name`" + +msgid ":attr:`~AuditLogDiff.owner`" +msgstr ":attr:`~AuditLogDiff.owner`" + +msgid ":attr:`~AuditLogDiff.splash`" +msgstr ":attr:`~AuditLogDiff.splash`" + +msgid ":attr:`~AuditLogDiff.discovery_splash`" +msgstr ":attr:`~AuditLogDiff.discovery_splash`" + +msgid ":attr:`~AuditLogDiff.icon`" +msgstr ":attr:`~AuditLogDiff.icon`" + +msgid ":attr:`~AuditLogDiff.banner`" +msgstr ":attr:`~AuditLogDiff.banner`" + +msgid ":attr:`~AuditLogDiff.vanity_url_code`" +msgstr ":attr:`~AuditLogDiff.vanity_url_code`" + +msgid "A new channel was created." +msgstr "A new channel was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is either a :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after`." + +msgid ":attr:`~AuditLogDiff.type`" +msgstr ":attr:`~AuditLogDiff.type`" + +msgid ":attr:`~AuditLogDiff.overwrites`" +msgstr ":attr:`~AuditLogDiff.overwrites`" + +msgid "A channel was updated. Things that trigger this include:" +msgstr "A channel was updated. Things that trigger this include:" + +msgid "The channel name or topic was changed" +msgstr "The channel name or topic was changed" + +msgid "The channel bitrate was changed" +msgstr "The channel bitrate was changed" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`abc.GuildChannel` or :class:`Object` with an ID." + +msgid "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." +msgstr "A more filled out object in the :class:`Object` case can be found by using :attr:`~AuditLogEntry.after` or :attr:`~AuditLogEntry.before`." + +msgid ":attr:`~AuditLogDiff.position`" +msgstr ":attr:`~AuditLogDiff.position`" + +msgid ":attr:`~AuditLogDiff.topic`" +msgstr ":attr:`~AuditLogDiff.topic`" + +msgid ":attr:`~AuditLogDiff.bitrate`" +msgstr ":attr:`~AuditLogDiff.bitrate`" + +msgid ":attr:`~AuditLogDiff.rtc_region`" +msgstr ":attr:`~AuditLogDiff.rtc_region`" + +msgid ":attr:`~AuditLogDiff.video_quality_mode`" +msgstr ":attr:`~AuditLogDiff.video_quality_mode`" + +msgid ":attr:`~AuditLogDiff.default_auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.default_auto_archive_duration`" + +msgid "A channel was deleted." +msgstr "A channel was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with an ID." + +msgid "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." +msgstr "A more filled out object can be found by using the :attr:`~AuditLogEntry.before` object." + +msgid "A channel permission overwrite was created." +msgstr "A channel permission overwrite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is either a :class:`Role` or :class:`Member`. If the object is not found then it is a :class:`Object` with an ID being filled, a name, and a ``type`` attribute set to either ``'role'`` or ``'member'`` to help dictate what type of ID it is." + +msgid ":attr:`~AuditLogDiff.deny`" +msgstr ":attr:`~AuditLogDiff.deny`" + +msgid ":attr:`~AuditLogDiff.allow`" +msgstr ":attr:`~AuditLogDiff.allow`" + +msgid ":attr:`~AuditLogDiff.id`" +msgstr ":attr:`~AuditLogDiff.id`" + +msgid "A channel permission overwrite was changed, this is typically when the permission values change." +msgstr "A channel permission overwrite was changed, this is typically when the permission values change." + +msgid "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." +msgstr "See :attr:`overwrite_create` for more information on how the :attr:`~AuditLogEntry.target` and :attr:`~AuditLogEntry.extra` fields are set." + +msgid "A channel permission overwrite was deleted." +msgstr "A channel permission overwrite was deleted." + +msgid "A member was kicked." +msgstr "A member was kicked." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got kicked." + +msgid "When this is the action, :attr:`~AuditLogEntry.changes` is empty." +msgstr "When this is the action, :attr:`~AuditLogEntry.changes` is empty." + +msgid "A member prune was triggered." +msgstr "A member prune was triggered." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is set to ``None``." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with two attributes:" + +msgid "``delete_members_days``: An integer specifying how far the prune was." +msgstr "``delete_members_days``: An integer specifying how far the prune was." + +msgid "``members_removed``: An integer specifying how many members were removed." +msgstr "``members_removed``: An integer specifying how many members were removed." + +msgid "A member was banned." +msgstr "A member was banned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got banned." + +msgid "A member was unbanned." +msgstr "A member was unbanned." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`User` who got unbanned." + +msgid "A member has updated. This triggers in the following situations:" +msgstr "A member has updated. This triggers in the following situations:" + +msgid "A nickname was changed" +msgstr "A nickname was changed" + +msgid "They were server muted or deafened (or it was undone)" +msgstr "They were server muted or deafened (or it was undone)" + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got updated." + +msgid ":attr:`~AuditLogDiff.nick`" +msgstr ":attr:`~AuditLogDiff.nick`" + +msgid ":attr:`~AuditLogDiff.mute`" +msgstr ":attr:`~AuditLogDiff.mute`" + +msgid ":attr:`~AuditLogDiff.deaf`" +msgstr ":attr:`~AuditLogDiff.deaf`" + +msgid "A member's role has been updated. This triggers when a member either gains a role or loses a role." +msgstr "A member's role has been updated. This triggers when a member either gains a role or loses a role." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who got the role." + +msgid ":attr:`~AuditLogDiff.roles`" +msgstr ":attr:`~AuditLogDiff.roles`" + +msgid "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." +msgstr "A member's voice channel has been updated. This triggers when a member is moved to a different voice channel." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the members were moved." + +msgid "``count``: An integer specifying how many members were moved." +msgstr "``count``: An integer specifying how many members were moved." + +msgid "A member's voice state has changed. This triggers when a member is force disconnected from voice." +msgstr "A member's voice state has changed. This triggers when a member is force disconnected from voice." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.extra` is set to an unspecified proxy object with one attribute:" + +msgid "``count``: An integer specifying how many members were disconnected." +msgstr "``count``: An integer specifying how many members were disconnected." + +msgid "A bot was added to the guild." +msgstr "A bot was added to the guild." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` which was added to the guild." + +msgid "A new role was created." +msgstr "A new role was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Role` or a :class:`Object` with the ID." + +msgid ":attr:`~AuditLogDiff.colour`" +msgstr ":attr:`~AuditLogDiff.colour`" + +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr ":attr:`~AuditLogDiff.mentionable`" + +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr ":attr:`~AuditLogDiff.hoist`" + +msgid ":attr:`~AuditLogDiff.permissions`" +msgstr ":attr:`~AuditLogDiff.permissions`" + +msgid "A role was updated. This triggers in the following situations:" +msgstr "A role was updated. This triggers in the following situations:" + +msgid "The name has changed" +msgstr "The name has changed" + +msgid "The permissions have changed" +msgstr "The permissions have changed" + +msgid "The colour has changed" +msgstr "The colour has changed" + +msgid "Its hoist/mentionable state has changed" +msgstr "Its hoist/mentionable state has changed" + +msgid "A role was deleted." +msgstr "A role was deleted." + +msgid "An invite was created." +msgstr "An invite was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was created." + +msgid ":attr:`~AuditLogDiff.max_age`" +msgstr ":attr:`~AuditLogDiff.max_age`" + +msgid ":attr:`~AuditLogDiff.code`" +msgstr ":attr:`~AuditLogDiff.code`" + +msgid ":attr:`~AuditLogDiff.temporary`" +msgstr ":attr:`~AuditLogDiff.temporary`" + +msgid ":attr:`~AuditLogDiff.inviter`" +msgstr ":attr:`~AuditLogDiff.inviter`" + +msgid ":attr:`~AuditLogDiff.channel`" +msgstr ":attr:`~AuditLogDiff.channel`" + +msgid ":attr:`~AuditLogDiff.uses`" +msgstr ":attr:`~AuditLogDiff.uses`" + +msgid ":attr:`~AuditLogDiff.max_uses`" +msgstr ":attr:`~AuditLogDiff.max_uses`" + +msgid "An invite was updated." +msgstr "An invite was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was updated." + +msgid "An invite was deleted." +msgstr "An invite was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Invite` that was deleted." + +msgid "A webhook was created." +msgstr "A webhook was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the webhook ID." + +msgid ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" +msgstr ":attr:`~AuditLogDiff.type` (always set to ``1`` if so)" + +msgid "A webhook was updated. This trigger in the following situations:" +msgstr "A webhook was updated. This trigger in the following situations:" + +msgid "The webhook name changed" +msgstr "The webhook name changed" + +msgid "The webhook channel changed" +msgstr "The webhook channel changed" + +msgid ":attr:`~AuditLogDiff.avatar`" +msgstr ":attr:`~AuditLogDiff.avatar`" + +msgid "A webhook was deleted." +msgstr "A webhook was deleted." + +msgid "An emoji was created." +msgstr "An emoji was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Emoji` or :class:`Object` with the emoji ID." + +msgid "An emoji was updated. This triggers when the name has changed." +msgstr "An emoji was updated. This triggers when the name has changed." + +msgid "An emoji was deleted." +msgstr "An emoji was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the emoji ID." + +msgid "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." +msgstr "A message was deleted by a moderator. Note that this only triggers if the message was deleted by someone other than the author." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message deleted." + +msgid "``count``: An integer specifying how many messages were deleted." +msgstr "``count``: An integer specifying how many messages were deleted." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message got deleted." + +msgid "Messages were bulk deleted by a moderator." +msgstr "Messages were bulk deleted by a moderator." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`TextChannel` or :class:`Object` with the ID of the channel that was purged." + +msgid "A message was pinned in a channel." +msgstr "A message was pinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message pinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was pinned." + +msgid "``message_id``: the ID of the message which was pinned." +msgstr "``message_id``: the ID of the message which was pinned." + +msgid "A message was unpinned in a channel." +msgstr "A message was unpinned in a channel." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Member` or :class:`User` who had their message unpinned." + +msgid "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." +msgstr "``channel``: A :class:`TextChannel` or :class:`Object` with the channel ID where the message was unpinned." + +msgid "``message_id``: the ID of the message which was unpinned." +msgstr "``message_id``: the ID of the message which was unpinned." + +msgid "A guild integration was created." +msgstr "A guild integration was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was created." + +msgid "A guild integration was updated." +msgstr "A guild integration was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was updated." + +msgid "A guild integration was deleted." +msgstr "A guild integration was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Object` with the integration ID of the integration which was deleted." + +msgid "A stage instance was started." +msgstr "A stage instance was started." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was created." + +msgid ":attr:`~AuditLogDiff.privacy_level`" +msgstr ":attr:`~AuditLogDiff.privacy_level`" + +msgid "A stage instance was updated." +msgstr "A stage instance was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`StageInstance` or :class:`Object` with the ID of the stage instance which was updated." + +msgid "A stage instance was ended." +msgstr "A stage instance was ended." + +msgid "A sticker was created." +msgstr "A sticker was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildSticker` or :class:`Object` with the ID of the sticker which was updated." + +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr ":attr:`~AuditLogDiff.emoji`" + +msgid ":attr:`~AuditLogDiff.format_type`" +msgstr ":attr:`~AuditLogDiff.format_type`" + +msgid ":attr:`~AuditLogDiff.description`" +msgstr ":attr:`~AuditLogDiff.description`" + +msgid ":attr:`~AuditLogDiff.available`" +msgstr ":attr:`~AuditLogDiff.available`" + +msgid "A sticker was updated." +msgstr "A sticker was updated." + +msgid "A sticker was deleted." +msgstr "A sticker was deleted." + +msgid "A scheduled event was created." +msgstr "A scheduled event was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`ScheduledEvent` or :class:`Object` with the ID of the thread which was deleted." + +msgid ":attr:`~discord.ScheduledEvent.location`" +msgstr ":attr:`~discord.ScheduledEvent.location`" + +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr ":attr:`~discord.ScheduledEvent.status`" + +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr ":attr:`~discord.ScheduledEventLocation.type`" + +msgid ":attr:`~discord.ScheduledEvent.image`" +msgstr ":attr:`~discord.ScheduledEvent.image`" + +msgid "A scheduled event was updated." +msgstr "A scheduled event was updated." + +msgid "A scheduled event was deleted." +msgstr "A scheduled event was deleted." + +msgid "A thread was created." +msgstr "A thread was created." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was created." + +msgid ":attr:`~AuditLogDiff.archived`" +msgstr ":attr:`~AuditLogDiff.archived`" + +msgid ":attr:`~AuditLogDiff.locked`" +msgstr ":attr:`~AuditLogDiff.locked`" + +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr ":attr:`~AuditLogDiff.auto_archive_duration`" + +msgid ":attr:`~AuditLogDiff.invitable`" +msgstr ":attr:`~AuditLogDiff.invitable`" + +msgid "A thread was updated." +msgstr "A thread was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was updated." + +msgid "A thread was deleted." +msgstr "A thread was deleted." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`Thread` or :class:`Object` with the ID of the thread which was deleted." + +msgid "An application command's permissions were updated." +msgstr "An application command's permissions were updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is an :class:`Object` with the ID of the command that had it's permissions edited." + +msgid ":attr:`~AuditLogDiff.command_id`" +msgstr ":attr:`~AuditLogDiff.command_id`" + +msgid "A guild auto moderation rule was created." +msgstr "A guild auto moderation rule was created." + +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr ":attr:`~AuditLogDiff.enabled`" + +msgid ":attr:`~AuditLogDiff.trigger_type`" +msgstr ":attr:`~AuditLogDiff.trigger_type`" + +msgid ":attr:`~AuditLogDiff.event_type`" +msgstr ":attr:`~AuditLogDiff.event_type`" + +msgid ":attr:`~AuditLogDiff.trigger_metadata`" +msgstr ":attr:`~AuditLogDiff.trigger_metadata`" + +msgid ":attr:`~AuditLogDiff.actions`" +msgstr ":attr:`~AuditLogDiff.actions`" + +msgid ":attr:`~AuditLogDiff.exempt_roles`" +msgstr ":attr:`~AuditLogDiff.exempt_roles`" + +msgid ":attr:`~AuditLogDiff.exempt_channels`" +msgstr ":attr:`~AuditLogDiff.exempt_channels`" + +msgid "A guild auto moderation rule was updated." +msgstr "A guild auto moderation rule was updated." + +msgid "A guild auto moderation rule was deleted." +msgstr "A guild auto moderation rule was deleted." + +msgid "A message was blocked by auto moderation." +msgstr "A message was blocked by auto moderation." + +msgid "A message was flagged by auto moderation." +msgstr "A message was flagged by auto moderation." + +msgid "A member was timed out by auto moderation." +msgstr "A member was timed out by auto moderation." + +msgid "A creator monetization request was created." +msgstr "A creator monetization request was created." + +msgid "The creator monetization terms were accepted." +msgstr "The creator monetization terms were accepted." + +msgid "A voice channel status was updated." +msgstr "A voice channel status was updated." + +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`VoiceChannel` or :class:`Object` with the ID of the voice channel which was updated." + +msgid ":attr:`~AuditLogDiff.status`" +msgstr ":attr:`~AuditLogDiff.status`" + +msgid "A voice channel status was deleted." +msgstr "A voice channel status was deleted." + +msgid "Represents the category that the :class:`AuditLogAction` belongs to." +msgstr "Represents the category that the :class:`AuditLogAction` belongs to." + +msgid "This can be retrieved via :attr:`AuditLogEntry.category`." +msgstr "This can be retrieved via :attr:`AuditLogEntry.category`." + +msgid "The action is the creation of something." +msgstr "The action is the creation of something." + +msgid "The action is the deletion of something." +msgstr "The action is the deletion of something." + +msgid "The action is the update of something." +msgstr "The action is the update of something." + +msgid "Represents the membership state of a team member retrieved through :func:`Client.application_info`." +msgstr "Represents the membership state of a team member retrieved through :func:`Client.application_info`." + +msgid "Represents an invited member." +msgstr "Represents an invited member." + +msgid "Represents a member currently in the team." +msgstr "Represents a member currently in the team." + +msgid "Represents the type of webhook that can be received." +msgstr "Represents the type of webhook that can be received." + +msgid "Represents a webhook that can post messages to channels with a token." +msgstr "Represents a webhook that can post messages to channels with a token." + +msgid "Represents a webhook that is internally managed by Discord, used for following channels." +msgstr "Represents a webhook that is internally managed by Discord, used for following channels." + +msgid "Represents a webhook that is used for interactions or applications." +msgstr "Represents a webhook that is used for interactions or applications." + +msgid "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." +msgstr "Represents the behaviour the :class:`Integration` should perform when a user's subscription has finished." + +msgid "There is an alias for this called ``ExpireBehavior``." +msgstr "There is an alias for this called ``ExpireBehavior``." + +msgid "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." +msgstr "This will remove the :attr:`StreamIntegration.role` from the user when their subscription is finished." + +msgid "This will kick the user when their subscription is finished." +msgstr "This will kick the user when their subscription is finished." + +msgid "Represents the default avatar of a Discord :class:`User`" +msgstr "Represents the default avatar of a Discord :class:`User`" + +msgid "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" +msgstr "Represents the default avatar with the color blurple. See also :attr:`Colour.blurple`" + +msgid "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" +msgstr "Represents the default avatar with the color grey. See also :attr:`Colour.greyple`" + +msgid "An alias for :attr:`grey`." +msgstr "An alias for :attr:`grey`." + +msgid "Represents the default avatar with the color green. See also :attr:`Colour.green`" +msgstr "Represents the default avatar with the color green. See also :attr:`Colour.green`" + +msgid "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" +msgstr "Represents the default avatar with the color orange. See also :attr:`Colour.orange`" + +msgid "Represents the default avatar with the color red. See also :attr:`Colour.red`" +msgstr "Represents the default avatar with the color red. See also :attr:`Colour.red`" + +msgid "Represents the type of sticker." +msgstr "Represents the type of sticker." + +msgid "Represents a standard sticker that all Nitro users can use." +msgstr "Represents a standard sticker that all Nitro users can use." + +msgid "Represents a custom sticker created in a guild." +msgstr "Represents a custom sticker created in a guild." + +msgid "Represents the type of sticker images." +msgstr "Represents the type of sticker images." + +msgid "Represents a sticker with a png image." +msgstr "Represents a sticker with a png image." + +msgid "Represents a sticker with an apng image." +msgstr "Represents a sticker with an apng image." + +msgid "Represents a sticker with a lottie image." +msgstr "Represents a sticker with a lottie image." + +msgid "Represents a sticker with a gif image." +msgstr "Represents a sticker with a gif image." + +msgid "Represents the invite type for voice channel invites." +msgstr "Represents the invite type for voice channel invites." + +msgid "The invite doesn't target anyone or anything." +msgstr "The invite doesn't target anyone or anything." + +msgid "A stream invite that targets a user." +msgstr "A stream invite that targets a user." + +msgid "A invite that targets an embedded application." +msgstr "A invite that targets an embedded application." + +msgid "Note that your bot won't be verified if you provide users access to this" +msgstr "Note that your bot won't be verified if you provide users access to this" + +msgid "Represents the camera video quality mode for voice channel participants." +msgstr "Represents the camera video quality mode for voice channel participants." + +msgid "Represents auto camera video quality." +msgstr "Represents auto camera video quality." + +msgid "Represents full camera video quality." +msgstr "Represents full camera video quality." + +msgid "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents a stage instance's privacy level. Stage event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "The stage instance can only be joined by members of the guild." +msgstr "The stage instance can only be joined by members of the guild." + +msgid "Alias for :attr:`.closed`" +msgstr "Alias for :attr:`.closed`" + +msgid "Represents the NSFW level of a guild." +msgstr "Represents the NSFW level of a guild." + +msgid "Checks if two NSFW levels are equal." +msgstr "Checks if two NSFW levels are equal." + +msgid "Checks if two NSFW levels are not equal." +msgstr "Checks if two NSFW levels are not equal." + +msgid "Checks if a NSFW level is higher than another." +msgstr "Checks if a NSFW level is higher than another." + +msgid "Checks if a NSFW level is lower than another." +msgstr "Checks if a NSFW level is lower than another." + +msgid "Checks if a NSFW level is higher or equal to another." +msgstr "Checks if a NSFW level is higher or equal to another." + +msgid "Checks if a NSFW level is lower or equal to another." +msgstr "Checks if a NSFW level is lower or equal to another." + +msgid "The guild has not been categorised yet." +msgstr "The guild has not been categorised yet." + +msgid "The guild contains NSFW content." +msgstr "The guild contains NSFW content." + +msgid "The guild does not contain any NSFW content." +msgstr "The guild does not contain any NSFW content." + +msgid "The guild may contain NSFW content." +msgstr "The guild may contain NSFW content." + +msgid "Represents an embedded activity application." +msgstr "Represents an embedded activity application." + +msgid "Some might be boost-only or gated." +msgstr "Some might be boost-only or gated." + +msgid "Discord said that they won't verify bots who gives access to embedded activities." +msgstr "Discord said that they won't verify bots who gives access to embedded activities." + +msgid "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." +msgstr "Read more here: https://discord.com/channels/613425648685547541/697236247739105340/901153332075315321." + +msgid "Represents the embedded application Ask Away." +msgstr "Represents the embedded application Ask Away." + +msgid "Represents the embedded application Awkword." +msgstr "Represents the embedded application Awkword." + +msgid "This activity has been removed." +msgstr "This activity has been removed." + +msgid "Development version of :attr:`.awkword`." +msgstr "Development version of :attr:`.awkword`." + +msgid "Represents the embedded application Bash Out." +msgstr "Represents the embedded application Bash Out." + +msgid "Represents the embedded application Betrayal.io." +msgstr "Represents the embedded application Betrayal.io." + +msgid "Represents the embedded application Blazing 8s." +msgstr "Represents the embedded application Blazing 8s." + +msgid "Development version of :attr:`.blazing_8s`." +msgstr "Development version of :attr:`.blazing_8s`." + +msgid "QA version of :attr:`.blazing_8s`." +msgstr "QA version of :attr:`.blazing_8s`." + +msgid "Staging version of :attr:`.blazing_8s`." +msgstr "Staging version of :attr:`.blazing_8s`." + +msgid "Represents the embedded application Bobble League." +msgstr "Represents the embedded application Bobble League." + +msgid "Represents the embedded application Checkers in the Park." +msgstr "Represents the embedded application Checkers in the Park." + +msgid "Development version of :attr:`.checkers_in_the_park`." +msgstr "Development version of :attr:`.checkers_in_the_park`." + +msgid "QA version of :attr:`.checkers_in_the_park`." +msgstr "QA version of :attr:`.checkers_in_the_park`." + +msgid "Staging version of :attr:`.checkers_in_the_park`." +msgstr "Staging version of :attr:`.checkers_in_the_park`." + +msgid "Represents the embedded application Chess in the Park." +msgstr "Represents the embedded application Chess in the Park." + +msgid "Development version of :attr:`.chess_in_the_park`." +msgstr "Development version of :attr:`.chess_in_the_park`." + +msgid "QA version of :attr:`.chess_in_the_park`." +msgstr "QA version of :attr:`.chess_in_the_park`." + +msgid "Staging version of :attr:`.chess_in_the_park`." +msgstr "Staging version of :attr:`.chess_in_the_park`." + +msgid "Represents the embedded application Decoders Development." +msgstr "Represents the embedded application Decoders Development." + +msgid "Represents the embedded application Doodle Crew." +msgstr "Represents the embedded application Doodle Crew." + +msgid "Development version of :attr:`.doodle_crew`." +msgstr "Development version of :attr:`.doodle_crew`." + +msgid "Represents the embedded application Fishington.io." +msgstr "Represents the embedded application Fishington.io." + +msgid "Represents the embedded application Gartic Phone." +msgstr "Represents the embedded application Gartic Phone." + +msgid "Represents the embedded application Jamspace." +msgstr "Represents the embedded application Jamspace." + +msgid "Represents the embedded application Know What I Meme." +msgstr "Represents the embedded application Know What I Meme." + +msgid "Represents the embedded application Land.io." +msgstr "Represents the embedded application Land.io." + +msgid "Represents the embedded application Letter League." +msgstr "Represents the embedded application Letter League." + +msgid "Development version of :attr:`.letter_league`." +msgstr "Development version of :attr:`.letter_league`." + +msgid "Represents the embedded application Poker Night." +msgstr "Represents the embedded application Poker Night." + +msgid "Development version of :attr:`.poker_night`." +msgstr "Development version of :attr:`.poker_night`." + +msgid "QA version of :attr:`.poker_night`." +msgstr "QA version of :attr:`.poker_night`." + +msgid "Staging version of :attr:`.poker_night`." +msgstr "Staging version of :attr:`.poker_night`." + +msgid "Represents the embedded application Putt Party." +msgstr "Represents the embedded application Putt Party." + +msgid "Development version of :attr:`.putt_party`." +msgstr "Development version of :attr:`.putt_party`." + +msgid "QA version of :attr:`.putt_party`." +msgstr "QA version of :attr:`.putt_party`." + +msgid "Staging version of :attr:`.putt_party`." +msgstr "Staging version of :attr:`.putt_party`." + +msgid "Represents the embedded application Putts." +msgstr "Represents the embedded application Putts." + +msgid "Represents the embedded application Sketch Heads." +msgstr "Represents the embedded application Sketch Heads." + +msgid "Development version of :attr:`.sketch_heads`." +msgstr "Development version of :attr:`.sketch_heads`." + +msgid "Represents the embedded application Sketchy Artist." +msgstr "Represents the embedded application Sketchy Artist." + +msgid "Development version of :attr:`.sketchy_artist`." +msgstr "Development version of :attr:`.sketchy_artist`." + +msgid "Represents the embedded application Spell Cast." +msgstr "Represents the embedded application Spell Cast." + +msgid "Staging version of :attr:`.spell_cast`." +msgstr "Staging version of :attr:`.spell_cast`." + +msgid "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." +msgstr "Same as :attr:`~EmbeddedActivity.youtube_together` with remote feature which allows guild admins to limit the playlist access." + +msgid "Development version of :attr:`.watch_together`." +msgstr "Development version of :attr:`.watch_together`." + +msgid "Represents the embedded application word snacks." +msgstr "Represents the embedded application word snacks." + +msgid "Development version of :attr:`.word_snacks`." +msgstr "Development version of :attr:`.word_snacks`." + +msgid "Represents the embedded application Youtube Together." +msgstr "Represents the embedded application Youtube Together." + +msgid "Represents the status of a scheduled event." +msgstr "Represents the status of a scheduled event." + +msgid "The scheduled event hasn't started or been canceled yet." +msgstr "The scheduled event hasn't started or been canceled yet." + +msgid "The scheduled event is in progress." +msgstr "The scheduled event is in progress." + +msgid "The scheduled event is over." +msgstr "The scheduled event is over." + +msgid "The scheduled event has been canceled before it can start." +msgstr "The scheduled event has been canceled before it can start." + +msgid "Alias to :attr:`canceled`." +msgstr "Alias to :attr:`canceled`." + +msgid "Represents a scheduled event location type (otherwise known as the entity type on the API)." +msgstr "Represents a scheduled event location type (otherwise known as the entity type on the API)." + +msgid "Represents a scheduled event that is happening in a :class:`StageChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`StageChannel`." + +msgid "Represents a scheduled event that is happening in a :class:`VoiceChannel`." +msgstr "Represents a scheduled event that is happening in a :class:`VoiceChannel`." + +msgid "Represents a generic location as a :class:`str`." +msgstr "Represents a generic location as a :class:`str`." + +msgid "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." +msgstr "Represents the privacy level of a scheduled event. Scheduled event privacy levels can only have 1 possible value at the moment so this shouldn't really be used." + +msgid "Represents a scheduled event that is only available to members inside the guild." +msgstr "Represents a scheduled event that is only available to members inside the guild." + +msgid "Represents an application role connection metadata type." +msgstr "Represents an application role connection metadata type." + +msgid "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." +msgstr "Each metadata type offers a comparison operation that allows guilds to configure role requirements based on metadata values stored by the bot. Bots specify a ``metadata value`` for each user and guilds specify the required ``guild's configured value`` within the guild role settings." + +msgid "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is less than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is greater than or equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``)." + +msgid "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is less than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." +msgstr "The metadata value (``datetime``) is greater than or equal to the guild's configured value (``integer``; the number of days before the current date)." + +msgid "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is equal to the guild's configured value (``integer``; 1)." + +msgid "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." +msgstr "The metadata value (``integer``) is not equal to the guild's configured value (``integer``; 1)." + +msgid "Represents an AutoMod trigger type." +msgstr "Represents an AutoMod trigger type." + +msgid "Represents a keyword rule trigger, which are customizable by a guild." +msgstr "Represents a keyword rule trigger, which are customizable by a guild." + +msgid "Possible attributes for :class:`AutoModTriggerMetadata`:" +msgstr "Possible attributes for :class:`AutoModTriggerMetadata`:" + +msgid ":attr:`~AutoModTriggerMetadata.keyword_filter`" +msgstr ":attr:`~AutoModTriggerMetadata.keyword_filter`" + +msgid ":attr:`~AutoModTriggerMetadata.regex_patterns`" +msgstr ":attr:`~AutoModTriggerMetadata.regex_patterns`" + +msgid ":attr:`~AutoModTriggerMetadata.allow_list`" +msgstr ":attr:`~AutoModTriggerMetadata.allow_list`" + +msgid "Represents a preset keyword rule trigger." +msgstr "Represents a preset keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.presets`" +msgstr ":attr:`~AutoModTriggerMetadata.presets`" + +msgid "Represents the spam rule trigger." +msgstr "Represents the spam rule trigger." + +msgid "There are no possible attributes for :class:`AutoModTriggerMetadata`." +msgstr "There are no possible attributes for :class:`AutoModTriggerMetadata`." + +msgid "Represents a mention spam keyword rule trigger." +msgstr "Represents a mention spam keyword rule trigger." + +msgid ":attr:`~AutoModTriggerMetadata.mention_total_limit`" +msgstr ":attr:`~AutoModTriggerMetadata.mention_total_limit`" + +msgid "Represents a harmful link rule trigger." +msgstr "Represents a harmful link rule trigger." + +msgid "Removed by Discord and merged into :attr:`spam`." +msgstr "Removed by Discord and merged into :attr:`spam`." + +msgid "Represents an AutoMod event type." +msgstr "Represents an AutoMod event type." + +msgid "Represents a message send AutoMod event." +msgstr "Represents a message send AutoMod event." + +msgid "Represents the type of action AutoMod is performing." +msgstr "Represents the type of action AutoMod is performing." + +msgid "Represents a block message action." +msgstr "Represents a block message action." + +msgid "Represents a send alert message action." +msgstr "Represents a send alert message action." + +msgid "Represents a timeout action." +msgstr "Represents a timeout action." + +msgid "Represents an AutoMod keyword preset type." +msgstr "Represents an AutoMod keyword preset type." + +msgid "Represents the profanity keyword preset rule." +msgstr "Represents the profanity keyword preset rule." + +msgid "Represents the sexual content keyword preset rule." +msgstr "Represents the sexual content keyword preset rule." + +msgid "Represents the slurs keyword preset rule." +msgstr "Represents the slurs keyword preset rule." + +msgid "Represents how each prompt's options are displayed." +msgstr "Represents how each prompt's options are displayed." + +msgid "The options will appear in a grid form, showing the name and description." +msgstr "The options will appear in a grid form, showing the name and description." + +msgid "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." +msgstr "The options will appear in a dropdown (similar to select menus), but without the description displayed. This is **enforced** if there are more than 12 options in the prompt." + +msgid "Represents the current mode of the guild's onboarding flow." +msgstr "Represents the current mode of the guild's onboarding flow." + +msgid "Only default channels are counted towards the Onboarding requirements." +msgstr "Only default channels are counted towards the Onboarding requirements." + +msgid "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." +msgstr "Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements." + +msgid "Represents a Reaction's type." +msgstr "Represents a Reaction's type." + +msgid "Represents a normal reaction." +msgstr "Represents a normal reaction." + +msgid "Represents a super reaction." +msgstr "Represents a super reaction." + +msgid "Represents an SKU's type." +msgstr "Represents an SKU's type." + +msgid "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." +msgstr "A one-time purchase that is permanent and is not subject to either renewal or consumption, such as lifetime access to an app's premium features." + +msgid "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." +msgstr "A one-time, non-renewable purchase that provides access, such as a temporary power-up or boost in a game." + +msgid "Represents a recurring subscription." +msgstr "Represents a recurring subscription." + +msgid "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." +msgstr "A system-generated group for each subscription SKU created. These types of SKUs are currently unused." + +msgid "Represents an entitlement's type." +msgstr "Represents an entitlement's type." + +msgid "Entitlement was purchased by the user." +msgstr "Entitlement was purchased by the user." + +msgid "Entitlement is for a Discord Nitro subscription." +msgstr "Entitlement is for a Discord Nitro subscription." + +msgid "Entitlement was gifted by the developer." +msgstr "Entitlement was gifted by the developer." + +msgid "Entitlement was purchased by a developer in the application's test mode." +msgstr "Entitlement was purchased by a developer in the application's test mode." + +msgid "Entitlement was granted when the SKU was free." +msgstr "Entitlement was granted when the SKU was free." + +msgid "Entitlement was gifted by another user." +msgstr "Entitlement was gifted by another user." + +msgid "Entitlement was claimed by a user for free as a Nitro subscriber." +msgstr "Entitlement was claimed by a user for free as a Nitro subscriber." + +msgid "Entitlement was purchased as an app subscription." +msgstr "Entitlement was purchased as an app subscription." + +msgid "Represents an entitlement's ownership type." +msgstr "Represents an entitlement's ownership type." + +msgid "Entitlement is owned by a guild." +msgstr "Entitlement is owned by a guild." + +msgid "Entitlement is owned by a user." +msgstr "Entitlement is owned by a user." + +msgid "Represents a poll's layout type." +msgstr "Represents a poll's layout type." + +msgid "Represents the default layout." +msgstr "Represents the default layout." + +msgid "The integration type for an application." +msgstr "The integration type for an application." + +msgid "The integration is added to a guild." +msgstr "The integration is added to a guild." + +msgid "The integration is added to a user account." +msgstr "The integration is added to a user account." + +msgid "The context where an interaction occurs." +msgstr "The context where an interaction occurs." + +msgid "The interaction is in a guild." +msgstr "The interaction is in a guild." + +msgid "The interaction is in the bot's own DM channel with the user." +msgstr "The interaction is in the bot's own DM channel with the user." + +msgid "The interaction is in a private DM or group DM channel." +msgstr "The interaction is in a private DM or group DM channel." + diff --git a/docs/locales/zh/LC_MESSAGES/api/events.po b/docs/locales/zh/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..cc86ab0031 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/events.po @@ -0,0 +1,985 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "This section outlines the different types of events listened by :class:`Client`." + +msgid "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" +msgstr "There are 3 ways to register an event, the first way is through the use of :meth:`Client.event`. The second way is through subclassing :class:`Client` and overriding the specific events. The third way is through the use of :meth:`Client.listen`, which can be used to assign multiple event handlers instead of only one like in :meth:`Client.event`. For example:" + +msgid "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." +msgstr "If an event handler raises an exception, :func:`on_error` will be called to handle it, which defaults to print a traceback and ignoring the exception." + +msgid "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." +msgstr "All the events must be a |coroutine_link|_. If they aren't, then you might get unexpected errors. In order to turn a function into a coroutine they must be ``async def`` functions." + +msgid "Application Commands" +msgstr "Application Commands" + +msgid "Called when an application command is received." +msgstr "Called when an application command is received." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The ApplicationContext associated to the command being received." +msgstr "The ApplicationContext associated to the command being received." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Called when an application command is completed, after any checks have finished." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "The ApplicationContext associated to the command that was completed." + +msgid "Called when an application command has an error." +msgstr "Called when an application command has an error." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "The ApplicationContext associated to the command that has an error." + +msgid "The DiscordException associated to the error." +msgstr "The DiscordException associated to the error." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Called when an application command was not found in the bot's internal cache." + +msgid "The interaction associated to the unknown command." +msgstr "The interaction associated to the unknown command." + +msgid "Audit Logs" +msgstr "Audit Logs" + +msgid "Called when an audit log entry is created." +msgstr "Called when an audit log entry is created." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." + +msgid "The audit log entry that was created." +msgstr "The audit log entry that was created." + +msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." +msgstr "Called when an audit log entry is created. Unlike :func:`on_audit_log_entry`, this is called regardless of the state of the internal user cache." + +msgid "The raw event payload data." +msgstr "The raw event payload data." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Called when an auto moderation rule is created." +msgstr "Called when an auto moderation rule is created." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_configuration` must be enabled." + +msgid "The newly created rule." +msgstr "The newly created rule." + +msgid "Called when an auto moderation rule is updated." +msgstr "Called when an auto moderation rule is updated." + +msgid "The updated rule." +msgstr "The updated rule." + +msgid "Called when an auto moderation rule is deleted." +msgstr "Called when an auto moderation rule is deleted." + +msgid "The deleted rule." +msgstr "The deleted rule." + +msgid "Called when an auto moderation action is executed." +msgstr "Called when an auto moderation action is executed." + +msgid "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." +msgstr "The bot must have :attr:`~Permissions.manage_guild` to receive this, and :attr:`Intents.auto_moderation_execution` must be enabled." + +msgid "The event's data." +msgstr "The event's data." + +msgid "Bans" +msgstr "Bans" + +msgid "Called when user gets banned from a :class:`Guild`." +msgstr "Called when user gets banned from a :class:`Guild`." + +msgid "This requires :attr:`Intents.moderation` to be enabled." +msgstr "This requires :attr:`Intents.moderation` to be enabled." + +msgid "The guild the user got banned from." +msgstr "The guild the user got banned from." + +msgid "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." +msgstr "The user that got banned. Can be either :class:`User` or :class:`Member` depending if the user was in the guild or not at the time of removal." + +msgid "Called when a :class:`User` gets unbanned from a :class:`Guild`." +msgstr "Called when a :class:`User` gets unbanned from a :class:`Guild`." + +msgid "The guild the user got unbanned from." +msgstr "The guild the user got unbanned from." + +msgid "The user that got unbanned." +msgstr "The user that got unbanned." + +msgid "Channels" +msgstr "Channels" + +msgid "Called whenever a private group DM is updated. e.g. changed name or topic." +msgstr "Called whenever a private group DM is updated. e.g. changed name or topic." + +msgid "This requires :attr:`Intents.messages` to be enabled." +msgstr "This requires :attr:`Intents.messages` to be enabled." + +msgid "The updated group channel's old info." +msgstr "The updated group channel's old info." + +msgid "The updated group channel's new info." +msgstr "The updated group channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a private channel." +msgstr "Called whenever a message is pinned or unpinned from a private channel." + +msgid "The private channel that had its pins updated." +msgstr "The private channel that had its pins updated." + +msgid "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." +msgstr "The latest message that was pinned as an aware datetime in UTC. Could be ``None``." + +msgid "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." +msgstr "Called whenever a guild channel is updated. e.g. changed name, topic, permissions." + +msgid "This requires :attr:`Intents.guilds` to be enabled." +msgstr "This requires :attr:`Intents.guilds` to be enabled." + +msgid "The updated guild channel's old info." +msgstr "The updated guild channel's old info." + +msgid "The updated guild channel's new info." +msgstr "The updated guild channel's new info." + +msgid "Called whenever a message is pinned or unpinned from a guild channel." +msgstr "Called whenever a message is pinned or unpinned from a guild channel." + +msgid "The guild channel that had its pins updated." +msgstr "The guild channel that had its pins updated." + +msgid "Called whenever a guild channel is deleted or created." +msgstr "Called whenever a guild channel is deleted or created." + +msgid "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." +msgstr "Note that you can get the guild from :attr:`~abc.GuildChannel.guild`." + +msgid "The guild channel that got created or deleted." +msgstr "The guild channel that got created or deleted." + +msgid "Connection" +msgstr "Connection" + +msgid "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." +msgstr "Usually when an event raises an uncaught exception, a traceback is printed to stderr and the exception is ignored. If you want to change this behaviour and handle the exception for whatever reason yourself, this event can be overridden. Which, when done, will suppress the default action of printing the traceback." + +msgid "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." +msgstr "The information of the exception raised and the exception itself can be retrieved with a standard call to :func:`sys.exc_info`." + +msgid "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." +msgstr "If you want exception to propagate out of the :class:`Client` class you can define an ``on_error`` handler consisting of a single empty :ref:`raise statement `. Exceptions raised by ``on_error`` will not be handled in any way by :class:`Client`." + +msgid "``on_error`` will only be dispatched to :meth:`Client.event`." +msgstr "``on_error`` will only be dispatched to :meth:`Client.event`." + +msgid "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." +msgstr "It will not be received by :meth:`Client.wait_for`, or, if used, :ref:`ext_commands_api_bot` listeners such as :meth:`~ext.commands.Bot.listen` or :meth:`~ext.commands.Cog.listener`." + +msgid "The name of the event that raised the exception." +msgstr "The name of the event that raised the exception." + +msgid "The positional arguments for the event that raised the exception." +msgstr "The positional arguments for the event that raised the exception." + +msgid "The keyword arguments for the event that raised the exception." +msgstr "The keyword arguments for the event that raised the exception." + +msgid "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." +msgstr "Called when the client has successfully connected to Discord. This is not the same as the client being fully prepared, see :func:`on_ready` for that." + +msgid "The warnings on :func:`on_ready` also apply." +msgstr "The warnings on :func:`on_ready` also apply." + +msgid "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." +msgstr "Overriding this event will not call :meth:`Bot.sync_commands`. As a result, :class:`ApplicationCommand` will not be registered." + +msgid "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." +msgstr "Similar to :func:`on_connect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has connected to Discord." + +msgid "The shard ID that has connected." +msgstr "The shard ID that has connected." + +msgid "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." +msgstr "Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. This could happen either through the internet being disconnected, explicit calls to close, or Discord terminating the connection one way or the other." + +msgid "This function can be called many times without a corresponding :func:`on_connect` call." +msgstr "This function can be called many times without a corresponding :func:`on_connect` call." + +msgid "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." +msgstr "Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` to denote when a particular shard ID has disconnected from Discord." + +msgid "The shard ID that has disconnected." +msgstr "The shard ID that has disconnected." + +msgid "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." +msgstr "Called when the client is done preparing the data received from Discord. Usually after login is successful and the :attr:`Client.guilds` and co. are filled up." + +msgid "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." +msgstr "This function is not guaranteed to be the first event called. Likewise, this function is **not** guaranteed to only be called once. This library implements reconnection logic and thus will end up calling this event whenever a RESUME request fails." + +msgid "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." +msgstr "Similar to :func:`on_ready` except used by :class:`AutoShardedClient` to denote when a particular shard ID has become ready." + +msgid "The shard ID that is ready." +msgstr "The shard ID that is ready." + +msgid "Called when the client has resumed a session." +msgstr "Called when the client has resumed a session." + +msgid "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." +msgstr "Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` to denote when a particular shard ID has resumed a session." + +msgid "The shard ID that has resumed." +msgstr "The shard ID that has resumed." + +msgid "Called whenever a WebSocket event is received from the WebSocket." +msgstr "Called whenever a WebSocket event is received from the WebSocket." + +msgid "This is mainly useful for logging how many events you are receiving from the Discord gateway." +msgstr "This is mainly useful for logging how many events you are receiving from the Discord gateway." + +msgid "The event type from Discord that is received, e.g. ``'READY'``." +msgstr "The event type from Discord that is received, e.g. ``'READY'``." + +msgid "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." +msgstr "Called whenever a message is completely received from the WebSocket, before it's processed and parsed. This event is always dispatched when a complete message is received and the passed data is not parsed in any way." + +msgid "This is only really useful for grabbing the WebSocket stream and debugging purposes." +msgstr "This is only really useful for grabbing the WebSocket stream and debugging purposes." + +msgid "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." +msgstr "This requires setting the ``enable_debug_events`` setting in the :class:`Client`." + +msgid "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages received from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message passed in from the WebSocket library." +msgstr "The message passed in from the WebSocket library." + +msgid "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." +msgstr "Called whenever a send operation is done on the WebSocket before the message is sent. The passed parameter is the message that is being sent to the WebSocket." + +msgid "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." +msgstr "This is only for the messages sent from the client WebSocket. The voice WebSocket will not trigger this event." + +msgid "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." +msgstr "The message that is about to be passed on to the WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message." + +msgid "Entitlements" +msgstr "Entitlements" + +msgid "Called when a user subscribes to an SKU." +msgstr "Called when a user subscribes to an SKU." + +msgid "The entitlement that was created as a result of the subscription." +msgstr "The entitlement that was created as a result of the subscription." + +msgid "Called when a user's subscription to an Entitlement is renewed for the next billing period." +msgstr "Called when a user's subscription to an Entitlement is renewed for the next billing period." + +msgid "The entitlement that was updated." +msgstr "The entitlement that was updated." + +msgid "Called when a user's entitlement is deleted." +msgstr "Called when a user's entitlement is deleted." + +msgid "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." +msgstr "Entitlements are usually only deleted when Discord issues a refund for a subscription, or manually removes an entitlement from a user." + +msgid "This is not called when a user's subscription is cancelled." +msgstr "This is not called when a user's subscription is cancelled." + +msgid "The entitlement that was deleted." +msgstr "The entitlement that was deleted." + +msgid "Guilds" +msgstr "Guilds" + +msgid "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." +msgstr "Called when a :class:`Guild` is either created by the :class:`Client` or when the :class:`Client` joins a guild." + +msgid "The guild that was joined." +msgstr "The guild that was joined." + +msgid "Called when a :class:`Guild` is removed from the :class:`Client`." +msgstr "Called when a :class:`Guild` is removed from the :class:`Client`." + +msgid "This happens through, but not limited to, these circumstances:" +msgstr "This happens through, but not limited to, these circumstances:" + +msgid "The client got banned." +msgstr "The client got banned." + +msgid "The client got kicked." +msgstr "The client got kicked." + +msgid "The client left the guild." +msgstr "The client left the guild." + +msgid "The client or the guild owner deleted the guild." +msgstr "The client or the guild owner deleted the guild." + +msgid "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" +msgstr "In order for this event to be invoked then the :class:`Client` must have been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`)" + +msgid "The guild that got removed." +msgstr "The guild that got removed." + +msgid "Called when a :class:`Guild` is updated, for example:" +msgstr "Called when a :class:`Guild` is updated, for example:" + +msgid "Changed name" +msgstr "Changed name" + +msgid "Changed AFK channel" +msgstr "Changed AFK channel" + +msgid "Changed AFK timeout" +msgstr "Changed AFK timeout" + +msgid "etc." +msgstr "etc." + +msgid "The guild prior to being updated." +msgstr "The guild prior to being updated." + +msgid "The guild after being updated." +msgstr "The guild after being updated." + +msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." +msgstr "Called when a :class:`Guild` creates or deletes a :class:`Role`." + +msgid "To get the guild it belongs to, use :attr:`Role.guild`." +msgstr "To get the guild it belongs to, use :attr:`Role.guild`." + +msgid "The role that was created or deleted." +msgstr "The role that was created or deleted." + +msgid "Called when a :class:`Role` is changed guild-wide." +msgstr "Called when a :class:`Role` is changed guild-wide." + +msgid "The updated role's old info." +msgstr "The updated role's old info." + +msgid "The updated role's updated info." +msgstr "The updated role's updated info." + +msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`Emoji`." + +msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." +msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." + +msgid "The guild who got their emojis updated." +msgstr "The guild who got their emojis updated." + +msgid "A list of emojis before the update." +msgstr "A list of emojis before the update." + +msgid "A list of emojis after the update." +msgstr "A list of emojis after the update." + +msgid "Called when a :class:`Guild` adds or removes a sticker." +msgstr "Called when a :class:`Guild` adds or removes a sticker." + +msgid "The guild who got their stickers updated." +msgstr "The guild who got their stickers updated." + +msgid "A list of stickers before the update." +msgstr "A list of stickers before the update." + +msgid "A list of stickers after the update." +msgstr "A list of stickers after the update." + +msgid "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." +msgstr "Called when a guild becomes available or unavailable. The guild must have existed in the :attr:`Client.guilds` cache." + +msgid "The guild that has changed availability." +msgstr "The guild that has changed availability." + +msgid "Called whenever a webhook is created, modified, or removed from a guild channel." +msgstr "Called whenever a webhook is created, modified, or removed from a guild channel." + +msgid "This requires :attr:`Intents.webhooks` to be enabled." +msgstr "This requires :attr:`Intents.webhooks` to be enabled." + +msgid "The channel that had its webhooks updated." +msgstr "The channel that had its webhooks updated." + +msgid "Integrations" +msgstr "Integrations" + +msgid "Called whenever an integration is created, modified, or removed from a guild." +msgstr "Called whenever an integration is created, modified, or removed from a guild." + +msgid "This requires :attr:`Intents.integrations` to be enabled." +msgstr "This requires :attr:`Intents.integrations` to be enabled." + +msgid "The guild that had its integrations updated." +msgstr "The guild that had its integrations updated." + +msgid "Called when an integration is created." +msgstr "Called when an integration is created." + +msgid "The integration that was created." +msgstr "The integration that was created." + +msgid "Called when an integration is updated." +msgstr "Called when an integration is updated." + +msgid "Called when an integration is deleted." +msgstr "Called when an integration is deleted." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Called when an interaction happened." +msgstr "Called when an interaction happened." + +msgid "This currently happens due to application command invocations or components being used." +msgstr "This currently happens due to application command invocations or components being used." + +msgid "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." +msgstr "This is a low level function that is not generally meant to be used. If you are working with components, consider using the callbacks associated with the :class:`~discord.ui.View` instead as it provides a nicer user experience." + +msgid "The interaction data." +msgstr "The interaction data." + +msgid "Invites" +msgstr "Invites" + +msgid "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is created. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." +msgstr "There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` attributes will be of :class:`Object` rather than the respective models." + +msgid "This requires :attr:`Intents.invites` to be enabled." +msgstr "This requires :attr:`Intents.invites` to be enabled." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." +msgstr "Called when an :class:`Invite` is deleted. You must have the :attr:`~Permissions.manage_channels` permission to receive this." + +msgid "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." +msgstr "Outside of those two attributes, the only other attribute guaranteed to be filled by the Discord gateway for this event is :attr:`Invite.code`." + +msgid "The invite that was deleted." +msgstr "The invite that was deleted." + +msgid "Members/Users" +msgstr "Members/Users" + +msgid "Called when a :class:`Member` joins a :class:`Guild`." +msgstr "Called when a :class:`Member` joins a :class:`Guild`." + +msgid "This requires :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.members` to be enabled." + +msgid "The member who joined." +msgstr "The member who joined." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`." + +msgid "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." +msgstr "If the guild or member could not be found in the internal cache, this event will not be called. Alternatively, :func:`on_raw_member_remove` is called regardless of the internal cache." + +msgid "The member who left." +msgstr "The member who left." + +msgid "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." +msgstr "Called when a :class:`Member` leaves a :class:`Guild`. Unlike :func:`on_member_remove`, this is called regardless of the state of the internal member cache." + +msgid "Called when a :class:`Member` updates their profile." +msgstr "Called when a :class:`Member` updates their profile." + +msgid "This is called when one or more of the following things change:" +msgstr "This is called when one or more of the following things change:" + +msgid "nickname" +msgstr "nickname" + +msgid "roles" +msgstr "roles" + +msgid "pending" +msgstr "pending" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid "timed_out" +msgstr "timed_out" + +msgid "The updated member's old info." +msgstr "The updated member's old info." + +msgid "The updated member's updated info." +msgstr "The updated member's updated info." + +msgid "Called when a :class:`Member` updates their presence." +msgstr "Called when a :class:`Member` updates their presence." + +msgid "status" +msgstr "status" + +msgid "activity" +msgstr "activity" + +msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." +msgstr "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." + +msgid "Called when a :class:`Member` changes their :class:`VoiceState`." +msgstr "Called when a :class:`Member` changes their :class:`VoiceState`." + +msgid "The following, but not limited to, examples illustrate when this event is called:" +msgstr "The following, but not limited to, examples illustrate when this event is called:" + +msgid "A member joins a voice or stage channel." +msgstr "A member joins a voice or stage channel." + +msgid "A member leaves a voice or stage channel." +msgstr "A member leaves a voice or stage channel." + +msgid "A member is muted or deafened by their own accord." +msgstr "A member is muted or deafened by their own accord." + +msgid "A member is muted or deafened by a guild administrator." +msgstr "A member is muted or deafened by a guild administrator." + +msgid "This requires :attr:`Intents.voice_states` to be enabled." +msgstr "This requires :attr:`Intents.voice_states` to be enabled." + +msgid "The member whose voice states changed." +msgstr "The member whose voice states changed." + +msgid "The voice state prior to the changes." +msgstr "The voice state prior to the changes." + +msgid "The voice state after the changes." +msgstr "The voice state after the changes." + +msgid "Called when a :class:`User` updates their profile." +msgstr "Called when a :class:`User` updates their profile." + +msgid "avatar" +msgstr "avatar" + +msgid "username" +msgstr "username" + +msgid "discriminator" +msgstr "discriminator" + +msgid "global_name" +msgstr "global_name" + +msgid "The updated user's old info." +msgstr "The updated user's old info." + +msgid "The updated user's updated info." +msgstr "The updated user's updated info." + +msgid "Messages" +msgstr "Messages" + +msgid "Called when a :class:`Message` is created and sent." +msgstr "Called when a :class:`Message` is created and sent." + +msgid "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." +msgstr "Your bot's own messages and private messages are sent through this event. This can lead cases of 'recursion' depending on how your bot was programmed. If you want the bot to not reply to itself, consider checking the user IDs. Note that :class:`~ext.commands.Bot` does not have this problem." + +msgid "The current message." +msgstr "The current message." + +msgid "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a message is deleted. If the message is not found in the internal message cache, then this event will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_delete` event instead." + +msgid "The deleted message." +msgstr "The deleted message." + +msgid "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when messages are bulk deleted. If none of the messages deleted are found in the internal message cache, then this event will not be called. If individual messages were not found in the internal message cache, this event will still be called, but the messages not found will not be included in the messages list. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_bulk_message_delete` event instead." + +msgid "The messages that have been deleted." +msgstr "The messages that have been deleted." + +msgid "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." +msgstr "Called when a message is deleted. Unlike :func:`on_message_delete`, this is called regardless of the message being in the internal message cache or not." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageDeleteEvent.cached_message`" + +msgid "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." +msgstr "Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is called regardless of the messages being in the internal message cache or not." + +msgid "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" +msgstr "If the messages are found in the message cache, they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages`" + +msgid "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." +msgstr "Called when a :class:`Message` receives an update event. If the message is not found in the internal message cache, then these events will not be called. Messages might not be in cache if the message is too old or the client is participating in high traffic guilds." + +msgid "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." +msgstr "If this occurs increase the :class:`max_messages ` parameter or use the :func:`on_raw_message_edit` event instead." + +msgid "The following non-exhaustive cases trigger this event:" +msgstr "The following non-exhaustive cases trigger this event:" + +msgid "A message has been pinned or unpinned." +msgstr "A message has been pinned or unpinned." + +msgid "The message content has been changed." +msgstr "The message content has been changed." + +msgid "The message has received an embed." +msgstr "The message has received an embed." + +msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." +msgstr "For performance reasons, the embed server does not do this in a \"consistent\" manner." + +msgid "The message's embeds were suppressed or unsuppressed." +msgstr "The message's embeds were suppressed or unsuppressed." + +msgid "A call message has received an update to its participants or ending time." +msgstr "A call message has received an update to its participants or ending time." + +msgid "A poll has ended and the results have been finalized." +msgstr "A poll has ended and the results have been finalized." + +msgid "The previous version of the message." +msgstr "The previous version of the message." + +msgid "The current version of the message." +msgstr "The current version of the message." + +msgid "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message is edited. Unlike :func:`on_message_edit`, this is called regardless of the state of the internal message cache." + +msgid "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." +msgstr "If the message is found in the message cache, it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents the message before it has been edited. For example, if the content of a message is modified and triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` will return a :class:`Message` object that represents the message before the content was modified." + +msgid "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." +msgstr "Due to the inherently raw nature of this event, the data parameter coincides with the raw data given by the `gateway `_." + +msgid "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." +msgstr "Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. One example of a common case of partial data is when the ``'content'`` key is inaccessible. This denotes an \"embed\" only edit, which is an edit in which only the embeds are updated by the Discord embed server." + +msgid "Polls" +msgstr "Polls" + +msgid "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." +msgstr "Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. if the poll was not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_add` instead." + +msgid "This requires :attr:`Intents.polls` to be enabled." +msgstr "This requires :attr:`Intents.polls` to be enabled." + +msgid "The current state of the poll." +msgstr "The current state of the poll." + +msgid "The user who added the vote." +msgstr "The user who added the vote." + +msgid "The answer that was voted." +msgstr "The answer that was voted." + +msgid "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." +msgstr "Called when a vote is cast on a poll. Unlike :func:`on_poll_vote_add`, this is called regardless of the state of the internal poll cache." + +msgid "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." +msgstr "Called when a vote is removed from a poll. If multiple answers were removed, this fires multiple times. if the poll is not found in the internal poll cache, then this event will not be called. Consider using :func:`on_raw_poll_vote_remove` instead." + +msgid "The user who removed the vote." +msgstr "The user who removed the vote." + +msgid "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a vote is removed from a poll. Unlike :func:`on_poll_vote_remove`, this is called regardless of the state of the internal message cache." + +msgid "Reactions" +msgstr "Reactions" + +msgid "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." +msgstr "Called when a message has a reaction added to 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. Consider using :func:`on_raw_reaction_add` instead." + +msgid "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires :attr:`Intents.reactions` to be enabled." +msgstr "This requires :attr:`Intents.reactions` to be enabled." + +msgid "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." +msgstr "This doesn't require :attr:`Intents.members` within a guild context, but due to Discord not providing updated user information in a direct message it's required for direct messages to receive this event. Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want to enable the members intent." + +msgid "The current state of the reaction." +msgstr "The current state of the reaction." + +msgid "The user who added the reaction." +msgstr "The user who added the reaction." + +msgid "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." +msgstr "Called when a message has a reaction removed from it. Similar to on_message_edit, if the message is not found in the internal message cache, then this event will not be called." + +msgid "To get the message being reacted, access it via :attr:`Reaction.message`." +msgstr "To get the message being reacted, access it via :attr:`Reaction.message`." + +msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." +msgstr "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." + +msgid "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." +msgstr "Consider using :func:`on_raw_reaction_remove` if you need this and do not want to enable the members intent." + +msgid "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." +msgstr "Called when a message has all its reactions 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. Consider using :func:`on_raw_reaction_clear` instead." + +msgid "The message that had its reactions cleared." +msgstr "The message that had its reactions cleared." + +msgid "The reactions that were removed." +msgstr "The reactions that were removed." + +msgid "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." +msgstr "Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, this is called regardless of the state of the internal message cache." + +msgid "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." +msgstr "Called when a message has a specific 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. Consider using :func:`on_raw_reaction_clear_emoji` instead." + +msgid "The reaction that got cleared." +msgstr "The reaction that got cleared." + +msgid "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." +msgstr "Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called regardless of the state of the internal message cache." + +msgid "Scheduled Events" +msgstr "Scheduled Events" + +msgid "Called when an :class:`ScheduledEvent` is created." +msgstr "Called when an :class:`ScheduledEvent` is created." + +msgid "This requires :attr:`Intents.scheduled_events` to be enabled." +msgstr "This requires :attr:`Intents.scheduled_events` to be enabled." + +msgid "The newly created scheduled event." +msgstr "The newly created scheduled event." + +msgid "Called when a scheduled event is updated." +msgstr "Called when a scheduled event is updated." + +msgid "The old scheduled event." +msgstr "The old scheduled event." + +msgid "The updated scheduled event." +msgstr "The updated scheduled event." + +msgid "Called when a scheduled event is deleted." +msgstr "Called when a scheduled event is deleted." + +msgid "The deleted scheduled event." +msgstr "The deleted scheduled event." + +msgid "Called when a user subscribes to 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_add` instead." +msgstr "Called when a user subscribes to 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_add` instead." + +msgid "The scheduled event subscribed to." +msgstr "The scheduled event subscribed to." + +msgid "The member who subscribed." +msgstr "The member who subscribed." + +msgid "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user subscribes to an event. Unlike :meth:`on_scheduled_event_user_add`, this will be called regardless of the state of the internal cache." + +msgid "Called when a user unsubscribes to 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." +msgstr "Called when a user unsubscribes to 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." + +msgid "The scheduled event unsubscribed from." +msgstr "The scheduled event unsubscribed from." + +msgid "The member who unsubscribed." +msgstr "The member who unsubscribed." + +msgid "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." +msgstr "Called when a user unsubscribes to an event. Unlike :meth:`on_scheduled_event_user_remove`, this will be called regardless of the state of the internal cache." + +msgid "Stage Instances" +msgstr "Stage Instances" + +msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." +msgstr "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." + +msgid "The stage instance that was created or deleted." +msgstr "The stage instance that was created or deleted." + +msgid "Called when a :class:`StageInstance` is updated." +msgstr "Called when a :class:`StageInstance` is updated." + +msgid "The topic is changed." +msgstr "The topic is changed." + +msgid "The privacy level is changed." +msgstr "The privacy level is changed." + +msgid "The stage instance before the update." +msgstr "The stage instance before the update." + +msgid "The stage instance after the update." +msgstr "The stage instance after the update." + +msgid "Threads" +msgstr "Threads" + +msgid "Called whenever a thread is joined." +msgstr "Called whenever a thread is joined." + +msgid "Note that you can get the guild from :attr:`Thread.guild`." +msgstr "Note that you can get the guild from :attr:`Thread.guild`." + +msgid "The thread that got joined." +msgstr "The thread that got joined." + +msgid "Called whenever a thread is created." +msgstr "Called whenever a thread is created." + +msgid "The thread that got created." +msgstr "The thread that got created." + +msgid "Called whenever a thread is removed. This is different from a thread being deleted." +msgstr "Called whenever a thread is removed. This is different from a thread being deleted." + +msgid "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." +msgstr "Due to technical limitations, this event might not be called as soon as one expects. Since the library tracks thread membership locally, the API only sends updated thread membership status upon being synced by joining a thread." + +msgid "The thread that got removed." +msgstr "The thread that got removed." + +msgid "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" +msgstr "Called whenever a thread is deleted. If the deleted thread isn't found in internal cache then this will not be called. Archived threads are not in the cache. Consider using :func:`on_raw_thread_delete`" + +msgid "The thread that got deleted." +msgstr "The thread that got deleted." + +msgid "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." +msgstr "Called whenever a thread is deleted. Unlike :func:`on_thread_delete` this is called regardless of the state of the internal cache." + +msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." +msgstr "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." + +msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." +msgstr "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." + +msgid "The member who joined or left." +msgstr "The member who joined or left." + +msgid "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." +msgstr "Called when a :class:`ThreadMember` leaves a :class:`Thread`. Unlike :func:`on_thread_member_remove` this is called regardless of the member being in the thread's internal cache of members or not." + +msgid "Called whenever a thread is updated." +msgstr "Called whenever a thread is updated." + +msgid "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." +msgstr "If the thread could not be found in the internal cache, this event will not be called. Threads will not be in the cache if they are archived. Alternatively, :func:`on_raw_thread_update` is called regardless of the internal cache." + +msgid "The updated thread's old info." +msgstr "The updated thread's old info." + +msgid "The updated thread's new info." +msgstr "The updated thread's new info." + +msgid "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." +msgstr "Unlike :func:`on_thread_update` this is called regardless of if the thread is in the internal thread cache or not." + +msgid "Typing" +msgstr "Typing" + +msgid "Called when someone begins typing a message." +msgstr "Called when someone begins typing a message." + +msgid "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." +msgstr "The ``channel`` parameter can be a :class:`abc.Messageable` instance. Which could either be :class:`TextChannel`, :class:`GroupChannel`, or :class:`DMChannel`." + +msgid "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." +msgstr "If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter is a :class:`Member`, otherwise it is a :class:`User`." + +msgid "This requires :attr:`Intents.typing` to be enabled." +msgstr "This requires :attr:`Intents.typing` to be enabled." + +msgid "The location where the typing originated from." +msgstr "The location where the typing originated from." + +msgid "The user that started typing." +msgstr "The user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." +msgstr "Called when someone begins typing a message. Unlike :func:`on_typing`, this is called regardless if the user can be found in the bot's cache or not." + +msgid "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" +msgstr "If the typing event is occurring in a guild, the member that started typing can be accessed via :attr:`RawTypingEvent.member`" + +msgid "The raw typing payload." +msgstr "The raw typing payload." + +msgid "Voice Channel Status Update" +msgstr "Voice Channel Status Update" + +msgid "Called when someone updates a voice channel status." +msgstr "Called when someone updates a voice channel status." + +msgid "The channel where the voice channel status update originated from." +msgstr "The channel where the voice channel status update originated from." + +msgid "The old voice channel status." +msgstr "The old voice channel status." + +msgid "The new voice channel status." +msgstr "The new voice channel status." + +msgid "Called when someone updates a voice channels status." +msgstr "Called when someone updates a voice channels status." + +msgid "The raw voice channel status update payload." +msgstr "The raw voice channel status update payload." + diff --git a/docs/locales/zh/LC_MESSAGES/api/exceptions.po b/docs/locales/zh/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..e4cd130b21 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid ":exc:`DiscordException`" +msgstr ":exc:`DiscordException`" + +msgid ":exc:`ClientException`" +msgstr ":exc:`ClientException`" + +msgid ":exc:`InvalidData`" +msgstr ":exc:`InvalidData`" + +msgid ":exc:`InvalidArgument`" +msgstr ":exc:`InvalidArgument`" + +msgid ":exc:`LoginFailure`" +msgstr ":exc:`LoginFailure`" + +msgid ":exc:`ConnectionClosed`" +msgstr ":exc:`ConnectionClosed`" + +msgid ":exc:`PrivilegedIntentsRequired`" +msgstr ":exc:`PrivilegedIntentsRequired`" + +msgid ":exc:`InteractionResponded`" +msgstr ":exc:`InteractionResponded`" + +msgid ":exc:`NoMoreItems`" +msgstr ":exc:`NoMoreItems`" + +msgid ":exc:`GatewayNotFound`" +msgstr ":exc:`GatewayNotFound`" + +msgid ":exc:`HTTPException`" +msgstr ":exc:`HTTPException`" + +msgid ":exc:`Forbidden`" +msgstr ":exc:`Forbidden`" + +msgid ":exc:`NotFound`" +msgstr ":exc:`NotFound`" + +msgid ":exc:`DiscordServerError`" +msgstr ":exc:`DiscordServerError`" + +msgid ":exc:`ApplicationCommandError`" +msgstr ":exc:`ApplicationCommandError`" + +msgid ":exc:`CheckFailure`" +msgstr ":exc:`CheckFailure`" + +msgid ":exc:`ApplicationCommandInvokeError`" +msgstr ":exc:`ApplicationCommandInvokeError`" + +msgid ":exc:`ExtensionError`" +msgstr ":exc:`ExtensionError`" + +msgid ":exc:`ExtensionAlreadyLoaded`" +msgstr ":exc:`ExtensionAlreadyLoaded`" + +msgid ":exc:`ExtensionNotLoaded`" +msgstr ":exc:`ExtensionNotLoaded`" + +msgid ":exc:`NoEntryPointError`" +msgstr ":exc:`NoEntryPointError`" + +msgid ":exc:`ExtensionFailed`" +msgstr ":exc:`ExtensionFailed`" + +msgid ":exc:`ExtensionNotFound`" +msgstr ":exc:`ExtensionNotFound`" + +msgid ":exc:`sinks.SinkException`" +msgstr ":exc:`sinks.SinkException`" + +msgid ":exc:`sinks.RecordingException`" +msgstr ":exc:`sinks.RecordingException`" + +msgid ":exc:`sinks.WaveSinkError`" +msgstr ":exc:`sinks.WaveSinkError`" + +msgid ":exc:`sinks.MP3SinkError`" +msgstr ":exc:`sinks.MP3SinkError`" + +msgid ":exc:`sinks.MP4SinkError`" +msgstr ":exc:`sinks.MP4SinkError`" + +msgid ":exc:`sinks.M4ASinkError`" +msgstr ":exc:`sinks.M4ASinkError`" + +msgid ":exc:`sinks.MKVSinkError`" +msgstr ":exc:`sinks.MKVSinkError`" + +msgid ":exc:`sinks.MKASinkError`" +msgstr ":exc:`sinks.MKASinkError`" + +msgid ":exc:`sinks.OGGSinkError`" +msgstr ":exc:`sinks.OGGSinkError`" + +msgid "Objects" +msgstr "Objects" + +msgid "The following exceptions are thrown by the library." +msgstr "The following exceptions are thrown by the library." + +msgid "Base exception class for pycord" +msgstr "Base exception class for pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "Ideally speaking, this could be caught to handle any exceptions raised from this library." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Exception that's raised when an operation in the :class:`Client` fails." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "These are usually for exceptions that happened due to user input." + +msgid "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." +msgstr "Exception that's raised when the :meth:`Client.login` function fails to log you in from improper credentials or some other misc. failure." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Exception that is raised when an async iteration operation has no more items." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Exception that's raised when an HTTP request operation fails." + +msgid "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." +msgstr "The response of the failed HTTP request. This is an instance of :class:`aiohttp.ClientResponse`. In some cases this could also be a :class:`requests.Response`." + +msgid "type" +msgstr "type" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "The text of the error. Could be an empty string." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "The status code of the HTTP request." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "The Discord specific error code for the failure." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Exception that's raised for when status code 403 occurs." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Subclass of :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Exception that's raised for when status code 404 occurs." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Exception that's raised for when a 500 range status code occurs." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Subclass of :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Exception that's raised when the library encounters unknown or invalid data from Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "An exception that is raised when the gateway for Discord could not be found" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." + +msgid "The close code of the websocket." +msgstr "The close code of the websocket." + +msgid "The reason provided for the closure." +msgstr "The reason provided for the closure." + +msgid "The shard ID that got closed if applicable." +msgstr "The shard ID that got closed if applicable." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." +msgstr "Exception that's raised when the gateway is requesting privileged intents, but they're not ticked in the developer page yet." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" + +msgid ":attr:`Intents.members`" +msgstr ":attr:`Intents.members`" + +msgid ":attr:`Intents.presences`" +msgstr ":attr:`Intents.presences`" + +msgid ":attr:`Intents.message_content`" +msgstr ":attr:`Intents.message_content`" + +msgid "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." +msgstr "Exception that's raised when sending another interaction response using :class:`InteractionResponse` when one has already been done before." + +msgid "An interaction can only respond once." +msgstr "An interaction can only respond once." + +msgid "The interaction that's already been responded to." +msgstr "The interaction that's already been responded to." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "An exception that is thrown for libopus related errors." + +msgid "The error code returned." +msgstr "The error code returned." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "An exception that is thrown for when libopus is not loaded." + +msgid "The base exception type for all application command related errors." +msgstr "The base exception type for all application command related errors." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "This inherits from :exc:`DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "This inherits from :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid "Base exception for extension related errors." +msgstr "Base exception for extension related errors." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "This inherits from :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "The extension that had an error." + +msgid "An exception raised when an extension has already been loaded." +msgstr "An exception raised when an extension has already been loaded." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "This inherits from :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "An exception raised when an extension was not loaded." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "An exception raised when an extension does not have a ``setup`` entry point function." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." + +msgid "The extension that had the error." +msgstr "The extension that had the error." + +msgid "An exception raised when an extension is not found." +msgstr "An exception raised when an extension is not found." + +msgid "Made the ``original`` attribute always None." +msgstr "Made the ``original`` attribute always None." + +msgid "Raised when a Sink error occurs." +msgstr "Raised when a Sink error occurs." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Exception that's thrown when there is an error while trying to record audio from a voice channel." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Exception thrown when an exception occurs with :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Exception thrown when an exception occurs with :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Exception thrown when an exception occurs with :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Exception thrown when an exception occurs with :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Exception thrown when an exception occurs with :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Exception thrown when an exception occurs with :class:`OGGSink`" + diff --git a/docs/locales/zh/LC_MESSAGES/api/index.po b/docs/locales/zh/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..70d92c282d --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Table of Contents" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord." +msgstr "The following section outlines the API of Pycord." + +msgid "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." +msgstr "This module uses the Python logging module to log diagnostic and errors in an output independent way. If the logging module is not configured, these logs will not be output anywhere. See :ref:`logging_setup` for more information on how to set up and use the logging module with Pycord." + diff --git a/docs/locales/zh/LC_MESSAGES/api/models.po b/docs/locales/zh/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..abcf0bdca8 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/models.po @@ -0,0 +1,7792 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Discord Models" +msgstr "Discord Models" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Models are classes that are received from Discord and are not meant to be created by the user of the library." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "The classes listed below are **not intended to be created by users** and are also **read-only**." + +msgid "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." +msgstr "For example, this means that you should not make your own :class:`User` instances nor should you modify the :class:`User` instance yourself." + +msgid "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." +msgstr "If you want to get one of these model classes instances they'd have to be through the cache, and a common way of doing so is through the :func:`utils.find` function or attributes of model classes that you receive from the events specified in the :ref:`discord-api-events`." + +msgid "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." +msgstr "Nearly all classes here have :ref:`py:slots` defined which means that it is impossible to have dynamic attributes to the data classes." + +msgid "Represents a CDN asset on Discord." +msgstr "Represents a CDN asset on Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Returns the URL of the CDN asset." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Returns the length of the CDN asset's URL." + +msgid "Checks if the asset is equal to another asset." +msgstr "Checks if the asset is equal to another asset." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Checks if the asset is not equal to another asset." + +msgid "Returns the hash of the asset." +msgstr "Returns the hash of the asset." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the underlying URL of the asset." +msgstr "Returns the underlying URL of the asset." + +msgid "Returns the identifying key of the asset." +msgstr "Returns the identifying key of the asset." + +msgid "Returns whether the asset is animated." +msgstr "Returns whether the asset is animated." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns a new asset with the passed components replaced." +msgstr "Returns a new asset with the passed components replaced." + +msgid "The new size of the asset." +msgstr "The new size of the asset." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." + +msgid "Returns" +msgstr "Returns" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid size or format was passed." +msgstr "An invalid size or format was passed." + +msgid "Returns a new asset with the specified size." +msgstr "Returns a new asset with the specified size." + +msgid "The new updated asset." +msgstr "The new updated asset." + +msgid "The asset had an invalid size." +msgstr "The asset had an invalid size." + +msgid "Returns a new asset with the specified format." +msgstr "Returns a new asset with the specified format." + +msgid "The new format of the asset." +msgstr "The new format of the asset." + +msgid "The asset has an invalid format." +msgstr "The asset has an invalid format." + +msgid "Returns a new asset with the specified static format." +msgstr "Returns a new asset with the specified static format." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." + +msgid "The new static format of the asset." +msgstr "The new static format of the asset." + +msgid "The asset had an invalid format." +msgstr "The asset had an invalid format." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Retrieves the content of this asset as a :class:`bytes` object." + +msgid "The content of the asset." +msgstr "The content of the asset." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "There was no internal connection state." + +msgid "Downloading the asset failed." +msgstr "Downloading the asset failed." + +msgid "The asset was deleted." +msgstr "The asset was deleted." + +msgid "Saves this asset into a file-like object." +msgstr "Saves this asset into a file-like object." + +msgid "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." +msgstr "The file-like object to save this attachment to or the filename to use. If a filename is passed then a file is created with that filename and used instead." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Whether to seek to the beginning of the file after saving is successfully done." + +msgid "The number of bytes written." +msgstr "The number of bytes written." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." +msgstr "Represents a Spotify listening activity from Discord. This is a special case of :class:`Activity` that makes it easier to work with the Spotify integration." + +msgid "Checks if two activities are equal." +msgstr "Checks if two activities are equal." + +msgid "Checks if two activities are not equal." +msgstr "Checks if two activities are not equal." + +msgid "Returns the activity's hash." +msgstr "Returns the activity's hash." + +msgid "Returns the string 'Spotify'." +msgstr "Returns the string 'Spotify'." + +msgid "Returns the activity's type. This is for compatibility with :class:`Activity`." +msgstr "Returns the activity's type. This is for compatibility with :class:`Activity`." + +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "It always returns :attr:`ActivityType.listening`." + +msgid "When the user started listening in UTC." +msgstr "When the user started listening in UTC." + +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "Returns the Spotify integration colour, as a :class:`Colour`." + +msgid "There is an alias for this named :attr:`color`" +msgstr "There is an alias for this named :attr:`color`" + +msgid "There is an alias for this named :attr:`colour`" +msgstr "There is an alias for this named :attr:`colour`" + +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "The activity's name. This will always return \"Spotify\"." + +msgid "The title of the song being played." +msgstr "The title of the song being played." + +msgid "The artists of the song being played." +msgstr "The artists of the song being played." + +msgid "The artist of the song being played." +msgstr "The artist of the song being played." + +msgid "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." +msgstr "This does not attempt to split the artist information into multiple artists. Useful if there's only a single artist." + +msgid "The album that the song being played belongs to." +msgstr "The album that the song being played belongs to." + +msgid "The album cover image URL from Spotify's CDN." +msgstr "The album cover image URL from Spotify's CDN." + +msgid "The track ID used by Spotify to identify this song." +msgstr "The track ID used by Spotify to identify this song." + +msgid "The track URL to listen on Spotify." +msgstr "The track URL to listen on Spotify." + +msgid "When the user started playing this song in UTC." +msgstr "When the user started playing this song in UTC." + +msgid "When the user will stop playing this song in UTC." +msgstr "When the user will stop playing this song in UTC." + +msgid "The duration of the song being played." +msgstr "The duration of the song being played." + +msgid "The party ID of the listening party." +msgstr "The party ID of the listening party." + +msgid "Represents a Discord user's voice state." +msgstr "Represents a Discord user's voice state." + +msgid "Indicates if the user is currently deafened by the guild." +msgstr "Indicates if the user is currently deafened by the guild." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Indicates if the user is currently muted by the guild." +msgstr "Indicates if the user is currently muted by the guild." + +msgid "Indicates if the user is currently muted by their own accord." +msgstr "Indicates if the user is currently muted by their own accord." + +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "Indicates if the user is currently deafened by their own accord." + +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "Indicates if the user is currently streaming via 'Go Live' feature." + +msgid "Indicates if the user is currently broadcasting video." +msgstr "Indicates if the user is currently broadcasting video." + +msgid "Indicates if the user is suppressed from speaking." +msgstr "Indicates if the user is suppressed from speaking." + +msgid "Only applies to stage channels." +msgstr "Only applies to stage channels." + +msgid "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." +msgstr "An aware datetime object that specifies the date and time in UTC that the member requested to speak. It will be ``None`` if they are not requesting to speak anymore or have been accepted to speak." + +msgid "Only applicable to stage channels." +msgstr "Only applicable to stage channels." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "Indicates if the user is currently in the AFK channel in the guild." + +msgid "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." +msgstr "The voice channel that the user is currently connected to. ``None`` if the user is not currently in a voice channel." + +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." +msgstr "Represents a partial messageable to aid with working messageable channels when only a channel ID are present." + +msgid "The only way to construct this class is through :meth:`Client.get_partial_messageable`." +msgstr "The only way to construct this class is through :meth:`Client.get_partial_messageable`." + +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "Note that this class is trimmed down and has no rich attributes." + +msgid "Checks if two partial messageables are equal." +msgstr "Checks if two partial messageables are equal." + +msgid "Checks if two partial messageables are not equal." +msgstr "Checks if two partial messageables are not equal." + +msgid "Returns the partial messageable's hash." +msgstr "Returns the partial messageable's hash." + +msgid "The channel ID associated with this partial messageable." +msgstr "The channel ID associated with this partial messageable." + +msgid "The channel type associated with this partial messageable, if given." +msgstr "The channel type associated with this partial messageable, if given." + +msgid "Optional[:class:`ChannelType`]" +msgstr "Optional[:class:`ChannelType`]" + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "Creates a :class:`PartialMessage` from the message ID." + +msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." +msgstr "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." + +msgid "The message ID to create a partial message for." +msgstr "The message ID to create a partial message for." + +msgid "The partial message." +msgstr "The partial message." + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid "Users" +msgstr "Users" + +msgid "Represents your Discord user." +msgstr "Represents your Discord user." + +msgid "Checks if two users are equal." +msgstr "Checks if two users are equal." + +msgid "Checks if two users are not equal." +msgstr "Checks if two users are not equal." + +msgid "Return the user's hash." +msgstr "Return the user's hash." + +msgid "Returns the user's name with discriminator or global_name." +msgstr "Returns the user's name with discriminator or global_name." + +msgid "The user's username." +msgstr "The user's username." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's unique ID." +msgstr "The user's unique ID." + +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "The user's discriminator. This is given when the username has conflicts." + +msgid "If the user has migrated to the new username system, this will always be 0." +msgstr "If the user has migrated to the new username system, this will always be 0." + +msgid "The user's global name." +msgstr "The user's global name." + +msgid "Specifies if the user is a bot account." +msgstr "Specifies if the user is a bot account." + +msgid "Specifies if the user is a system user (i.e. represents Discord officially)." +msgstr "Specifies if the user is a system user (i.e. represents Discord officially)." + +msgid "Specifies if the user's email is verified." +msgstr "Specifies if the user's email is verified." + +msgid "The IETF language tag used to identify the language the user is using." +msgstr "The IETF language tag used to identify the language the user is using." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "Specifies if the user has MFA turned on and working." +msgstr "Specifies if the user has MFA turned on and working." + +msgid "Edits the current profile of the client." +msgstr "Edits the current profile of the client." + +msgid "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." +msgstr "To upload an avatar or banner, a :term:`py:bytes-like object` must be passed in that represents the image being uploaded. If this is done through a file then the file must be opened via ``open('some_filename', 'rb')`` and the :term:`py:bytes-like object` is given through the use of ``fp.read()``." + +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "The only image formats supported for uploading are JPEG, PNG, and GIF." + +msgid "The edit is no longer in-place, instead the newly edited client user is returned." +msgstr "The edit is no longer in-place, instead the newly edited client user is returned." + +msgid "The ``banner`` keyword-only parameter was added." +msgstr "The ``banner`` keyword-only parameter was added." + +msgid "The new username you wish to change to." +msgstr "The new username you wish to change to." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no avatar." + +msgid "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." +msgstr "A :term:`py:bytes-like object` representing the image to upload. Could be ``None`` to denote no banner." + +msgid "The newly edited client user." +msgstr "The newly edited client user." + +msgid ":class:`ClientUser`" +msgstr ":class:`ClientUser`" + +msgid "Editing your profile failed." +msgstr "Editing your profile failed." + +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "Wrong image format passed for ``avatar`` or ``banner``." + +msgid "Returns the user's accent color, if applicable." +msgstr "Returns the user's accent color, if applicable." + +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "There is an alias for this named :attr:`accent_colour`." + +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "This information is only available via :meth:`Client.fetch_user`." + +msgid "Returns the user's accent colour, if applicable." +msgstr "Returns the user's accent colour, if applicable." + +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "There is an alias for this named :attr:`accent_color`." + +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "Returns an :class:`Asset` for the avatar the user has." + +msgid "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." +msgstr "If the user does not have a traditional avatar, ``None`` is returned. If you want the avatar that a user has displayed, consider :attr:`display_avatar`." + +msgid "Returns the user's avatar decoration, if available." +msgstr "Returns the user's avatar decoration, if available." + +msgid "Returns the user's banner asset, if available." +msgstr "Returns the user's banner asset, if available." + +msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`colour`." +msgstr "There is an alias for this named :attr:`colour`." + +msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." +msgstr "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." + +msgid "There is an alias for this named :attr:`color`." +msgstr "There is an alias for this named :attr:`color`." + +msgid "Returns the user's creation time in UTC." +msgstr "Returns the user's creation time in UTC." + +msgid "This is when the user's Discord account was created." +msgstr "This is when the user's Discord account was created." + +msgid "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." +msgstr "Returns the default avatar for a given user. This is calculated by the user's ID if they're on the new username system, otherwise their discriminator." + +msgid "Returns the user's display avatar." +msgstr "Returns the user's display avatar." + +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "For regular users this is just their default avatar or uploaded avatar." + +msgid "Returns the user's display name. This will be their global name if set, otherwise their username." +msgstr "Returns the user's display name. This will be their global name if set, otherwise their username." + +msgid "Checks whether the user is already migrated to global name." +msgstr "Checks whether the user is already migrated to global name." + +msgid "Returns a URL that allows the client to jump to the user." +msgstr "Returns a URL that allows the client to jump to the user." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Returns a string that allows you to mention the given user." + +msgid "Checks if the user is mentioned in the specified message." +msgstr "Checks if the user is mentioned in the specified message." + +msgid "The message to check if you're mentioned in." +msgstr "The message to check if you're mentioned in." + +msgid "Indicates if the user is mentioned in the message." +msgstr "Indicates if the user is mentioned in the message." + +msgid "The publicly available flags the user has." +msgstr "The publicly available flags the user has." + +msgid "Represents a Discord user." +msgstr "Represents a Discord user." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "If the user has migrated to the new username system, this will always be \"0\"." + +msgid "Returns the channel associated with this user if it exists." +msgstr "Returns the channel associated with this user if it exists." + +msgid "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." +msgstr "If this returns ``None``, you can create a DM channel by calling the :meth:`create_dm` coroutine function." + +msgid "The guilds that the user shares with the client." +msgstr "The guilds that the user shares with the client." + +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "This will only return mutual guilds within the client's internal cache." + +msgid "Creates a :class:`DMChannel` with this user." +msgstr "Creates a :class:`DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "Creates a test entitlement for the user." +msgstr "Creates a test entitlement for the user." + +msgid "The SKU to create a test entitlement for." +msgstr "The SKU to create a test entitlement for." + +msgid "The created entitlement." +msgstr "The created entitlement." + +msgid ":class:`Entitlement`" +msgstr ":class:`Entitlement`" + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the user's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Messages" +msgstr "Messages" + +msgid "Represents an attachment from Discord." +msgstr "Represents an attachment from Discord." + +msgid "Returns the URL of the attachment." +msgstr "Returns the URL of the attachment." + +msgid "Checks if the attachment is equal to another attachment." +msgstr "Checks if the attachment is equal to another attachment." + +msgid "Checks if the attachment is not equal to another attachment." +msgstr "Checks if the attachment is not equal to another attachment." + +msgid "Returns the hash of the attachment." +msgstr "Returns the hash of the attachment." + +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "Attachment can now be cast to :class:`str` and is hashable." + +msgid "The attachment ID." +msgstr "The attachment ID." + +msgid "The attachment size in bytes." +msgstr "The attachment size in bytes." + +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "The attachment's height, in pixels. Only applicable to images and videos." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "The attachment's width, in pixels. Only applicable to images and videos." + +msgid "The attachment's filename." +msgstr "The attachment's filename." + +msgid "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." +msgstr "The attachment's title. This is equal to the original :attr:`filename` (without an extension) if special characters were filtered from it." + +msgid "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." +msgstr "The attachment URL. If the message this attachment was attached to is deleted, then this will 404." + +msgid "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." +msgstr "The proxy URL. This is a cached version of the :attr:`~Attachment.url` in the case of images. When the message is deleted, this URL might be valid for a few minutes or not valid at all." + +msgid "The attachment's `media type `_." +msgstr "The attachment's `media type `_." + +msgid "Whether the attachment is ephemeral or not." +msgstr "Whether the attachment is ephemeral or not." + +msgid "The attachment's description." +msgstr "The attachment's description." + +msgid "The duration of the audio file (currently for voice messages)." +msgstr "The duration of the audio file (currently for voice messages)." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." +msgstr "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." + +msgid "Extra attributes of the attachment." +msgstr "Extra attributes of the attachment." + +msgid ":class:`AttachmentFlags`" +msgstr ":class:`AttachmentFlags`" + +msgid "The unique signature of this attachment's instance." +msgstr "The unique signature of this attachment's instance." + +msgid "This attachment URL's expiry time in UTC." +msgstr "This attachment URL's expiry time in UTC." + +msgid "The attachment URL's issue time in UTC." +msgstr "The attachment URL's issue time in UTC." + +msgid "Whether this attachment contains a spoiler." +msgstr "Whether this attachment contains a spoiler." + +msgid "Saves this attachment into a file-like object." +msgstr "Saves this attachment into a file-like object." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments." + +msgid "Saving the attachment failed." +msgstr "Saving the attachment failed." + +msgid "The attachment was deleted." +msgstr "The attachment was deleted." + +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "Retrieves the content of this attachment as a :class:`bytes` object." + +msgid "The contents of the attachment." +msgstr "The contents of the attachment." + +msgid "Downloading the attachment failed." +msgstr "Downloading the attachment failed." + +msgid "You do not have permissions to access this attachment" +msgstr "You do not have permissions to access this attachment" + +msgid "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." +msgstr "Converts the attachment into a :class:`File` suitable for sending via :meth:`abc.Messageable.send`." + +msgid "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" +msgstr "Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion more often, compared to the regular URL which is generally deleted right after the message is deleted. Note that this can still fail to download deleted attachments if too much time has passed, and it does not work on some types of attachments. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "Whether the file is a spoiler. .. versionadded:: 1.4" + +msgid "Whether the file is a spoiler." +msgstr "Whether the file is a spoiler." + +msgid "The attachment as a file suitable for sending." +msgstr "The attachment as a file suitable for sending." + +msgid ":class:`File`" +msgstr ":class:`File`" + +msgid "Represents a message from Discord." +msgstr "Represents a message from Discord." + +msgid "Checks if two messages are equal." +msgstr "Checks if two messages are equal." + +msgid "Checks if two messages are not equal." +msgstr "Checks if two messages are not equal." + +msgid "Returns the message's hash." +msgstr "Returns the message's hash." + +msgid "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." +msgstr "Specifies if the message was done with text-to-speech. This can only be accurately received in :func:`on_message` due to a discord limitation." + +msgid "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." +msgstr "The type of message. In most cases this should not be checked, but it is helpful in cases where it might be a system message for :attr:`system_content`." + +msgid ":class:`MessageType`" +msgstr ":class:`MessageType`" + +msgid "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." +msgstr "A :class:`Member` that sent the message. If :attr:`channel` is a private channel or the user has the left the guild, then it is a :class:`User` instead." + +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "Union[:class:`Member`, :class:`abc.User`]" + +msgid "The actual contents of the message." +msgstr "The actual contents of the message." + +msgid "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." +msgstr "The value used by the discord guild and the client to verify that the message is successfully sent. This is not stored long term within Discord's servers and is only used ephemerally." + +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`]]" + +msgid "A list of embeds the message has." +msgstr "A list of embeds the message has." + +msgid "List[:class:`Embed`]" +msgstr "List[:class:`Embed`]" + +msgid "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." +msgstr "The :class:`TextChannel` or :class:`Thread` that the message was sent from. Could be a :class:`DMChannel` or :class:`GroupChannel` if it's a private message." + +msgid "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`]" + +msgid "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." +msgstr "The message that this message references. This is only applicable to messages of type :attr:`MessageType.pins_add`, crossposted messages created by a followed channel integration, or message replies." + +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "Optional[:class:`~discord.MessageReference`]" + +msgid "Specifies if the message mentions everyone." +msgstr "Specifies if the message mentions everyone." + +msgid "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." +msgstr "This does not check if the ``@everyone`` or the ``@here`` text is in the message itself. Rather this boolean indicates if either the ``@everyone`` or the ``@here`` text is in the message **and** it did end up mentioning." + +msgid "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." +msgstr "A list of :class:`Member` that were mentioned. If the message is in a private message then the list will be of :class:`User` instead. For messages that are not of type :attr:`MessageType.default`\\, this array can be used to aid in system messages. For more information, see :attr:`system_content`." + +msgid "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." +msgstr "The order of the mentions list is not in any particular order, so you should not rely on it. This is a Discord limitation, not one with the library." + +msgid "List[:class:`abc.User`]" +msgstr "List[:class:`abc.User`]" + +msgid "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`abc.GuildChannel`]" +msgstr "List[:class:`abc.GuildChannel`]" + +msgid "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." +msgstr "A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty." + +msgid "List[:class:`Role`]" +msgstr "List[:class:`Role`]" + +msgid "The message ID." +msgstr "The message ID." + +msgid "If this message was sent by a webhook, then this is the webhook ID's that sent this message." +msgstr "If this message was sent by a webhook, then this is the webhook ID's that sent this message." + +msgid "A list of attachments given to a message." +msgstr "A list of attachments given to a message." + +msgid "List[:class:`Attachment`]" +msgstr "List[:class:`Attachment`]" + +msgid "Specifies if the message is currently pinned." +msgstr "Specifies if the message is currently pinned." + +msgid "Extra features of the message." +msgstr "Extra features of the message." + +msgid ":class:`MessageFlags`" +msgstr ":class:`MessageFlags`" + +msgid "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." +msgstr "Reactions to a message. Reactions can be either custom emoji or standard unicode emoji." + +msgid "List[:class:`Reaction`]" +msgstr "List[:class:`Reaction`]" + +msgid "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." +msgstr "The activity associated with this message. Sent with Rich-Presence related messages that for example, request joining, spectating, or listening to or with another member." + +msgid "It is a dictionary with the following optional keys:" +msgstr "It is a dictionary with the following optional keys:" + +msgid "``type``: An integer denoting the type of message activity being requested." +msgstr "``type``: An integer denoting the type of message activity being requested." + +msgid "``party_id``: The party ID associated with the party." +msgstr "``party_id``: The party ID associated with the party." + +msgid "Optional[:class:`dict`]" +msgstr "Optional[:class:`dict`]" + +msgid "The rich presence enabled application associated with this message." +msgstr "The rich presence enabled application associated with this message." + +msgid "It is a dictionary with the following keys:" +msgstr "It is a dictionary with the following keys:" + +msgid "``id``: A string representing the application's ID." +msgstr "``id``: A string representing the application's ID." + +msgid "``name``: A string representing the application's name." +msgstr "``name``: A string representing the application's name." + +msgid "``description``: A string representing the application's description." +msgstr "``description``: A string representing the application's description." + +msgid "``icon``: A string representing the icon ID of the application." +msgstr "``icon``: A string representing the icon ID of the application." + +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "``cover_image``: A string representing the embed's image asset ID." + +msgid "A list of sticker items given to the message." +msgstr "A list of sticker items given to the message." + +msgid "List[:class:`StickerItem`]" +msgstr "List[:class:`StickerItem`]" + +msgid "A list of components in the message." +msgstr "A list of components in the message." + +msgid "List[:class:`Component`]" +msgstr "List[:class:`Component`]" + +msgid "The guild that the message belongs to, if applicable." +msgstr "The guild that the message belongs to, if applicable." + +msgid "Optional[:class:`Guild`]" +msgstr "Optional[:class:`Guild`]" + +msgid "The interaction associated with the message, if applicable." +msgstr "The interaction associated with the message, if applicable." + +msgid "Use :attr:`interaction_metadata` instead." +msgstr "Use :attr:`interaction_metadata` instead." + +msgid "Optional[:class:`MessageInteraction`]" +msgstr "Optional[:class:`MessageInteraction`]" + +msgid "The interaction metadata associated with the message, if applicable." +msgstr "The interaction metadata associated with the message, if applicable." + +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "Optional[:class:`InteractionMetadata`]" + +msgid "The thread created from this message, if applicable." +msgstr "The thread created from this message, if applicable." + +msgid "Optional[:class:`Thread`]" +msgstr "Optional[:class:`Thread`]" + +msgid "The poll associated with this message, if applicable." +msgstr "The poll associated with this message, if applicable." + +msgid "Optional[:class:`Poll`]" +msgstr "Optional[:class:`Poll`]" + +msgid "The call information associated with this message, if applicable." +msgstr "The call information associated with this message, if applicable." + +msgid "Optional[:class:`MessageCall`]" +msgstr "Optional[:class:`MessageCall`]" + +msgid "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." +msgstr "A property that returns an array of user IDs matched with the syntax of ``<@user_id>`` in the message content." + +msgid "This allows you to receive the user IDs of mentioned users even in a private message context." +msgstr "This allows you to receive the user IDs of mentioned users even in a private message context." + +msgid "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." +msgstr "A property that returns an array of channel IDs matched with the syntax of ``<#channel_id>`` in the message content." + +msgid "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." +msgstr "A property that returns an array of role IDs matched with the syntax of ``<@&role_id>`` in the message content." + +msgid "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." +msgstr "A property that returns the content in a \"cleaned up\" manner. This basically means that mentions are transformed into the way the client shows it. e.g. ``<#id>`` will transform into ``#name``." + +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "This will also transform @everyone and @here mentions into non-mentions." + +msgid "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." +msgstr "This *does not* affect markdown. If you want to escape or remove markdown then use :func:`utils.escape_markdown` or :func:`utils.remove_markdown` respectively, along with this function." + +msgid "The message's creation time in UTC." +msgstr "The message's creation time in UTC." + +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "An aware UTC datetime object containing the edited time of the message." + +msgid "Returns a URL that allows the client to jump to this message." +msgstr "Returns a URL that allows the client to jump to this message." + +msgid "Whether the message is a system message." +msgstr "Whether the message is a system message." + +msgid "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "A system message is a message that is constructed entirely by the Discord API in response to something. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A property that returns the content that is rendered regardless of the :attr:`Message.type`." +msgstr "A property that returns the content that is rendered regardless of the :attr:`Message.type`." + +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." +msgstr "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`. Otherwise, this returns an English message denoting the contents of the system message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." +msgstr "Your own messages could be deleted without any proper permissions. However, to delete other people's messages, you need the :attr:`~Permissions.manage_messages` permission." + +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "Added the new ``delay`` keyword-only parameter." + +msgid "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message. If the deletion fails then it is silently ignored." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already" +msgstr "The message was deleted already" + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "The content must be able to be transformed into a string via ``str(content)``." +msgstr "The content must be able to be transformed into a string via ``str(content)``." + +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "The ``suppress`` keyword-only parameter was added." + +msgid "The new content to replace the message with. Could be ``None`` to remove the content." +msgstr "The new content to replace the message with. Could be ``None`` to remove the content." + +msgid "The new embed to replace the original with. Could be ``None`` to remove the embed." +msgstr "The new embed to replace the original with. Could be ``None`` to remove the embed." + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed. .. versionadded:: 2.0" + +msgid "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." +msgstr "The new embeds to replace the original with. Must be a maximum of 10. To remove all embeds ``[]`` should be passed." + +msgid "A new file to add to the message." +msgstr "A new file to add to the message." + +msgid "New files to add to the message." +msgstr "New files to add to the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." +msgstr "Tried to suppress a message without permissions or edited a message's content or embed that isn't yours." + +msgid "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "You specified both ``embed`` and ``embeds``, specified both ``file`` and ``files``, or either``file`` or ``files`` were of the wrong type." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Publishes this message to your announcement channel." +msgstr "Publishes this message to your announcement channel." + +msgid "You must have the :attr:`~Permissions.send_messages` permission to do this." +msgstr "You must have the :attr:`~Permissions.send_messages` permission to do this." + +msgid "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." +msgstr "If the message is not your own then the :attr:`~Permissions.manage_messages` permission is also needed." + +msgid "You do not have the proper permissions to publish this message." +msgstr "You do not have the proper permissions to publish this message." + +msgid "Publishing the message failed." +msgstr "Publishing the message failed." + +msgid "Pins the message." +msgstr "Pins the message." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to do this in a non-private channel context." + +msgid "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for pinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "The reason for pinning the message. Shows up on the audit log." + +msgid "You do not have permissions to pin the message." +msgstr "You do not have permissions to pin the message." + +msgid "The message or channel was not found or deleted." +msgstr "The message or channel was not found or deleted." + +msgid "Pinning the message failed, probably due to the channel having more than 50 pinned messages." +msgstr "Pinning the message failed, probably due to the channel having more than 50 pinned messages." + +msgid "Unpins the message." +msgstr "Unpins the message." + +msgid "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for unpinning the message. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "The reason for unpinning the message. Shows up on the audit log." + +msgid "You do not have permissions to unpin the message." +msgstr "You do not have permissions to unpin the message." + +msgid "Unpinning the message failed." +msgstr "Unpinning the message failed." + +msgid "Add a reaction to the message." +msgstr "Add a reaction to the message." + +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." + +msgid "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." +msgstr "You must have the :attr:`~Permissions.read_message_history` permission to use this. If nobody else has reacted to the message using this emoji, the :attr:`~Permissions.add_reactions` permission is required." + +msgid "The emoji to react with." +msgstr "The emoji to react with." + +msgid "Adding the reaction failed." +msgstr "Adding the reaction failed." + +msgid "You do not have the proper permissions to react to the message." +msgstr "You do not have the proper permissions to react to the message." + +msgid "The emoji you specified was not found." +msgstr "The emoji you specified was not found." + +msgid "The emoji parameter is invalid." +msgstr "The emoji parameter is invalid." + +msgid "Remove a reaction by the member from the message." +msgstr "Remove a reaction by the member from the message." + +msgid "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``member`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``member`` parameter must represent a member and meet the :class:`abc.Snowflake` abc." + +msgid "The emoji to remove." +msgstr "The emoji to remove." + +msgid "The member for which to remove the reaction." +msgstr "The member for which to remove the reaction." + +msgid "Removing the reaction failed." +msgstr "Removing the reaction failed." + +msgid "You do not have the proper permissions to remove the reaction." +msgstr "You do not have the proper permissions to remove the reaction." + +msgid "The member or emoji you specified was not found." +msgstr "The member or emoji you specified was not found." + +msgid "Clears a specific reaction from the message." +msgstr "Clears a specific reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "The emoji to clear." +msgstr "The emoji to clear." + +msgid "Clearing the reaction failed." +msgstr "Clearing the reaction failed." + +msgid "You do not have the proper permissions to clear the reaction." +msgstr "You do not have the proper permissions to clear the reaction." + +msgid "Removes all the reactions from the message." +msgstr "Removes all the reactions from the message." + +msgid "Removing the reactions failed." +msgstr "Removing the reactions failed." + +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "You do not have the proper permissions to remove all the reactions." + +msgid "Creates a public thread from this message." +msgstr "Creates a public thread from this message." + +msgid "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." +msgstr "You must have :attr:`~discord.Permissions.create_public_threads` in order to create a public thread from a message." + +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "The channel this message belongs in must be a :class:`TextChannel`." + +msgid "The name of the thread." +msgstr "The name of the thread." + +msgid "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." +msgstr "The duration in minutes before a thread is automatically archived for inactivity. If not provided, the channel's default auto archive duration is used." + +msgid "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "The created thread." +msgstr "The created thread." + +msgid ":class:`.Thread`" +msgstr ":class:`.Thread`" + +msgid "You do not have permissions to create a thread." +msgstr "You do not have permissions to create a thread." + +msgid "Creating the thread failed." +msgstr "Creating the thread failed." + +msgid "This message does not have guild info attached." +msgstr "This message does not have guild info attached." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Immediately ends the poll associated with this message. Only doable by the poll's owner." +msgstr "Immediately ends the poll associated with this message. Only doable by the poll's owner." + +msgid "The updated message." +msgstr "The updated message." + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid "You do not have permissions to end this poll." +msgstr "You do not have permissions to end this poll." + +msgid "Ending this poll failed." +msgstr "Ending this poll failed." + +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "Creates a :class:`~discord.MessageReference` from the current message." + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message. .. versionadded:: 1.7" + +msgid "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." +msgstr "Whether replying using the message reference should raise :class:`HTTPException` if the message no longer exists or Discord could not fetch the message." + +msgid "The reference to this message." +msgstr "The reference to this message." + +msgid ":class:`~discord.MessageReference`" +msgstr ":class:`~discord.MessageReference`" + +msgid "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." +msgstr "A special sentinel type that denotes whether the resolved message referenced message had since been deleted." + +msgid "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." +msgstr "The purpose of this class is to separate referenced messages that could not be fetched and those that were previously fetched but have since been deleted." + +msgid "The message ID of the deleted referenced message." +msgstr "The message ID of the deleted referenced message." + +msgid "The channel ID of the deleted referenced message." +msgstr "The channel ID of the deleted referenced message." + +msgid "The guild ID of the deleted referenced message." +msgstr "The guild ID of the deleted referenced message." + +msgid "Represents a reaction to a message." +msgstr "Represents a reaction to a message." + +msgid "Depending on the way this object was created, some of the attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some of the attributes can have a value of ``None``." + +msgid "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." +msgstr "Checks if two reactions are equal. This works by checking if the emoji is the same. So two messages with the same reaction will be considered \"equal\"." + +msgid "Checks if two reactions are not equal." +msgstr "Checks if two reactions are not equal." + +msgid "Returns the reaction's hash." +msgstr "Returns the reaction's hash." + +msgid "Returns the string form of the reaction's emoji." +msgstr "Returns the string form of the reaction's emoji." + +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "The reaction emoji. May be a custom emoji, or a unicode emoji." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" + +msgid "The combined total of normal and super reactions for this emoji." +msgstr "The combined total of normal and super reactions for this emoji." + +msgid "If the user sent this as a normal reaction." +msgstr "If the user sent this as a normal reaction." + +msgid "If the user sent this as a super reaction." +msgstr "If the user sent this as a super reaction." + +msgid "Message this reaction is for." +msgstr "Message this reaction is for." + +msgid "Whether this reaction is a burst (super) reaction." +msgstr "Whether this reaction is a burst (super) reaction." + +msgid "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." +msgstr "Returns an :class:`AsyncIterator` representing the users that have reacted to the message." + +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." + +msgid "The maximum number of results to return. If not provided, returns all the users who reacted to the message." +msgstr "The maximum number of results to return. If not provided, returns all the users who reacted to the message." + +msgid "For pagination, reactions are sorted by member." +msgstr "For pagination, reactions are sorted by member." + +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "The type of reaction to get users for. Defaults to `normal`." + +msgid "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." +msgstr "Union[:class:`User`, :class:`Member`] -- The member (if retrievable) or the user that has reacted to this message. The case where it can be a :class:`Member` is in a guild message context. Sometimes it can be a :class:`User` if the member has left the guild." + +msgid "Getting the users for the reaction failed." +msgstr "Getting the users for the reaction failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" + +msgid "Getting super reactors: ::" +msgstr "Getting super reactors: ::" + +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "Returns a list possible :class:`Colour` this super reaction can be." + +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "There is an alias for this named :attr:`burst_colors`." + +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "There is an alias for this named :attr:`burst_colours`." + +msgid "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." +msgstr "Returns :class:`ReactionCountDetails` for the individual counts of normal and super reactions made." + +msgid "If this is a custom emoji." +msgstr "If this is a custom emoji." + +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "Remove the reaction by the provided :class:`User` from the message." + +msgid "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." +msgstr "If the reaction is not your own (i.e. ``user`` parameter is not you) then the :attr:`~Permissions.manage_messages` permission is needed." + +msgid "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." +msgstr "The ``user`` parameter must represent a user or member and meet the :class:`abc.Snowflake` abc." + +msgid "The user or member from which to remove the reaction." +msgstr "The user or member from which to remove the reaction." + +msgid "The user you specified, or the reaction's message was not found." +msgstr "The user you specified, or the reaction's message was not found." + +msgid "Clears this reaction from the message." +msgstr "Clears this reaction from the message." + +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You need the :attr:`~Permissions.manage_messages` permission to use this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a breakdown of the normal and burst reaction counts for the emoji." +msgstr "Represents a breakdown of the normal and burst reaction counts for the emoji." + +msgid "The number of normal reactions for this emoji." +msgstr "The number of normal reactions for this emoji." + +msgid "The number of super reactions for this emoji." +msgstr "The number of super reactions for this emoji." + +msgid "Monetization" +msgstr "Monetization" + +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "Represents a Discord SKU (stock-keeping unit)." + +msgid "The SKU's ID." +msgstr "The SKU's ID." + +msgid "The type of SKU." +msgstr "The type of SKU." + +msgid ":class:`SKUType`" +msgstr ":class:`SKUType`" + +msgid "The ID of the application this SKU belongs to." +msgstr "The ID of the application this SKU belongs to." + +msgid "The name of the SKU." +msgstr "The name of the SKU." + +msgid "The SKU's slug." +msgstr "The SKU's slug." + +msgid "The SKU's flags." +msgstr "The SKU's flags." + +msgid ":class:`SKUFlags`" +msgstr ":class:`SKUFlags`" + +msgid "Returns the URL for the SKU." +msgstr "Returns the URL for the SKU." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "The entitlement's ID." +msgstr "The entitlement's ID." + +msgid "The ID of the SKU this entitlement is for." +msgstr "The ID of the SKU this entitlement is for." + +msgid "The ID of the application this entitlement belongs to." +msgstr "The ID of the application this entitlement belongs to." + +msgid "The ID of the user that owns this entitlement." +msgstr "The ID of the user that owns this entitlement." + +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "Union[:class:`int`, :class:`MISSING`]" + +msgid "The type of entitlement." +msgstr "The type of entitlement." + +msgid ":class:`EntitlementType`" +msgstr ":class:`EntitlementType`" + +msgid "Whether the entitlement has been deleted." +msgstr "Whether the entitlement has been deleted." + +msgid "When the entitlement starts." +msgstr "When the entitlement starts." + +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "Union[:class:`datetime.datetime`, :class:`MISSING`]" + +msgid "When the entitlement expires." +msgstr "When the entitlement expires." + +msgid "The ID of the guild that owns this entitlement." +msgstr "The ID of the guild that owns this entitlement." + +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not of type :attr:`EntitlementType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." +msgstr "This can only be done on entitlements of type :attr:`EntitlementType.consumable`." + +msgid "The entitlement is not consumable." +msgstr "The entitlement is not consumable." + +msgid "Consuming the entitlement failed." +msgstr "Consuming the entitlement failed." + +msgid "Deletes a test entitlement." +msgstr "Deletes a test entitlement." + +msgid "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." +msgstr "A test entitlement is an entitlement that was created using :meth:`Guild.create_test_entitlement` or :meth:`User.create_test_entitlement`." + +msgid "Deleting the entitlement failed." +msgstr "Deleting the entitlement failed." + +msgid "Guild" +msgstr "Guild" + +msgid "Represents a Discord guild." +msgstr "Represents a Discord guild." + +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "This is referred to as a \"server\" in the official Discord UI." + +msgid "Checks if two guilds are equal." +msgstr "Checks if two guilds are equal." + +msgid "Checks if two guilds are not equal." +msgstr "Checks if two guilds are not equal." + +msgid "Returns the guild's hash." +msgstr "Returns the guild's hash." + +msgid "Returns the guild's name." +msgstr "Returns the guild's name." + +msgid "The guild name." +msgstr "The guild name." + +msgid "All emojis that the guild owns." +msgstr "All emojis that the guild owns." + +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "Tuple[:class:`Emoji`, ...]" + +msgid "All stickers that the guild owns." +msgstr "All stickers that the guild owns." + +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "Tuple[:class:`GuildSticker`, ...]" + +msgid "The timeout to get sent to the AFK channel." +msgstr "The timeout to get sent to the AFK channel." + +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "The channel that denotes the AFK channel. ``None`` if it doesn't exist." + +msgid "Optional[:class:`VoiceChannel`]" +msgstr "Optional[:class:`VoiceChannel`]" + +msgid "The guild's ID." +msgstr "The guild's ID." + +msgid "Indicates if the guild invites are disabled." +msgstr "Indicates if the guild invites are disabled." + +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "The guild owner's ID. Use :attr:`Guild.owner` instead." + +msgid "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." +msgstr "Indicates if the guild is unavailable. If this is ``True`` then the reliability of other attributes outside of :attr:`Guild.id` is slim and they might all be ``None``. It is best to not do anything with the guild if it is unavailable." + +msgid "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." +msgstr "Check the :func:`on_guild_unavailable` and :func:`on_guild_available` events." + +msgid "The maximum amount of presences for the guild." +msgstr "The maximum amount of presences for the guild." + +msgid "The maximum amount of members for the guild." +msgstr "The maximum amount of members for the guild." + +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "This attribute is only available via :meth:`.Client.fetch_guild`." + +msgid "The maximum amount of users in a video channel." +msgstr "The maximum amount of users in a video channel." + +msgid "The guild's description." +msgstr "The guild's description." + +msgid "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." +msgstr "Indicates the guild's two-factor authorisation level. If this value is 0 then the guild does not require 2FA for their administrative members. If the value is 1 then they do." + +msgid "The guild's verification level." +msgstr "The guild's verification level." + +msgid ":class:`VerificationLevel`" +msgstr ":class:`VerificationLevel`" + +msgid "The guild's explicit content filter." +msgstr "The guild's explicit content filter." + +msgid ":class:`ContentFilter`" +msgstr ":class:`ContentFilter`" + +msgid "The guild's notification settings." +msgstr "The guild's notification settings." + +msgid ":class:`NotificationLevel`" +msgstr ":class:`NotificationLevel`" + +msgid "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." +msgstr "A list of features that the guild has. The features that a guild can have are subject to arbitrary change by Discord. You can find a catalog of guild features `here `_." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." +msgstr "The premium tier for this guild. Corresponds to \"Nitro Server\" in the official UI. The number goes from 0 to 3 inclusive." + +msgid "The number of \"boosts\" this guild currently has." +msgstr "The number of \"boosts\" this guild currently has." + +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "Indicates if the guild has premium progress bar enabled." + +msgid "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." +msgstr "The preferred locale for the guild. Used when filtering Server Discovery results to a specific language." + +msgid "The guild's NSFW level." +msgstr "The guild's NSFW level." + +msgid ":class:`NSFWLevel`" +msgstr ":class:`NSFWLevel`" + +msgid "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members in the guild. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded. This is ``None`` unless the guild is obtained using :meth:`Client.fetch_guild` with ``with_counts=True``." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This method is an API call. For general usage, consider :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider :attr:`members` instead." + +msgid "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." +msgstr "The number of members to retrieve. Defaults to 1000. Pass ``None`` to fetch all members. Note that this is potentially slow." + +msgid "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve members after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr ":class:`.Member` -- The member with the member data parsed." + +msgid "The members intent is not enabled." +msgstr "The members intent is not enabled." + +msgid "Getting the members failed." +msgstr "Getting the members failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." +msgstr "Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs." + +msgid "You must have the :attr:`~Permissions.view_audit_log` permission to use this." +msgstr "You must have the :attr:`~Permissions.view_audit_log` permission to use this." + +msgid "See `API documentation `_ for more information about the `before` and `after` parameters." +msgstr "See `API documentation `_ for more information about the `before` and `after` parameters." + +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "The number of entries to retrieve. If ``None`` retrieve all entries." + +msgid "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries before this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve entries after this date or entry. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The moderator to filter entries from." +msgstr "The moderator to filter entries from." + +msgid "The action to filter with." +msgstr "The action to filter with." + +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr ":class:`AuditLogEntry` -- The audit log entry." + +msgid "You are not allowed to fetch audit logs" +msgstr "You are not allowed to fetch audit logs" + +msgid "An error occurred while fetching the audit logs." +msgstr "An error occurred while fetching the audit logs." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" + +msgid "Getting the first 100 entries: ::" +msgstr "Getting the first 100 entries: ::" + +msgid "Getting entries for a specific action: ::" +msgstr "Getting entries for a specific action: ::" + +msgid "Getting entries made by a specific user: ::" +msgstr "Getting entries made by a specific user: ::" + +msgid "A list of channels that belong to this guild." +msgstr "A list of channels that belong to this guild." + +msgid "A list of threads that you have permission to view." +msgstr "A list of threads that you have permission to view." + +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "Returns a URL that allows the client to jump to the guild." + +msgid "Indicates if the guild is a 'large' guild." +msgstr "Indicates if the guild is a 'large' guild." + +msgid "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." +msgstr "A large guild is defined as having more than ``large_threshold`` count members, which for this library is set to the maximum of 250." + +msgid "A list of voice channels that belong to this guild." +msgstr "A list of voice channels that belong to this guild." + +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "This is sorted by the position and are in UI order from top to bottom." + +msgid "A list of stage channels that belong to this guild." +msgstr "A list of stage channels that belong to this guild." + +msgid "A list of forum channels that belong to this guild." +msgstr "A list of forum channels that belong to this guild." + +msgid "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." +msgstr "Similar to :attr:`Client.user` except an instance of :class:`Member`. This is essentially used to get the member version of yourself." + +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "Returns the :class:`VoiceClient` associated with this guild, if any." + +msgid "A list of text channels that belong to this guild." +msgstr "A list of text channels that belong to this guild." + +msgid "A list of categories that belong to this guild." +msgstr "A list of categories that belong to this guild." + +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "Returns every :class:`CategoryChannel` and their associated channels." + +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "These channels and categories are sorted in the official Discord UI order." + +msgid "If the channels do not have a category, then the first element of the tuple is ``None``." +msgstr "If the channels do not have a category, then the first element of the tuple is ``None``." + +msgid "The categories and their associated channels." +msgstr "The categories and their associated channels." + +msgid "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" +msgstr "List[Tuple[Optional[:class:`CategoryChannel`], List[:class:`abc.GuildChannel`]]]" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or thread or ``None`` if not found." +msgstr "The returned channel or thread or ``None`` if not found." + +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" + +msgid "Returns a channel with the given ID." +msgstr "Returns a channel with the given ID." + +msgid "This does *not* search for threads." +msgstr "This does *not* search for threads." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "Optional[:class:`.abc.GuildChannel`]" + +msgid "Returns a thread with the given ID." +msgstr "Returns a thread with the given ID." + +msgid "The returned thread or ``None`` if not found." +msgstr "The returned thread or ``None`` if not found." + +msgid "Returns the guild's channel used for system messages." +msgstr "Returns the guild's channel used for system messages." + +msgid "If no channel is set, then this returns ``None``." +msgstr "If no channel is set, then this returns ``None``." + +msgid "Returns the guild's system channel settings." +msgstr "Returns the guild's system channel settings." + +msgid "Return's the guild's channel used for the rules. The guild must be a Community guild." +msgstr "Return's the guild's channel used for the rules. The guild must be a Community guild." + +msgid "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." +msgstr "Return's the guild's channel where admins and moderators of the guilds receive notices from Discord. The guild must be a Community guild." + +msgid "The maximum number of emoji slots this guild has." +msgstr "The maximum number of emoji slots this guild has." + +msgid "The maximum number of sticker slots this guild has." +msgstr "The maximum number of sticker slots this guild has." + +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "The maximum bitrate for voice channels this guild can have." + +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "The maximum number of bytes files can have when uploaded to this guild." + +msgid "A list of members that belong to this guild." +msgstr "A list of members that belong to this guild." + +msgid "Returns a member with the given ID." +msgstr "Returns a member with the given ID." + +msgid "The member or ``None`` if not found." +msgstr "The member or ``None`` if not found." + +msgid "Optional[:class:`Member`]" +msgstr "Optional[:class:`Member`]" + +msgid "A list of members who have \"boosted\" this guild." +msgstr "A list of members who have \"boosted\" this guild." + +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "Returns a :class:`list` of the guild's roles in hierarchy order." + +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "The first element of this list will be the lowest role in the hierarchy." + +msgid "Returns a role with the given ID." +msgstr "Returns a role with the given ID." + +msgid "The role or ``None`` if not found." +msgstr "The role or ``None`` if not found." + +msgid "Optional[:class:`Role`]" +msgstr "Optional[:class:`Role`]" + +msgid "Gets the @everyone role that all members have by default." +msgstr "Gets the @everyone role that all members have by default." + +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "Gets the premium subscriber role, AKA \"boost\" role, in this guild." + +msgid "Gets the role associated with this client's user, if any." +msgstr "Gets the role associated with this client's user, if any." + +msgid "Returns a :class:`list` of the guild's stage instances that are currently running." +msgstr "Returns a :class:`list` of the guild's stage instances that are currently running." + +msgid "Returns a stage instance with the given ID." +msgstr "Returns a stage instance with the given ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`StageInstance`]" +msgstr "Optional[:class:`StageInstance`]" + +msgid "The member that owns the guild." +msgstr "The member that owns the guild." + +msgid "Returns the guild's icon asset, if available." +msgstr "Returns the guild's icon asset, if available." + +msgid "Returns the guild's banner asset, if available." +msgstr "Returns the guild's banner asset, if available." + +msgid "Returns the guild's invite splash asset, if available." +msgstr "Returns the guild's invite splash asset, if available." + +msgid "Returns the guild's discovery splash asset, if available." +msgstr "Returns the guild's discovery splash asset, if available." + +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "Returns the true member count regardless of it being loaded fully or not." + +msgid "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." +msgstr "Due to a Discord limitation, in order for this attribute to remain up-to-date and accurate, it requires :attr:`Intents.members` to be specified." + +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "Returns a boolean indicating if the guild is \"chunked\"." + +msgid "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." +msgstr "A chunked guild means that :attr:`member_count` is equal to the number of members stored in the internal :attr:`members` cache." + +msgid "If this value returns ``False``, then you should request for offline members." +msgstr "If this value returns ``False``, then you should request for offline members." + +msgid "Returns the shard ID for this guild if applicable." +msgstr "Returns the shard ID for this guild if applicable." + +msgid "Returns the guild's creation time in UTC." +msgstr "Returns the guild's creation time in UTC." + +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "Returns a boolean indicating if the guild invites are disabled." + +msgid "Returns the first member found that matches the name provided." +msgstr "Returns the first member found that matches the name provided." + +msgid "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." +msgstr "The name can have an optional discriminator argument, e.g. \"Jake#0001\" or \"Jake\" will both do the lookup. However, the former will give a more precise result. Note that the discriminator must have all 4 digits for this to work." + +msgid "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." +msgstr "If a nickname is passed, then it is looked up via the nickname. Note however, that a nickname + discriminator combo will not look up the nickname but rather the username + discriminator combo due to nickname + discriminator not being unique." + +msgid "If no member is found, ``None`` is returned." +msgstr "If no member is found, ``None`` is returned." + +msgid "The name of the member to lookup with an optional discriminator." +msgstr "The name of the member to lookup with an optional discriminator." + +msgid "The member in this guild with the associated name. If not found then ``None`` is returned." +msgstr "The member in this guild with the associated name. If not found then ``None`` is returned." + +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "Creates a :class:`TextChannel` for the guild." + +msgid "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." +msgstr "Note that you need the :attr:`~Permissions.manage_channels` permission to create the channel." + +msgid "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." +msgstr "The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of overwrites with the target (either a :class:`Member` or a :class:`Role`) as the key and a :class:`PermissionOverwrite` as the value." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~TextChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The channel's name." +msgstr "The channel's name." + +msgid "The overwrites to apply to the channel. Useful for creating secret channels." +msgstr "The overwrites to apply to the channel. Useful for creating secret channels." + +msgid "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." +msgstr "The category to place the newly created channel under. The permissions will be automatically synced to category if no overwrites are provided." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0." + +msgid "The new channel's topic." +msgstr "The new channel's topic." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. The maximum value possible is `21600`." + +msgid "To mark the channel as NSFW or not." +msgstr "To mark the channel as NSFW or not." + +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "The reason for creating this channel. Shows up on the audit log." + +msgid "The channel that was just created." +msgstr "The channel that was just created." + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "You do not have the proper permissions to create this channel." + +msgid "Creating the channel failed." +msgstr "Creating the channel failed." + +msgid "The permission overwrite information is not in proper form." +msgstr "The permission overwrite information is not in proper form." + +msgid "Creating a basic channel:" +msgstr "Creating a basic channel:" + +msgid "Creating a \"secret\" channel:" +msgstr "Creating a \"secret\" channel:" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`VoiceChannel` instead." + +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "The channel's preferred audio bitrate in bits per second." + +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "The channel's limit for number of members that can be in a voice channel." + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the voice channel's participants. .. versionadded:: 2.0" + +msgid "The camera video quality for the voice channel's participants." +msgstr "The camera video quality for the voice channel's participants." + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." +msgstr "This is similar to :meth:`create_text_channel` except makes a :class:`StageChannel` instead." + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "Creates a :class:`ForumChannel` for the guild." + +msgid "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." +msgstr "Creating a channel of a specified position will not update the position of other channels to follow suit. A follow-up call to :meth:`~ForumChannel.edit` will be required to update the position of the channel in the channel list." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: v2.5" + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." + +msgid ":class:`ForumChannel`" +msgstr ":class:`ForumChannel`" + +msgid "The argument is not in proper form." +msgstr "The argument is not in proper form." + +msgid "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." +msgstr "Same as :meth:`create_text_channel` except makes a :class:`CategoryChannel` instead." + +msgid "The ``category`` parameter is not supported in this function since categories cannot have categories." +msgstr "The ``category`` parameter is not supported in this function since categories cannot have categories." + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Leaves the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." +msgstr "You cannot leave the guild that you own, you must delete it instead via :meth:`delete`." + +msgid "Leaving the guild failed." +msgstr "Leaving the guild failed." + +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "Deletes the guild. You must be the guild owner to delete the guild." + +msgid "Deleting the guild failed." +msgstr "Deleting the guild failed." + +msgid "You do not have permissions to delete the guild." +msgstr "You do not have permissions to delete the guild." + +msgid "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." +msgstr "Set whether it is required to have MFA enabled on your account to perform moderation actions. You must be the guild owner to do this." + +msgid "Whether MFA should be required to perform moderation actions." +msgstr "Whether MFA should be required to perform moderation actions." + +msgid "The reason to show up in the audit log." +msgstr "The reason to show up in the audit log." + +msgid "The operation failed." +msgstr "The operation failed." + +msgid "You are not the owner of the guild." +msgstr "You are not the owner of the guild." + +msgid "Edits the guild." +msgstr "Edits the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to edit the guild." + +msgid "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." +msgstr "The `rules_channel` and `public_updates_channel` keyword-only parameters were added." + +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "The `discovery_splash` and `community` keyword-only parameters were added." + +msgid "The newly updated guild is returned." +msgstr "The newly updated guild is returned." + +msgid "The new name of the guild." +msgstr "The new name of the guild." + +msgid "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." +msgstr "The new description of the guild. Could be ``None`` for no description. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the banner. Could be ``None`` to denote removal of the banner. This is only available to guilds that contain ``BANNER`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the invite splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``INVITE_SPLASH`` in :attr:`Guild.features`." + +msgid "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the discovery splash. Only PNG/JPEG supported. Could be ``None`` to denote removing the splash. This is only available to guilds that contain ``DISCOVERABLE`` in :attr:`Guild.features`." + +msgid "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." +msgstr "Whether the guild should be a Community guild. If set to ``True``\\, both ``rules_channel`` and ``public_updates_channel`` parameters are required." + +msgid "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." +msgstr "The new channel that is the AFK channel. Could be ``None`` for no AFK channel." + +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "The number of seconds until someone is moved to the AFK channel." + +msgid "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." +msgstr "The new owner of the guild to transfer ownership to. Note that you must be owner of the guild to do this." + +msgid "The new verification level for the guild." +msgstr "The new verification level for the guild." + +msgid "The new default notification level for the guild." +msgstr "The new default notification level for the guild." + +msgid "The new explicit content filter for the guild." +msgstr "The new explicit content filter for the guild." + +msgid "The new channel that is used for the system channel. Could be ``None`` for no system channel." +msgstr "The new channel that is used for the system channel. Could be ``None`` for no system channel." + +msgid "The new system channel settings to use with the new system channel." +msgstr "The new system channel settings to use with the new system channel." + +msgid "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." +msgstr "The new preferred locale for the guild. Used as the primary language in the guild. If set, this must be an ISO 639 code, e.g. ``en-US`` or ``ja`` or ``zh-CN``." + +msgid "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." +msgstr "The new channel that is used for rules. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules channel." + +msgid "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." +msgstr "The new channel that is used for public updates from Discord. This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no public updates channel." + +msgid "Whether the guild should have premium progress bar enabled." +msgstr "Whether the guild should have premium progress bar enabled." + +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "Whether the guild should have server invites enabled or disabled." + +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "The reason for editing this guild. Shows up on the audit log." + +msgid "You do not have permissions to edit the guild." +msgstr "You do not have permissions to edit the guild." + +msgid "Editing the guild failed." +msgstr "Editing the guild failed." + +msgid "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." +msgstr "The image format passed in to ``icon`` is invalid. It must be PNG or JPG. This is also raised if you are not the owner of the guild and request an ownership transfer." + +msgid "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." +msgstr "The newly updated guild. Note that this has the same limitations as mentioned in :meth:`Client.fetch_guild` and may not have full data." + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "Retrieves all :class:`abc.GuildChannel` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`channels` instead." +msgstr "This method is an API call. For general usage, consider :attr:`channels` instead." + +msgid "All channels in the guild." +msgstr "All channels in the guild." + +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "Sequence[:class:`abc.GuildChannel`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channels failed." +msgstr "Retrieving the channels failed." + +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "Returns a list of active :class:`Thread` that the client can access." + +msgid "This includes both private and public threads." +msgstr "This includes both private and public threads." + +msgid "The active threads" +msgstr "The active threads" + +msgid "List[:class:`Thread`]" +msgstr "List[:class:`Thread`]" + +msgid "The request to get the active threads failed." +msgstr "The request to get the active threads failed." + +msgid "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." +msgstr "Search for guild members whose usernames or nicknames start with the query string. Unlike :meth:`fetch_members`, this does not require :meth:`Intents.members`." + +msgid "This method is an API call. For general usage, consider filtering :attr:`members` instead." +msgstr "This method is an API call. For general usage, consider filtering :attr:`members` instead." + +msgid "Searches for usernames and nicknames that start with this string, case-insensitive." +msgstr "Searches for usernames and nicknames that start with this string, case-insensitive." + +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "The maximum number of members to retrieve, up to 1000." + +msgid "The list of members that have matched the query." +msgstr "The list of members that have matched the query." + +msgid "List[:class:`Member`]" +msgstr "List[:class:`Member`]" + +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "Retrieves a :class:`Member` from a guild ID, and a member ID." + +msgid "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." +msgstr "This method is an API call. If you have :attr:`Intents.members` and member cache enabled, consider :meth:`get_member` instead." + +msgid "The member's ID to fetch from." +msgstr "The member's ID to fetch from." + +msgid "The member from the member ID." +msgstr "The member from the member ID." + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Fetching the member failed." +msgstr "Fetching the member failed." + +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "Retrieves the :class:`BanEntry` for a user." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to get this information." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to get this information." + +msgid "The user to get ban information from." +msgstr "The user to get ban information from." + +msgid "The :class:`BanEntry` object for the specified user." +msgstr "The :class:`BanEntry` object for the specified user." + +msgid ":class:`BanEntry`" +msgstr ":class:`BanEntry`" + +msgid "You do not have proper permissions to get the information." +msgstr "You do not have proper permissions to get the information." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "An error occurred while fetching the information." + +msgid "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel_or_thread` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." +msgstr "An unknown channel type was received from Discord or the guild the channel belongs to is not the same as the one in this object points to." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving the guild's bans. In order to use this, you must have the :attr:`~Permissions.ban_members` permission. Users will always be returned in ascending order sorted by user ID. If both the ``before`` and ``after`` parameters are provided, only before is respected." + +msgid "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." +msgstr "The ``before``. and ``after`` parameters were changed. They are now of the type :class:`.abc.Snowflake` instead of `SnowflakeTime` to comply with the discord api." + +msgid "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." +msgstr "The ``limit``, ``before``. and ``after`` parameters were added. Now returns a :class:`.BanIterator` instead of a list of ``BanEntry`` objects." + +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "The number of bans to retrieve. Defaults to 1000." + +msgid "Retrieve bans before the given user." +msgstr "Retrieve bans before the given user." + +msgid "Retrieve bans after the given user." +msgstr "Retrieve bans after the given user." + +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr ":class:`.BanEntry` -- The ban entry for the ban." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" + +msgid "Prunes the guild from its inactive members." +msgstr "Prunes the guild from its inactive members." + +msgid "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." +msgstr "The inactive members are denoted if they have not logged on in ``days`` number of days and have no roles." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to use this." + +msgid "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." +msgstr "To check how many members you would prune without actually pruning, see the :meth:`estimate_pruned_members` function." + +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "To prune members that have specific roles see the ``roles`` parameter." + +msgid "The ``roles`` keyword-only parameter was added." +msgstr "The ``roles`` keyword-only parameter was added." + +msgid "The number of days before counting as inactive." +msgstr "The number of days before counting as inactive." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "The reason for doing this action. Shows up on the audit log." + +msgid "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." +msgstr "Whether to compute the prune count. This defaults to ``True`` which makes it prone to timeouts in very large guilds. In order to prevent timeouts, you must set this to ``False``. If this is set to ``False``\\, then this function will always return ``None``." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the pruning process. If a member has a role that is not specified, they'll be excluded." + +msgid "You do not have permissions to prune members." +msgstr "You do not have permissions to prune members." + +msgid "An error occurred while pruning members." +msgstr "An error occurred while pruning members." + +msgid "An integer was not passed for ``days``." +msgstr "An integer was not passed for ``days``." + +msgid "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." +msgstr "The number of members pruned. If ``compute_prune_count`` is ``False`` then this returns ``None``." + +msgid "Gets the list of templates from this guild." +msgstr "Gets the list of templates from this guild." + +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "Requires :attr:`~.Permissions.manage_guild` permissions." + +msgid "The templates for this guild." +msgstr "The templates for this guild." + +msgid "List[:class:`Template`]" +msgstr "List[:class:`Template`]" + +msgid "You don't have permissions to get the templates." +msgstr "You don't have permissions to get the templates." + +msgid "Gets the list of webhooks from this guild." +msgstr "Gets the list of webhooks from this guild." + +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "Requires :attr:`~.Permissions.manage_webhooks` permissions." + +msgid "The webhooks for this guild." +msgstr "The webhooks for this guild." + +msgid "List[:class:`Webhook`]" +msgstr "List[:class:`Webhook`]" + +msgid "You don't have permissions to get the webhooks." +msgstr "You don't have permissions to get the webhooks." + +msgid "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." +msgstr "Similar to :meth:`prune_members` except instead of actually pruning members, it returns how many members it would prune from the guild had it been called." + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded. .. versionadded:: 1.7" + +msgid "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." +msgstr "A list of :class:`abc.Snowflake` that represent roles to include in the estimate. If a member has a role that is not specified, they'll be excluded." + +msgid "The number of members estimated to be pruned." +msgstr "The number of members estimated to be pruned." + +msgid "An error occurred while fetching the prune members estimate." +msgstr "An error occurred while fetching the prune members estimate." + +msgid "Returns a list of all active instant invites from the guild." +msgstr "Returns a list of all active instant invites from the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to get this information." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to get this information." + +msgid "The list of invites that are currently active." +msgstr "The list of invites that are currently active." + +msgid "List[:class:`Invite`]" +msgstr "List[:class:`Invite`]" + +msgid "Creates a template for the guild." +msgstr "Creates a template for the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to do this." + +msgid "The name of the template." +msgstr "The name of the template." + +msgid "The description of the template." +msgstr "The description of the template." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" + +msgid "Attaches an integration to the guild." +msgstr "Attaches an integration to the guild." + +msgid "The integration type (e.g. Twitch)." +msgstr "The integration type (e.g. Twitch)." + +msgid "The integration ID." +msgstr "The integration ID." + +msgid "You do not have permission to create the integration." +msgstr "You do not have permission to create the integration." + +msgid "The account could not be found." +msgstr "The account could not be found." + +msgid "Returns a list of all integrations attached to the guild." +msgstr "Returns a list of all integrations attached to the guild." + +msgid "The list of integrations that are attached to the guild." +msgstr "The list of integrations that are attached to the guild." + +msgid "List[:class:`Integration`]" +msgstr "List[:class:`Integration`]" + +msgid "Fetching the integrations failed." +msgstr "Fetching the integrations failed." + +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "Retrieves a list of all :class:`Sticker`\\s for the guild." + +msgid "This method is an API call. For general usage, consider :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider :attr:`stickers` instead." + +msgid "An error occurred fetching the stickers." +msgstr "An error occurred fetching the stickers." + +msgid "The retrieved stickers." +msgstr "The retrieved stickers." + +msgid "List[:class:`GuildSticker`]" +msgstr "List[:class:`GuildSticker`]" + +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "Retrieves a custom :class:`Sticker` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`stickers` instead." + +msgid "The sticker's ID." +msgstr "The sticker's ID." + +msgid "The retrieved sticker." +msgstr "The retrieved sticker." + +msgid ":class:`GuildSticker`" +msgstr ":class:`GuildSticker`" + +msgid "The sticker requested could not be found." +msgstr "The sticker requested could not be found." + +msgid "An error occurred fetching the sticker." +msgstr "An error occurred fetching the sticker." + +msgid "Creates a :class:`Sticker` for the guild." +msgstr "Creates a :class:`Sticker` for the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis_and_stickers` permission to do this." + +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "The sticker name. Must be 2 to 30 characters." + +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "The sticker's description. If used, must be 2 to 100 characters." + +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "The name of a unicode emoji that represents the sticker's expression." + +msgid "The file of the sticker to upload." +msgstr "The file of the sticker to upload." + +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "The reason for creating this sticker. Shows up on the audit log." + +msgid "The created sticker." +msgstr "The created sticker." + +msgid "You are not allowed to create stickers." +msgstr "You are not allowed to create stickers." + +msgid "An error occurred creating a sticker." +msgstr "An error occurred creating a sticker." + +msgid "The parameters for the sticker are not correctly formatted." +msgstr "The parameters for the sticker are not correctly formatted." + +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "Deletes the custom :class:`Sticker` from the guild." + +msgid "The sticker you are deleting." +msgstr "The sticker you are deleting." + +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "The reason for deleting this sticker. Shows up on the audit log." + +msgid "You are not allowed to delete stickers." +msgstr "You are not allowed to delete stickers." + +msgid "An error occurred deleting the sticker." +msgstr "An error occurred deleting the sticker." + +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "Retrieves all custom :class:`Emoji`\\s from the guild." + +msgid "This method is an API call. For general usage, consider :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider :attr:`emojis` instead." + +msgid "An error occurred fetching the emojis." +msgstr "An error occurred fetching the emojis." + +msgid "The retrieved emojis." +msgstr "The retrieved emojis." + +msgid "List[:class:`Emoji`]" +msgstr "List[:class:`Emoji`]" + +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "Retrieves a custom :class:`Emoji` from the guild." + +msgid "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." +msgstr "This method is an API call. For general usage, consider iterating over :attr:`emojis` instead." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved emoji." + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid "The emoji requested could not be found." +msgstr "The emoji requested could not be found." + +msgid "An error occurred fetching the emoji." +msgstr "An error occurred fetching the emoji." + +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "Creates a custom :class:`Emoji` for the guild." + +msgid "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." +msgstr "There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the ``MORE_EMOJI`` feature which extends the limit to 200." + +msgid "You must have the :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji name. Must be at least 2 characters." +msgstr "The emoji name. Must be at least 2 characters." + +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." + +msgid "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." +msgstr "A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty to make it available to everyone." + +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "The reason for creating this emoji. Shows up on the audit log." + +msgid "You are not allowed to create emojis." +msgstr "You are not allowed to create emojis." + +msgid "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "Deletes the custom :class:`Emoji` from the guild." + +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "You must have :attr:`~Permissions.manage_emojis` permission to do this." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "The reason for deleting this emoji. Shows up on the audit log." + +msgid "You are not allowed to delete emojis." +msgstr "You are not allowed to delete emojis." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "Retrieves all :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider :attr:`roles` instead." +msgstr "This method is an API call. For general usage, consider :attr:`roles` instead." + +msgid "All roles in the guild." +msgstr "All roles in the guild." + +msgid "Retrieving the roles failed." +msgstr "Retrieving the roles failed." + +msgid "Creates a :class:`Role` for the guild." +msgstr "Creates a :class:`Role` for the guild." + +msgid "All fields are optional." +msgstr "All fields are optional." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to do this." + +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "Can now pass ``int`` to ``colour`` keyword-only parameter." + +msgid "The role name. Defaults to 'new role'." +msgstr "The role name. Defaults to 'new role'." + +msgid "The permissions to have. Defaults to no permissions." +msgstr "The permissions to have. Defaults to no permissions." + +msgid "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." +msgstr "The colour for the role. Defaults to :meth:`Colour.default`. This is aliased to ``color`` as well." + +msgid "Indicates if the role should be shown separately in the member list. Defaults to ``False``." +msgstr "Indicates if the role should be shown separately in the member list. Defaults to ``False``." + +msgid "Indicates if the role should be mentionable by others. Defaults to ``False``." +msgstr "Indicates if the role should be mentionable by others. Defaults to ``False``." + +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "The reason for creating this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. If this argument is passed, ``icon`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "The newly created role." +msgstr "The newly created role." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "You do not have permissions to create the role." +msgstr "You do not have permissions to create the role." + +msgid "Creating the role failed." +msgstr "Creating the role failed." + +msgid "An invalid keyword argument was given." +msgstr "An invalid keyword argument was given." + +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "Bulk edits a list of :class:`Role` in the guild." + +msgid "Example:" +msgstr "Example:" + +msgid "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." +msgstr "A :class:`dict` of :class:`Role` to :class:`int` to change the positions of each given role." + +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "The reason for editing the role positions. Shows up on the audit log." + +msgid "A list of all the roles in the guild." +msgstr "A list of all the roles in the guild." + +msgid "You do not have permissions to move the roles." +msgstr "You do not have permissions to move the roles." + +msgid "Moving the roles failed." +msgstr "Moving the roles failed." + +msgid "Kicks a user from the guild." +msgstr "Kicks a user from the guild." + +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "The user must meet the :class:`abc.Snowflake` abc." + +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.kick_members` permission to do this." + +msgid "The user to kick from their guild." +msgstr "The user to kick from their guild." + +msgid "The reason the user got kicked." +msgstr "The reason the user got kicked." + +msgid "You do not have the proper permissions to kick." +msgstr "You do not have the proper permissions to kick." + +msgid "Kicking failed." +msgstr "Kicking failed." + +msgid "Bans a user from the guild." +msgstr "Bans a user from the guild." + +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "You must have the :attr:`~Permissions.ban_members` permission to do this." + +msgid "The user to ban from their guild." +msgstr "The user to ban from their guild." + +msgid "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." +msgstr "The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (i.e. 7 days). The default is 0." + +msgid "The reason the user got banned." +msgstr "The reason the user got banned." + +msgid "You do not have the proper permissions to ban." +msgstr "You do not have the proper permissions to ban." + +msgid "Banning failed." +msgstr "Banning failed." + +msgid "Bulk ban users from the guild." +msgstr "Bulk ban users from the guild." + +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "The users must meet the :class:`abc.Snowflake` abc." + +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "An argument list of users to ban from the guild, up to 200." + +msgid "The reason the users were banned." +msgstr "The reason the users were banned." + +msgid "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." +msgstr "Returns two lists: the first contains members that were successfully banned, while the second is members that could not be banned." + +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" + +msgid "You tried to ban more than 200 users." +msgstr "You tried to ban more than 200 users." + +msgid "No users were banned." +msgstr "No users were banned." + +msgid "Unbans a user from the guild." +msgstr "Unbans a user from the guild." + +msgid "The user to unban." +msgstr "The user to unban." + +msgid "You do not have the proper permissions to unban." +msgstr "You do not have the proper permissions to unban." + +msgid "Unbanning failed." +msgstr "Unbanning failed." + +msgid "Returns the guild's special vanity invite." +msgstr "Returns the guild's special vanity invite." + +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this as well." + +msgid "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." +msgstr "The special vanity invite. If ``None`` then the guild does not have a vanity invite set." + +msgid "Optional[:class:`Invite`]" +msgstr "Optional[:class:`Invite`]" + +msgid "You do not have the proper permissions to get this." +msgstr "You do not have the proper permissions to get this." + +msgid "Retrieving the vanity invite failed." +msgstr "Retrieving the vanity invite failed." + +msgid "Returns the widget of the guild." +msgstr "Returns the widget of the guild." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`Widget`" +msgstr ":class:`Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "Edits the widget of the guild." +msgstr "Edits the widget of the guild." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission to use this" + +msgid "Whether to enable the widget for the guild." +msgstr "Whether to enable the widget for the guild." + +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "The new widget channel. ``None`` removes the widget channel." + +msgid "You do not have permission to edit the widget." +msgstr "You do not have permission to edit the widget." + +msgid "Editing the widget failed." +msgstr "Editing the widget failed." + +msgid "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." +msgstr "Requests all members that belong to this guild. In order to use this, :meth:`Intents.members` must be enabled." + +msgid "This is a websocket operation and can be slow." +msgstr "This is a websocket operation and can be slow." + +msgid "Whether to cache the members as well." +msgstr "Whether to cache the members as well." + +msgid "Request members that belong to this guild whose username starts with the query given." +msgstr "Request members that belong to this guild whose username starts with the query given." + +msgid "The string that the username's start with." +msgstr "The string that the username's start with." + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned. .. versionadded:: 1.4" + +msgid "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." +msgstr "List of user IDs to search for. If the user ID is not in the guild then it won't be returned." + +msgid "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." +msgstr "The maximum number of members to send back. If no query is passed, passing ``None`` returns all members. If a ``query`` or ``user_ids`` is passed, must be between 1 and 100. Defaults to 5." + +msgid "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" +msgstr "Whether to request for presences to be provided. This defaults to ``False``. .. versionadded:: 1.6" + +msgid "Whether to request for presences to be provided. This defaults to ``False``." +msgstr "Whether to request for presences to be provided. This defaults to ``False``." + +msgid "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "Whether to cache the members internally. This makes operations such as :meth:`get_member` work for those that matched. Defaults to ``True``." + +msgid "The query timed out waiting for the members." +msgstr "The query timed out waiting for the members." + +msgid "Invalid parameters were passed to the function" +msgstr "Invalid parameters were passed to the function" + +msgid "The presences intent is not enabled." +msgstr "The presences intent is not enabled." + +msgid "Changes client's voice state in the guild." +msgstr "Changes client's voice state in the guild." + +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "Channel the client wants to join. Use ``None`` to disconnect." + +msgid "Indicates if the client should be self-muted." +msgstr "Indicates if the client should be self-muted." + +msgid "Indicates if the client should be self-deafened." +msgstr "Indicates if the client should be self-deafened." + +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "Returns the :class:`WelcomeScreen` of the guild." + +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in order to get this." + +msgid "The welcome screen of guild." +msgstr "The welcome screen of guild." + +msgid ":class:`WelcomeScreen`" +msgstr ":class:`WelcomeScreen`" + +msgid "Retrieving the welcome screen failed somehow." +msgstr "Retrieving the welcome screen failed somehow." + +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "The guild doesn't have a welcome screen or community feature is disabled." + +msgid "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." +msgstr "A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome screen." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the guild to do this." + +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" + +msgid "The new description of welcome screen." +msgstr "The new description of welcome screen." + +msgid "The welcome channels. The order of the channels would be same as the passed list order." +msgstr "The welcome channels. The order of the channels would be same as the passed list order." + +msgid "Whether the welcome screen should be displayed." +msgstr "Whether the welcome screen should be displayed." + +msgid "The reason that shows up on audit log." +msgstr "The reason that shows up on audit log." + +msgid "The edited welcome screen." +msgstr "The edited welcome screen." + +msgid "Editing the welcome screen failed somehow." +msgstr "Editing the welcome screen failed somehow." + +msgid "You don't have permissions to edit the welcome screen." +msgstr "You don't have permissions to edit the welcome screen." + +msgid "This welcome screen does not exist." +msgstr "This welcome screen does not exist." + +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "Returns a list of :class:`ScheduledEvent` in the guild." + +msgid "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." +msgstr "This method is an API call. For general usage, consider :attr:`scheduled_events` instead." + +msgid "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." +msgstr "If the scheduled event should be fetched with the number of users that are interested in the events. Defaults to ``True``." + +msgid "The fetched scheduled events." +msgstr "The fetched scheduled events." + +msgid "List[:class:`ScheduledEvent`]" +msgstr "List[:class:`ScheduledEvent`]" + +msgid "The scheduled events intent is not enabled." +msgstr "The scheduled events intent is not enabled." + +msgid "Getting the scheduled events failed." +msgstr "Getting the scheduled events failed." + +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "Retrieves a :class:`ScheduledEvent` from event ID." + +msgid "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." +msgstr "This method is an API call. If you have :attr:`Intents.scheduled_events`, consider :meth:`get_scheduled_event` instead." + +msgid "The event's ID to fetch with." +msgstr "The event's ID to fetch with." + +msgid "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." +msgstr "If the scheduled vent should be fetched with the number of users that are interested in the event. Defaults to ``True``." + +msgid "The scheduled event from the event ID." +msgstr "The scheduled event from the event ID." + +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "Optional[:class:`ScheduledEvent`]" + +msgid "Fetching the event failed." +msgstr "Fetching the event failed." + +msgid "Event not found." +msgstr "Event not found." + +msgid "Returns a Scheduled Event with the given ID." +msgstr "Returns a Scheduled Event with the given ID." + +msgid "The scheduled event or ``None`` if not found." +msgstr "The scheduled event or ``None`` if not found." + +msgid "|coro| Creates a scheduled event." +msgstr "|coro| Creates a scheduled event." + +msgid "The name of the scheduled event." +msgstr "The name of the scheduled event." + +msgid "The description of the scheduled event." +msgstr "The description of the scheduled event." + +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "A datetime object of when the scheduled event is supposed to start." + +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "A datetime object of when the scheduled event is supposed to end." + +msgid "The location of where the event is happening." +msgstr "The location of where the event is happening." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to change this parameter." + +msgid "The reason to show in the audit log." +msgstr "The reason to show in the audit log." + +msgid "The cover image of the scheduled event" +msgstr "The cover image of the scheduled event" + +msgid "The created scheduled event." +msgstr "The created scheduled event." + +msgid "You do not have the Manage Events permission." +msgstr "You do not have the Manage Events permission." + +msgid "A list of scheduled events in this guild." +msgstr "A list of scheduled events in this guild." + +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "Retrieves a list of auto moderation rules for this guild." + +msgid "The auto moderation rules for this guild." +msgstr "The auto moderation rules for this guild." + +msgid "List[:class:`AutoModRule`]" +msgstr "List[:class:`AutoModRule`]" + +msgid "Getting the auto moderation rules failed." +msgstr "Getting the auto moderation rules failed." + +msgid "You do not have the Manage Guild permission." +msgstr "You do not have the Manage Guild permission." + +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "Retrieves a :class:`AutoModRule` from rule ID." + +msgid "The requested auto moderation rule." +msgstr "The requested auto moderation rule." + +msgid ":class:`AutoModRule`" +msgstr ":class:`AutoModRule`" + +msgid "Getting the auto moderation rule failed." +msgstr "Getting the auto moderation rule failed." + +msgid "Creates an auto moderation rule." +msgstr "Creates an auto moderation rule." + +msgid "The name of the auto moderation rule." +msgstr "The name of the auto moderation rule." + +msgid "The type of event that triggers the rule." +msgstr "The type of event that triggers the rule." + +msgid "The rule's trigger type." +msgstr "The rule's trigger type." + +msgid "The rule's trigger metadata." +msgstr "The rule's trigger metadata." + +msgid "The actions to take when the rule is triggered." +msgstr "The actions to take when the rule is triggered." + +msgid "Whether the rule is enabled." +msgstr "Whether the rule is enabled." + +msgid "A list of roles that are exempt from the rule." +msgstr "A list of roles that are exempt from the rule." + +msgid "A list of channels that are exempt from the rule." +msgstr "A list of channels that are exempt from the rule." + +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "The reason for creating the rule. Shows up in the audit log." + +msgid "The new auto moderation rule." +msgstr "The new auto moderation rule." + +msgid "Creating the auto moderation rule failed." +msgstr "Creating the auto moderation rule failed." + +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "Returns the :class:`Onboarding` flow for the guild." + +msgid "The onboarding flow for the guild." +msgstr "The onboarding flow for the guild." + +msgid ":class:`Onboarding`" +msgstr ":class:`Onboarding`" + +msgid "Retrieving the onboarding flow failed somehow." +msgstr "Retrieving the onboarding flow failed somehow." + +msgid "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." +msgstr "A shorthand for :attr:`Onboarding.edit` without fetching the onboarding flow." + +msgid "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` and :attr:`~Permissions.manage_roles` permissions in the guild to do this." + +msgid "The new list of prompts for this flow." +msgstr "The new list of prompts for this flow." + +msgid "The new default channels that users are opted into." +msgstr "The new default channels that users are opted into." + +msgid "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." +msgstr "Whether onboarding should be enabled. Setting this to ``True`` requires the guild to have ``COMMUNITY`` in :attr:`~Guild.features` and at least 7 ``default_channels``." + +msgid "The new onboarding mode." +msgstr "The new onboarding mode." + +msgid "The reason that shows up on Audit log." +msgstr "The reason that shows up on Audit log." + +msgid "The updated onboarding flow." +msgstr "The updated onboarding flow." + +msgid "Editing the onboarding flow failed somehow." +msgstr "Editing the onboarding flow failed somehow." + +msgid "You don't have permissions to edit the onboarding flow." +msgstr "You don't have permissions to edit the onboarding flow." + +msgid "Deletes an auto moderation rule." +msgstr "Deletes an auto moderation rule." + +msgid "The ID of the auto moderation rule." +msgstr "The ID of the auto moderation rule." + +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "The reason for deleting the rule. Shows up in the audit log." + +msgid "Deleting the auto moderation rule failed." +msgstr "Deleting the auto moderation rule failed." + +msgid "Creates a test entitlement for the guild." +msgstr "Creates a test entitlement for the guild." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the guild's entitlements." + +msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." +msgstr "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." + +msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." +msgstr "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." + +msgid "The reason this user was banned." +msgstr "The reason this user was banned." + +msgid "The :class:`User` that was banned." +msgstr "The :class:`User` that was banned." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "Represents a Discord member to a :class:`Guild`." + +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "This implements a lot of the functionality of :class:`User`." + +msgid "Checks if two members are equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are equal. Note that this works with :class:`User` instances too." + +msgid "Checks if two members are not equal. Note that this works with :class:`User` instances too." +msgstr "Checks if two members are not equal. Note that this works with :class:`User` instances too." + +msgid "Returns the member's hash." +msgstr "Returns the member's hash." + +msgid "Returns the member's name with the discriminator or global_name." +msgstr "Returns the member's name with the discriminator or global_name." + +msgid "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC that the member joined the guild. If the member left and rejoined the guild, this will be the latest date. In certain cases, this can be ``None``." + +msgid "The activities that the user is currently doing." +msgstr "The activities that the user is currently doing." + +msgid "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, a user's Spotify activity may not appear if they are listening to a song with a title longer than 128 characters." + +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "The guild that the member belongs to." +msgstr "The guild that the member belongs to." + +msgid "The guild specific nickname of the user." +msgstr "The guild specific nickname of the user." + +msgid "Whether the member is pending member verification." +msgstr "Whether the member is pending member verification." + +msgid "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." +msgstr "An aware datetime object that specifies the date and time in UTC when the member used their \"Nitro boost\" on the guild, if available. This could be ``None``." + +msgid "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." +msgstr "An aware datetime object that specifies the date and time in UTC when the member will be removed from timeout." + +msgid "Extra attributes of the member." +msgstr "Extra attributes of the member." + +msgid ":class:`MemberFlags`" +msgstr ":class:`MemberFlags`" + +msgid "Equivalent to :attr:`User.name`" +msgstr "Equivalent to :attr:`User.name`" + +msgid "Equivalent to :attr:`User.id`" +msgstr "Equivalent to :attr:`User.id`" + +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "Equivalent to :attr:`User.discriminator`" + +msgid "Equivalent to :attr:`User.bot`" +msgstr "Equivalent to :attr:`User.bot`" + +msgid "Equivalent to :attr:`User.system`" +msgstr "Equivalent to :attr:`User.system`" + +msgid "Equivalent to :attr:`User.created_at`" +msgstr "Equivalent to :attr:`User.created_at`" + +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "Equivalent to :attr:`User.default_avatar`" + +msgid "Equivalent to :attr:`User.avatar`" +msgstr "Equivalent to :attr:`User.avatar`" + +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "Equivalent to :attr:`User.dm_channel`" + +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "Equivalent to :attr:`User.mutual_guilds`" + +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "Equivalent to :attr:`User.public_flags`" + +msgid "Equivalent to :attr:`User.banner`" +msgstr "Equivalent to :attr:`User.banner`" + +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "Equivalent to :attr:`User.accent_color`" + +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "Equivalent to :attr:`User.accent_colour`" + +msgid "The member's overall status as a string value." +msgstr "The member's overall status as a string value." + +msgid "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." +msgstr "The member's overall status. If the value is unknown, then it will be a :class:`str` instead." + +msgid "The member's status on a mobile device, if applicable." +msgstr "The member's status on a mobile device, if applicable." + +msgid "The member's status on the desktop client, if applicable." +msgstr "The member's status on the desktop client, if applicable." + +msgid "The member's status on the web client, if applicable." +msgstr "The member's status on the web client, if applicable." + +msgid "The member's global name, if applicable." +msgstr "The member's global name, if applicable." + +msgid "A helper function that determines if a member is active on a mobile device." +msgstr "A helper function that determines if a member is active on a mobile device." + +msgid "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a colour denoting the rendered colour for the member. If the default colour is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." +msgstr "A property that returns a color denoting the rendered color for the member. If the default color is the one rendered then an instance of :meth:`Colour.default` is returned." + +msgid "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." +msgstr "A :class:`list` of :class:`Role` that the member belongs to. Note that the first element of this list is always the default '@everyone' role." + +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "These roles are sorted by their position in the role hierarchy." + +msgid "Returns a string that allows you to mention the member." +msgstr "Returns a string that allows you to mention the member." + +msgid "Returns the user's display name. This will either be their guild specific nickname, global name or username." +msgstr "Returns the user's display name. This will either be their guild specific nickname, global name or username." + +msgid "Returns the member's display avatar." +msgstr "Returns the member's display avatar." + +msgid "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." +msgstr "For regular members this is just their avatar, but if they have a guild specific avatar then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild avatar the member has. If unavailable, ``None`` is returned." + +msgid "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." +msgstr "Returns the primary activity the user is currently doing. Could be ``None`` if no activity is being done." + +msgid "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." +msgstr "Due to a Discord API limitation, this may be ``None`` if the user is listening to a song on Spotify with a title longer than 128 characters." + +msgid "A user may have multiple activities, these can be accessed under :attr:`activities`." +msgstr "A user may have multiple activities, these can be accessed under :attr:`activities`." + +msgid "Checks if the member is mentioned in the specified message." +msgstr "Checks if the member is mentioned in the specified message." + +msgid "Indicates if the member is mentioned in the message." +msgstr "Indicates if the member is mentioned in the message." + +msgid "Returns the member's highest role." +msgstr "Returns the member's highest role." + +msgid "This is useful for figuring where a member stands in the role hierarchy chain." +msgstr "This is useful for figuring where a member stands in the role hierarchy chain." + +msgid "Returns the member's guild permissions." +msgstr "Returns the member's guild permissions." + +msgid "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." +msgstr "This only takes into consideration the guild permissions and not most of the implied permissions or any of the channel permission overwrites. For 100% accurate permission calculation, please use :meth:`abc.GuildChannel.permissions_for`." + +msgid "This does take into consideration guild ownership and the administrator implication." +msgstr "This does take into consideration guild ownership and the administrator implication." + +msgid "Returns the member's current voice state." +msgstr "Returns the member's current voice state." + +msgid "Returns whether the member is timed out." +msgstr "Returns whether the member is timed out." + +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "Bans this member. Equivalent to :meth:`Guild.ban`." + +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "Unbans this member. Equivalent to :meth:`Guild.unban`." + +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "Kicks this member. Equivalent to :meth:`Guild.kick`." + +msgid "Edits the member's data." +msgstr "Edits the member's data." + +msgid "Depending on the parameter passed, this requires different permissions listed below:" +msgstr "Depending on the parameter passed, this requires different permissions listed below:" + +msgid "Parameter" +msgstr "Parameter" + +msgid "Permission" +msgstr "Permission" + +msgid "nick" +msgstr "nick" + +msgid ":attr:`Permissions.manage_nicknames`" +msgstr ":attr:`Permissions.manage_nicknames`" + +msgid "mute" +msgstr "mute" + +msgid ":attr:`Permissions.mute_members`" +msgstr ":attr:`Permissions.mute_members`" + +msgid "deafen" +msgstr "deafen" + +msgid ":attr:`Permissions.deafen_members`" +msgstr ":attr:`Permissions.deafen_members`" + +msgid "roles" +msgstr "roles" + +msgid ":attr:`Permissions.manage_roles`" +msgstr ":attr:`Permissions.manage_roles`" + +msgid "voice_channel" +msgstr "voice_channel" + +msgid ":attr:`Permissions.move_members`" +msgstr ":attr:`Permissions.move_members`" + +msgid "communication_disabled_until" +msgstr "communication_disabled_until" + +msgid ":attr:`Permissions.moderate_members`" +msgstr ":attr:`Permissions.moderate_members`" + +msgid "bypass_verification" +msgstr "bypass_verification" + +msgid "See note below" +msgstr "See note below" + +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "`bypass_verification` may be edited under three scenarios:" + +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "Client has :attr:`Permissions.manage_guild`" + +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "Client has :attr:`Permissions.manage_roles`" + +msgid "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" + +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." + +msgid "The newly member is now optionally returned, if applicable." +msgstr "The newly member is now optionally returned, if applicable." + +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "The member's new nickname. Use ``None`` to remove the nickname." + +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "Indicates if the member should be guild muted or un-muted." + +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "Indicates if the member should be guild deafened or un-deafened." + +msgid "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" +msgstr "Indicates if the member should be suppressed in stage channels. .. versionadded:: 1.7" + +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "Indicates if the member should be suppressed in stage channels." + +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "The member's new list of roles. This *replaces* the roles." + +msgid "The voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "The reason for editing this member. Shows up on the audit log." + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout. .. versionadded:: 2.0" + +msgid "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." +msgstr "Temporarily puts the member in timeout until this time. If the value is ``None``, then the user is removed from timeout." + +msgid "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" +msgstr "Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6" + +msgid "Indicates if the member should bypass the guild's verification requirements." +msgstr "Indicates if the member should bypass the guild's verification requirements." + +msgid "The newly updated member, if applicable. This is only returned when certain fields are updated." +msgstr "The newly updated member, if applicable. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.Member`]" +msgstr "Optional[:class:`.Member`]" + +msgid "You do not have the proper permissions to the action requested." +msgstr "You do not have the proper permissions to the action requested." + +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "Applies a timeout to a member in the guild until a set datetime." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to timeout a member." + +msgid "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." +msgstr "The date and time to timeout the member for. If this is ``None`` then the member is removed from timeout." + +msgid "You do not have permissions to timeout members." +msgstr "You do not have permissions to timeout members." + +msgid "An error occurred doing the request." +msgstr "An error occurred doing the request." + +msgid "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." +msgstr "Applies a timeout to a member in the guild for a set duration. A shortcut method for :meth:`~.timeout`, and equivalent to ``timeout(until=datetime.utcnow() + duration, reason=reason)``." + +msgid "The duration to timeout the member for." +msgstr "The duration to timeout the member for." + +msgid "Removes the timeout from a member." +msgstr "Removes the timeout from a member." + +msgid "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." +msgstr "You must have the :attr:`~Permissions.moderate_members` permission to remove the timeout." + +msgid "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." +msgstr "This is equivalent to calling :meth:`~.timeout` and passing ``None`` to the ``until`` parameter." + +msgid "You do not have permissions to remove the timeout." +msgstr "You do not have permissions to remove the timeout." + +msgid "Request to speak in the connected channel." +msgstr "Request to speak in the connected channel." + +msgid "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Only applies to stage channels. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." +msgstr "Requesting members that are not the client is equivalent to :attr:`.edit` providing ``suppress`` as ``False``." + +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "Moves a member to a new voice channel (they must be connected first)." + +msgid "You must have the :attr:`~Permissions.move_members` permission to use this." +msgstr "You must have the :attr:`~Permissions.move_members` permission to use this." + +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "This raises the same exceptions as :meth:`edit`." + +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "Can now pass ``None`` to kick a member from voice." + +msgid "The new voice channel to move the member to. Pass ``None`` to kick them from voice." +msgstr "The new voice channel to move the member to. Pass ``None`` to kick them from voice." + +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "Gives the member a number of :class:`Role`\\s." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the added :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to give to the member." + +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "The reason for adding these roles. Shows up on the audit log." + +msgid "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically add roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to add these roles." +msgstr "You do not have permissions to add these roles." + +msgid "Adding roles failed." +msgstr "Adding roles failed." + +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "Equivalent to :attr:`User.avatar_decoration`" + +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "Equivalent to :attr:`User.is_migrated`" + +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "Equivalent to :attr:`User.jump_url`" + +msgid "Removes :class:`Role`\\s from this member." +msgstr "Removes :class:`Role`\\s from this member." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this, and the removed :class:`Role`\\s must appear lower in the list of roles than the highest role of the member." + +msgid "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." +msgstr "An argument list of :class:`abc.Snowflake` representing a :class:`Role` to remove from the member." + +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "The reason for removing these roles. Shows up on the audit log." + +msgid "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." +msgstr "Whether to atomically remove roles. This will ensure that multiple operations will always be applied regardless of the current state of the cache." + +msgid "You do not have permissions to remove these roles." +msgstr "You do not have permissions to remove these roles." + +msgid "Removing the roles failed." +msgstr "Removing the roles failed." + +msgid "Returns a role with the given ID from roles which the member has." +msgstr "Returns a role with the given ID from roles which the member has." + +msgid "The role or ``None`` if not found in the member's roles." +msgstr "The role or ``None`` if not found in the member's roles." + +msgid "Represents a Discord template." +msgstr "Represents a Discord template." + +msgid "The template code." +msgstr "The template code." + +msgid "How many times the template has been used." +msgstr "How many times the template has been used." + +msgid "The creator of the template." +msgstr "The creator of the template." + +msgid "An aware datetime in UTC representing when the template was created." +msgstr "An aware datetime in UTC representing when the template was created." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." +msgstr "An aware datetime in UTC representing when the template was last updated. This is referred to as \"last synced\" in the official Discord client." + +msgid "The source guild." +msgstr "The source guild." + +msgid "Whether the template has unsynced changes." +msgstr "Whether the template has unsynced changes." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "Creates a :class:`.Guild` using the template." +msgstr "Creates a :class:`.Guild` using the template." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Sync the template to the guild's current state." +msgstr "Sync the template to the guild's current state." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this." + +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "The template is no longer synced in-place, instead it is returned." + +msgid "The newly synced template." +msgstr "The newly synced template." + +msgid ":class:`Template`" +msgstr ":class:`Template`" + +msgid "Syncing the template failed." +msgstr "Syncing the template failed." + +msgid "You don't have permissions to sync the template." +msgstr "You don't have permissions to sync the template." + +msgid "This template does not exist." +msgstr "This template does not exist." + +msgid "Edit the template metadata." +msgstr "Edit the template metadata." + +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "The template is no longer edited in-place, instead it is returned." + +msgid "The template's new name." +msgstr "The template's new name." + +msgid "The template's new description." +msgstr "The template's new description." + +msgid "The newly edited template." +msgstr "The newly edited template." + +msgid "Editing the template failed." +msgstr "Editing the template failed." + +msgid "You don't have permissions to edit the template." +msgstr "You don't have permissions to edit the template." + +msgid "Delete the template." +msgstr "Delete the template." + +msgid "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "You must have the :attr:`~Permissions.manage_guild` permission in the source guild to do this. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Deleting the template failed." +msgstr "Deleting the template failed." + +msgid "You don't have permissions to delete the template." +msgstr "You don't have permissions to delete the template." + +msgid "The template url." +msgstr "The template url." + +msgid "AutoMod" +msgstr "AutoMod" + +msgid "Represents a guild's auto moderation rule." +msgstr "Represents a guild's auto moderation rule." + +msgid "Checks if two rules are equal." +msgstr "Checks if two rules are equal." + +msgid "Checks if two rules are not equal." +msgstr "Checks if two rules are not equal." + +msgid "Returns the rule's hash." +msgstr "Returns the rule's hash." + +msgid "Returns the rule's name." +msgstr "Returns the rule's name." + +msgid "The rule's ID." +msgstr "The rule's ID." + +msgid "The rule's name." +msgstr "The rule's name." + +msgid "The ID of the user who created this rule." +msgstr "The ID of the user who created this rule." + +msgid "Indicates in what context the rule is checked." +msgstr "Indicates in what context the rule is checked." + +msgid ":class:`AutoModEventType`" +msgstr ":class:`AutoModEventType`" + +msgid "Indicates what type of information is checked to determine whether the rule is triggered." +msgstr "Indicates what type of information is checked to determine whether the rule is triggered." + +msgid ":class:`AutoModTriggerType`" +msgstr ":class:`AutoModTriggerType`" + +msgid ":class:`AutoModTriggerMetadata`" +msgstr ":class:`AutoModTriggerMetadata`" + +msgid "The actions to perform when the rule is triggered." +msgstr "The actions to perform when the rule is triggered." + +msgid "List[:class:`AutoModAction`]" +msgstr "List[:class:`AutoModAction`]" + +msgid "Whether this rule is enabled." +msgstr "Whether this rule is enabled." + +msgid "The IDs of the roles that are exempt from this rule." +msgstr "The IDs of the roles that are exempt from this rule." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the channels that are exempt from this rule." +msgstr "The IDs of the channels that are exempt from this rule." + +msgid "The guild this rule belongs to." +msgstr "The guild this rule belongs to." + +msgid "The member who created this rule." +msgstr "The member who created this rule." + +msgid "The roles that are exempt from this rule." +msgstr "The roles that are exempt from this rule." + +msgid "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a role is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "The channels that are exempt from this rule." +msgstr "The channels that are exempt from this rule." + +msgid "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." +msgstr "If a channel is not found in the guild's cache, then it will be returned as an :class:`Object`." + +msgid "Deletes this rule." +msgstr "Deletes this rule." + +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "The reason for deleting this rule. Shows up in the audit log." + +msgid "Edits this rule." +msgstr "Edits this rule." + +msgid "The rule's new name." +msgstr "The rule's new name." + +msgid "The new context in which the rule is checked." +msgstr "The new context in which the rule is checked." + +msgid "The new trigger metadata." +msgstr "The new trigger metadata." + +msgid "The new actions to perform when the rule is triggered." +msgstr "The new actions to perform when the rule is triggered." + +msgid "The roles that will be exempt from this rule." +msgstr "The roles that will be exempt from this rule." + +msgid "The channels that will be exempt from this rule." +msgstr "The channels that will be exempt from this rule." + +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "The reason for editing this rule. Shows up in the audit log." + +msgid "The newly updated rule, if applicable. This is only returned when fields are updated." +msgstr "The newly updated rule, if applicable. This is only returned when fields are updated." + +msgid "Optional[:class:`.AutoModRule`]" +msgstr "Optional[:class:`.AutoModRule`]" + +msgid "Represents an action for a guild's auto moderation rule." +msgstr "Represents an action for a guild's auto moderation rule." + +msgid "The action's type." +msgstr "The action's type." + +msgid ":class:`AutoModActionType`" +msgstr ":class:`AutoModActionType`" + +msgid "The action's metadata." +msgstr "The action's metadata." + +msgid ":class:`AutoModActionMetadata`" +msgstr ":class:`AutoModActionMetadata`" + +msgid "Represents an action's metadata." +msgstr "Represents an action's metadata." + +msgid "Depending on the action's type, different attributes will be used." +msgstr "Depending on the action's type, different attributes will be used." + +msgid "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." +msgstr "The ID of the channel to send the message to. Only for actions of type :attr:`AutoModActionType.send_alert_message`." + +msgid "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "How long the member that triggered the action should be timed out for. Only for actions of type :attr:`AutoModActionType.timeout`." + +msgid ":class:`datetime.timedelta`" +msgstr ":class:`datetime.timedelta`" + +msgid "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." +msgstr "An additional message shown to members when their message is blocked. Maximum 150 characters. Only for actions of type :attr:`AutoModActionType.block_message`." + +msgid "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." +msgstr "Represents a rule's trigger metadata, defining additional data used to determine when a rule triggers." + +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "Depending on the trigger type, different metadata attributes will be used:" + +msgid "Attribute" +msgstr "Attribute" + +msgid "Trigger Types" +msgstr "Trigger Types" + +msgid ":attr:`keyword_filter`" +msgstr ":attr:`keyword_filter`" + +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr ":attr:`AutoModTriggerType.keyword`" + +msgid ":attr:`regex_patterns`" +msgstr ":attr:`regex_patterns`" + +msgid ":attr:`presets`" +msgstr ":attr:`presets`" + +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`allow_list`" +msgstr ":attr:`allow_list`" + +msgid ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" +msgstr ":attr:`AutoModTriggerType.keyword`\\, :attr:`AutoModTriggerType.keyword_preset`" + +msgid ":attr:`mention_total_limit`" +msgstr ":attr:`mention_total_limit`" + +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr ":attr:`AutoModTriggerType.mention_spam`" + +msgid "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." +msgstr "Each attribute has limits that may change based on the trigger type. See `here `_ for information on attribute limits." + +msgid "A list of substrings to filter." +msgstr "A list of substrings to filter." + +msgid "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." +msgstr "A list of regex patterns to filter using Rust-flavored regex, which is not fully compatible with regex syntax supported by the builtin `re` module." + +msgid "A list of preset keyword sets to filter." +msgstr "A list of preset keyword sets to filter." + +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "List[:class:`AutoModKeywordPresetType`]" + +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "A list of substrings to allow, overriding keyword and regex matches." + +msgid "The total number of unique role and user mentions allowed." +msgstr "The total number of unique role and user mentions allowed." + +msgid "Invites" +msgstr "Invites" + +msgid "Represents a \"partial\" invite guild." +msgstr "Represents a \"partial\" invite guild." + +msgid "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." +msgstr "This model will be given when the user is not part of the guild the :class:`Invite` resolves to." + +msgid "Checks if two partial guilds are the same." +msgstr "Checks if two partial guilds are the same." + +msgid "Checks if two partial guilds are not the same." +msgstr "Checks if two partial guilds are not the same." + +msgid "Return the partial guild's hash." +msgstr "Return the partial guild's hash." + +msgid "Returns the partial guild's name." +msgstr "Returns the partial guild's name." + +msgid "The partial guild's name." +msgstr "The partial guild's name." + +msgid "The partial guild's ID." +msgstr "The partial guild's ID." + +msgid "The partial guild's verification level." +msgstr "The partial guild's verification level." + +msgid "A list of features the guild has. See :attr:`Guild.features` for more information." +msgstr "A list of features the guild has. See :attr:`Guild.features` for more information." + +msgid "The partial guild's description." +msgstr "The partial guild's description." + +msgid "Represents a \"partial\" invite channel." +msgstr "Represents a \"partial\" invite channel." + +msgid "Checks if two partial channels are the same." +msgstr "Checks if two partial channels are the same." + +msgid "Checks if two partial channels are not the same." +msgstr "Checks if two partial channels are not the same." + +msgid "Return the partial channel's hash." +msgstr "Return the partial channel's hash." + +msgid "Returns the partial channel's name." +msgstr "Returns the partial channel's name." + +msgid "The partial channel's name." +msgstr "The partial channel's name." + +msgid "The partial channel's ID." +msgstr "The partial channel's ID." + +msgid "The partial channel's type." +msgstr "The partial channel's type." + +msgid ":class:`ChannelType`" +msgstr ":class:`ChannelType`" + +msgid "The string that allows you to mention the channel." +msgstr "The string that allows you to mention the channel." + +msgid "Returns the channel's creation time in UTC." +msgstr "Returns the channel's creation time in UTC." + +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." + +msgid "Checks if two invites are equal." +msgstr "Checks if two invites are equal." + +msgid "Checks if two invites are not equal." +msgstr "Checks if two invites are not equal." + +msgid "Returns the invite hash." +msgstr "Returns the invite hash." + +msgid "Returns the invite URL." +msgstr "Returns the invite URL." + +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "The following table illustrates what methods will obtain the attributes:" + +msgid "Method" +msgstr "Method" + +msgid ":attr:`max_age`" +msgstr ":attr:`max_age`" + +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" + +msgid ":attr:`max_uses`" +msgstr ":attr:`max_uses`" + +msgid ":attr:`created_at`" +msgstr ":attr:`created_at`" + +msgid ":attr:`temporary`" +msgstr ":attr:`temporary`" + +msgid ":attr:`uses`" +msgstr ":attr:`uses`" + +msgid ":attr:`approximate_member_count`" +msgstr ":attr:`approximate_member_count`" + +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_counts` enabled" + +msgid ":attr:`approximate_presence_count`" +msgstr ":attr:`approximate_presence_count`" + +msgid ":attr:`expires_at`" +msgstr ":attr:`expires_at`" + +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr ":meth:`Client.fetch_invite` with `with_expiration` enabled" + +msgid "If it's not in the table above then it is available by all methods." +msgstr "If it's not in the table above then it is available by all methods." + +msgid "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." +msgstr "How long before the invite expires in seconds. A value of ``0`` indicates that it doesn't expire." + +msgid "The URL fragment used for the invite." +msgstr "The URL fragment used for the invite." + +msgid "The guild the invite is for. Can be ``None`` if it's from a group direct message." +msgstr "The guild the invite is for. Can be ``None`` if it's from a group direct message." + +msgid "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" +msgstr "Optional[Union[:class:`Guild`, :class:`Object`, :class:`PartialInviteGuild`]]" + +msgid "Indicates if the invite has been revoked." +msgstr "Indicates if the invite has been revoked." + +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "An aware UTC datetime object denoting the time the invite was created." + +msgid "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." +msgstr "Indicates that the invite grants temporary membership. If ``True``, members who joined via this invite will be kicked upon disconnect." + +msgid "How many times the invite has been used." +msgstr "How many times the invite has been used." + +msgid "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." +msgstr "How many times the invite can be used. A value of ``0`` indicates that it has unlimited uses." + +msgid "The user who created the invite." +msgstr "The user who created the invite." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +msgid "The approximate number of members in the guild." +msgstr "The approximate number of members in the guild." + +msgid "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." +msgstr "The approximate number of members currently active in the guild. This includes idle, dnd, online, and invisible members. Offline members are excluded." + +msgid "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." +msgstr "The expiration date of the invite. If the value is ``None`` when received through `Client.fetch_invite` with `with_expiration` enabled, the invite will never expire." + +msgid "The channel the invite is for." +msgstr "The channel the invite is for." + +msgid "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" +msgstr "Union[:class:`abc.GuildChannel`, :class:`Object`, :class:`PartialInviteChannel`]" + +msgid "The type of target for the voice channel invite." +msgstr "The type of target for the voice channel invite." + +msgid ":class:`InviteTarget`" +msgstr ":class:`InviteTarget`" + +msgid "The user whose stream to display for this invite, if any." +msgstr "The user whose stream to display for this invite, if any." + +msgid "The embedded application the invite targets, if any." +msgstr "The embedded application the invite targets, if any." + +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "Optional[:class:`PartialAppInfo`]" + +msgid "The scheduled event linked with the invite." +msgstr "The scheduled event linked with the invite." + +msgid "Returns the proper code portion of the invite." +msgstr "Returns the proper code portion of the invite." + +msgid "A property that retrieves the invite URL." +msgstr "A property that retrieves the invite URL." + +msgid "Revokes the instant invite." +msgstr "Revokes the instant invite." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to do this." + +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "The reason for deleting this invite. Shows up on the audit log." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "Links the given scheduled event to this invite." +msgstr "Links the given scheduled event to this invite." + +msgid "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." +msgstr "Scheduled events aren't actually associated with invites on the API. Any guild channel invite can have an event attached to it. Using :meth:`abc.GuildChannel.create_invite`, :meth:`Client.fetch_invite`, or this method, you can link scheduled events." + +msgid "The scheduled event object to link." +msgstr "The scheduled event object to link." + +msgid "Role" +msgstr "Role" + +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "Represents a Discord role in a :class:`Guild`." + +msgid "Checks if two roles are equal." +msgstr "Checks if two roles are equal." + +msgid "Checks if two roles are not equal." +msgstr "Checks if two roles are not equal." + +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "Checks if a role is higher than another in the hierarchy." + +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "Checks if a role is lower than another in the hierarchy." + +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "Checks if a role is higher or equal to another in the hierarchy." + +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "Checks if a role is lower or equal to another in the hierarchy." + +msgid "Return the role's hash." +msgstr "Return the role's hash." + +msgid "Returns the role's name." +msgstr "Returns the role's name." + +msgid "The ID for the role." +msgstr "The ID for the role." + +msgid "The name of the role." +msgstr "The name of the role." + +msgid "The guild the role belongs to." +msgstr "The guild the role belongs to." + +msgid "Indicates if the role will be displayed separately from other members." +msgstr "Indicates if the role will be displayed separately from other members." + +msgid "The position of the role. This number is usually positive. The bottom role has a position of 0." +msgstr "The position of the role. This number is usually positive. The bottom role has a position of 0." + +msgid "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." +msgstr "Multiple roles can have the same position number. As a consequence of this, comparing via role position is prone to subtle bugs if checking for role hierarchy. The recommended and correct way to compare for roles in the hierarchy is using the comparison operators on the role objects themselves." + +msgid "Indicates if the role is managed by the guild through some form of integrations such as Twitch." +msgstr "Indicates if the role is managed by the guild through some form of integrations such as Twitch." + +msgid "Indicates if the role can be mentioned by users." +msgstr "Indicates if the role can be mentioned by users." + +msgid "The role tags associated with this role." +msgstr "The role tags associated with this role." + +msgid "Optional[:class:`RoleTags`]" +msgstr "Optional[:class:`RoleTags`]" + +msgid "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "The role's unicode emoji. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`." + +msgid "Extra attributes of the role." +msgstr "Extra attributes of the role." + +msgid ":class:`RoleFlags`" +msgstr ":class:`RoleFlags`" + +msgid "Checks if the role is the default role." +msgstr "Checks if the role is the default role." + +msgid "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is managed by an integration. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is able to be assigned or removed by the bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Returns the role's permissions." +msgstr "Returns the role's permissions." + +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "Returns the role colour. An alias exists under ``color``." + +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "Returns the role color. An alias exists under ``colour``." + +msgid "Returns the role's creation time in UTC." +msgstr "Returns the role's creation time in UTC." + +msgid "Returns a string that allows you to mention a role." +msgstr "Returns a string that allows you to mention a role." + +msgid "Returns all the members with this role." +msgstr "Returns all the members with this role." + +msgid "Returns the role's icon asset, if available." +msgstr "Returns the role's icon asset, if available." + +msgid "Edits the role." +msgstr "Edits the role." + +msgid "You must have the :attr:`~Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_roles` permission to use this." + +msgid "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." +msgstr "Edits are no longer in-place, the newly edited role is returned instead. Added ``icon`` and ``unicode_emoji``." + +msgid "The new role name to change to." +msgstr "The new role name to change to." + +msgid "The new permissions to change to." +msgstr "The new permissions to change to." + +msgid "The new colour to change to. (aliased to color as well)" +msgstr "The new colour to change to. (aliased to color as well)" + +msgid "Indicates if the role should be shown separately in the member list." +msgstr "Indicates if the role should be shown separately in the member list." + +msgid "Indicates if the role should be mentionable by others." +msgstr "Indicates if the role should be mentionable by others." + +msgid "The new role's position. This must be below your top role's position, or it will fail." +msgstr "The new role's position. This must be below your top role's position, or it will fail." + +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "The reason for editing this role. Shows up on the audit log." + +msgid "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." +msgstr "A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG/WebP is supported. If this argument is passed, ``unicode_emoji`` is set to None. Only available to guilds that contain ``ROLE_ICONS`` in :attr:`Guild.features`. Could be ``None`` to denote removal of the icon." + +msgid "The newly edited role." +msgstr "The newly edited role." + +msgid "You do not have permissions to change the role." +msgstr "You do not have permissions to change the role." + +msgid "Editing the role failed." +msgstr "Editing the role failed." + +msgid "An invalid position was given or the default role was asked to be moved." +msgstr "An invalid position was given or the default role was asked to be moved." + +msgid "Deletes the role." +msgstr "Deletes the role." + +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "The reason for deleting this role. Shows up on the audit log." + +msgid "You do not have permissions to delete the role." +msgstr "You do not have permissions to delete the role." + +msgid "Deleting the role failed." +msgstr "Deleting the role failed." + +msgid "Represents tags on a role." +msgstr "Represents tags on a role." + +msgid "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." +msgstr "A role tag is a piece of extra information attached to a managed role that gives it context for the reason the role is managed." + +msgid "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." +msgstr "While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well." + +msgid "The bot's user ID that manages this role." +msgstr "The bot's user ID that manages this role." + +msgid "The integration ID that manages the role." +msgstr "The integration ID that manages the role." + +msgid "Whether the role is associated with a bot." +msgstr "Whether the role is associated with a bot." + +msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." +msgstr "Whether the role is the premium subscriber, AKA \"boost\", role for the guild." + +msgid "Whether the role is managed by an integration." +msgstr "Whether the role is managed by an integration." + +msgid "Scheduled Event" +msgstr "Scheduled Event" + +msgid "Represents a Discord Guild Scheduled Event." +msgstr "Represents a Discord Guild Scheduled Event." + +msgid "Checks if two scheduled events are equal." +msgstr "Checks if two scheduled events are equal." + +msgid "Checks if two scheduled events are not equal." +msgstr "Checks if two scheduled events are not equal." + +msgid "Returns the scheduled event's hash." +msgstr "Returns the scheduled event's hash." + +msgid "Returns the scheduled event's name." +msgstr "Returns the scheduled event's name." + +msgid "The guild where the scheduled event is happening." +msgstr "The guild where the scheduled event is happening." + +msgid "The time when the event will start" +msgstr "The time when the event will start" + +msgid "The time when the event is supposed to end." +msgstr "The time when the event is supposed to end." + +msgid "The status of the scheduled event." +msgstr "The status of the scheduled event." + +msgid ":class:`ScheduledEventStatus`" +msgstr ":class:`ScheduledEventStatus`" + +msgid "The location of the event. See :class:`ScheduledEventLocation` for more information." +msgstr "The location of the event. See :class:`ScheduledEventLocation` for more information." + +msgid ":class:`ScheduledEventLocation`" +msgstr ":class:`ScheduledEventLocation`" + +msgid "The number of users that have marked themselves as interested in the event." +msgstr "The number of users that have marked themselves as interested in the event." + +msgid "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." +msgstr "The ID of the user who created the event. It may be ``None`` because events created before October 25th, 2021 haven't had their creators tracked." + +msgid "The resolved user object of who created the event." +msgstr "The resolved user object of who created the event." + +msgid "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." +msgstr "The privacy level of the event. Currently, the only possible value is :attr:`ScheduledEventPrivacyLevel.guild_only`, which is default, so there is no need to use this attribute." + +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr ":class:`ScheduledEventPrivacyLevel`" + +msgid "Returns the scheduled event's creation time in UTC." +msgstr "Returns the scheduled event's creation time in UTC." + +msgid "An alias to :attr:`.subscriber_count`" +msgstr "An alias to :attr:`.subscriber_count`" + +msgid "The url to reference the scheduled event." +msgstr "The url to reference the scheduled event." + +msgid "Returns the scheduled event cover image asset, if available." +msgstr "Returns the scheduled event cover image asset, if available." + +msgid "Use the :attr:`image` property instead." +msgstr "Use the :attr:`image` property instead." + +msgid "Edits the Scheduled Event's data" +msgstr "Edits the Scheduled Event's data" + +msgid "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." +msgstr "All parameters are optional unless ``location.type`` is :attr:`ScheduledEventLocationType.external`, then ``end_time`` is required." + +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "Will return a new :class:`.ScheduledEvent` object if applicable." + +msgid "The new name of the event." +msgstr "The new name of the event." + +msgid "The new description of the event." +msgstr "The new description of the event." + +msgid "The location of the event." +msgstr "The location of the event." + +msgid "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." +msgstr "The status of the event. It is recommended, however, to use :meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses instead." + +msgid "The new starting time for the event." +msgstr "The new starting time for the event." + +msgid "The new ending time of the event." +msgstr "The new ending time of the event." + +msgid "The cover image of the scheduled event." +msgstr "The cover image of the scheduled event." + +msgid "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." +msgstr "The cover image of the scheduled event. .. deprecated:: 2.7 Use the `image` argument instead." + +msgid "Use the `image` argument instead." +msgstr "Use the `image` argument instead." + +msgid "The newly updated scheduled event object. This is only returned when certain fields are updated." +msgstr "The newly updated scheduled event object. This is only returned when certain fields are updated." + +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "Optional[:class:`.ScheduledEvent`]" + +msgid "Deletes the scheduled event." +msgstr "Deletes the scheduled event." + +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Starts the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.scheduled`." + +msgid "The newly updated scheduled event object." +msgstr "The newly updated scheduled event object." + +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." + +msgid "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." +msgstr "This method can only be used if :attr:`.status` is :attr:`ScheduledEventStatus.active`." + +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "Cancels the scheduled event. Shortcut from :meth:`.edit`." + +msgid "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." +msgstr "Returns an :class:`AsyncIterator` representing the users or members subscribed to the event." + +msgid "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." +msgstr "The ``after`` and ``before`` parameters must represent member or user objects and meet the :class:`abc.Snowflake` abc." + +msgid "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." +msgstr "Even is ``as_member`` is set to ``True``, if the user is outside the guild, it will be a :class:`User` object." + +msgid "The maximum number of results to return." +msgstr "The maximum number of results to return." + +msgid "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." +msgstr "Whether to fetch :class:`Member` objects instead of user objects. There may still be :class:`User` objects if the user is outside the guild." + +msgid "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves users after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." +msgstr "Union[:class:`User`, :class:`Member`] -- The subscribed :class:`Member`. If ``as_member`` is set to ``False`` or the user is outside the guild, it will be a :class:`User` object." + +msgid "Fetching the subscribed users failed." +msgstr "Fetching the subscribed users failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" + +msgid "Getting members instead of user objects: ::" +msgstr "Getting members instead of user objects: ::" + +msgid "Represents a scheduled event's location." +msgstr "Represents a scheduled event's location." + +msgid "Setting the ``value`` to its corresponding type will set the location type automatically:" +msgstr "Setting the ``value`` to its corresponding type will set the location type automatically:" + +msgid "Type of Input" +msgstr "Type of Input" + +msgid "Location Type" +msgstr "Location Type" + +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" + +msgid ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" +msgstr ":attr:`ScheduledEventLocationType.stage_instance` :attr:`ScheduledEventLocationType.voice` :attr:`ScheduledEventLocationType.external`" + +msgid "The actual location of the scheduled event." +msgstr "The actual location of the scheduled event." + +msgid "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" +msgstr "Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, :class:`Object`]" + +msgid "The type of location." +msgstr "The type of location." + +msgid ":class:`ScheduledEventLocationType`" +msgstr ":class:`ScheduledEventLocationType`" + +msgid "Welcome Screen" +msgstr "Welcome Screen" + +msgid "Represents the welcome screen of a guild." +msgstr "Represents the welcome screen of a guild." + +msgid "The description text displayed on the welcome screen." +msgstr "The description text displayed on the welcome screen." + +msgid "A list of channels displayed on welcome screen." +msgstr "A list of channels displayed on welcome screen." + +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "List[:class:`WelcomeScreenChannel`]" + +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "Indicates whether the welcome screen is enabled or not." + +msgid "The guild this welcome screen belongs to." +msgstr "The guild this welcome screen belongs to." + +msgid "Edits the welcome screen." +msgstr "Edits the welcome screen." + +msgid "Example" +msgstr "Example" + +msgid "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." +msgstr "Welcome channels can only accept custom emojis if :attr:`~Guild.premium_tier` is level 2 or above." + +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "Represents a welcome channel displayed on :class:`WelcomeScreen`" + +msgid "The channel that is being referenced." +msgstr "The channel that is being referenced." + +msgid ":class:`abc.Snowflake`" +msgstr ":class:`abc.Snowflake`" + +msgid "The description of the channel that is shown on the welcome screen." +msgstr "The description of the channel that is shown on the welcome screen." + +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "The emoji of the channel that is shown on welcome screen." + +msgid "Onboarding" +msgstr "Onboarding" + +msgid "Represents the onboarding flow for a guild." +msgstr "Represents the onboarding flow for a guild." + +msgid "A list of prompts displayed in the onboarding flow." +msgstr "A list of prompts displayed in the onboarding flow." + +msgid "List[:class:`OnboardingPrompt`]" +msgstr "List[:class:`OnboardingPrompt`]" + +msgid "Whether onboarding is enabled in the guild." +msgstr "Whether onboarding is enabled in the guild." + +msgid "The current onboarding mode." +msgstr "The current onboarding mode." + +msgid ":class:`OnboardingMode`" +msgstr ":class:`OnboardingMode`" + +msgid "The channels that members are opted into by default." +msgstr "The channels that members are opted into by default." + +msgid "Edits this onboarding flow." +msgstr "Edits this onboarding flow." + +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "The reason for editing this onboarding flow. Shows up on the audit log." + +msgid "Adds a new onboarding prompt." +msgstr "Adds a new onboarding prompt." + +msgid "The type of onboarding prompt." +msgstr "The type of onboarding prompt." + +msgid "The prompt's title." +msgstr "The prompt's title." + +msgid "The list of options available in the prompt." +msgstr "The list of options available in the prompt." + +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "Whether the user is limited to selecting one option on this prompt." + +msgid "Whether the user is required to answer this prompt." +msgstr "Whether the user is required to answer this prompt." + +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "Whether this prompt is displayed in the initial onboarding flow." + +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "The reason for adding this prompt. Shows up on the audit log." + +msgid "Append an onboarding prompt onto this flow." +msgstr "Append an onboarding prompt onto this flow." + +msgid "The onboarding prompt to append." +msgstr "The onboarding prompt to append." + +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "The reason for appending this prompt. Shows up on the audit log." + +msgid "Get an onboarding prompt with the given ID." +msgstr "Get an onboarding prompt with the given ID." + +msgid "The ID of the prompt to get." +msgstr "The ID of the prompt to get." + +msgid "The matching prompt, or None if it didn't exist." +msgstr "The matching prompt, or None if it didn't exist." + +msgid ":class:`OnboardingPrompt`" +msgstr ":class:`OnboardingPrompt`" + +msgid "Delete an onboarding prompt with the given ID." +msgstr "Delete an onboarding prompt with the given ID." + +msgid "The ID of the prompt to delete." +msgstr "The ID of the prompt to delete." + +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "The reason for deleting this prompt. Shows up on the audit log." + +msgid "No prompt with this ID exists." +msgstr "No prompt with this ID exists." + +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "Represents an onboarding prompt displayed in :class:`Onboarding`." + +msgid "The id of the prompt." +msgstr "The id of the prompt." + +msgid ":class:`PromptType`" +msgstr ":class:`PromptType`" + +msgid "List[:class:`PromptOption`]" +msgstr "List[:class:`PromptOption`]" + +msgid "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." +msgstr "Represents an onboarding prompt option displayed in :class:`OnboardingPrompt`." + +msgid "The id of the prompt option." +msgstr "The id of the prompt option." + +msgid "The channels assigned to the user when they select this option." +msgstr "The channels assigned to the user when they select this option." + +msgid "List[:class:`Snowflake`]" +msgstr "List[:class:`Snowflake`]" + +msgid "The roles assigned to the user when they select this option." +msgstr "The roles assigned to the user when they select this option." + +msgid "The emoji displayed with the option." +msgstr "The emoji displayed with the option." + +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`Emoji`, :class:`PartialEmoji`]" + +msgid "The option's title." +msgstr "The option's title." + +msgid "The option's description." +msgstr "The option's description." + +msgid "Integration" +msgstr "Integration" + +msgid "Represents a guild integration." +msgstr "Represents a guild integration." + +msgid "The integration name." +msgstr "The integration name." + +msgid "The guild of the integration." +msgstr "The guild of the integration." + +msgid "The integration type (i.e. Twitch)." +msgstr "The integration type (i.e. Twitch)." + +msgid "Whether the integration is currently enabled." +msgstr "Whether the integration is currently enabled." + +msgid "The account linked to this integration." +msgstr "The account linked to this integration." + +msgid ":class:`IntegrationAccount`" +msgstr ":class:`IntegrationAccount`" + +msgid "The user that added this integration." +msgstr "The user that added this integration." + +msgid "Deletes the integration." +msgstr "Deletes the integration." + +msgid "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" +msgstr "The reason the integration was deleted. Shows up on the audit log. .. versionadded:: 2.0" + +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "The reason the integration was deleted. Shows up on the audit log." + +msgid "You do not have permission to delete the integration." +msgstr "You do not have permission to delete the integration." + +msgid "Deleting the integration failed." +msgstr "Deleting the integration failed." + +msgid "Represents an integration account." +msgstr "Represents an integration account." + +msgid "The account ID." +msgstr "The account ID." + +msgid "The account name." +msgstr "The account name." + +msgid "Represents a bot integration on discord." +msgstr "Represents a bot integration on discord." + +msgid "The integration account information." +msgstr "The integration account information." + +msgid "The application tied to this integration." +msgstr "The application tied to this integration." + +msgid ":class:`IntegrationApplication`" +msgstr ":class:`IntegrationApplication`" + +msgid "Represents an application for a bot integration." +msgstr "Represents an application for a bot integration." + +msgid "The ID for this application." +msgstr "The ID for this application." + +msgid "The application's name." +msgstr "The application's name." + +msgid "The application's icon hash." +msgstr "The application's icon hash." + +msgid "The application's description. Can be an empty string." +msgstr "The application's description. Can be an empty string." + +msgid "The summary of the application. Can be an empty string." +msgstr "The summary of the application. Can be an empty string." + +msgid "The bot user on this application." +msgstr "The bot user on this application." + +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "Represents a stream integration for Twitch or YouTube." + +msgid "Where the integration is currently syncing." +msgstr "Where the integration is currently syncing." + +msgid "Whether emoticons should be synced for this integration (currently twitch only)." +msgstr "Whether emoticons should be synced for this integration (currently twitch only)." + +msgid "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as well." + +msgid ":class:`ExpireBehaviour`" +msgstr ":class:`ExpireBehaviour`" + +msgid "The grace period (in days) for expiring subscribers." +msgstr "The grace period (in days) for expiring subscribers." + +msgid "The user for the integration." +msgstr "The user for the integration." + +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "An aware UTC datetime representing when the integration was last synced." + +msgid "An alias for :attr:`expire_behaviour`." +msgstr "An alias for :attr:`expire_behaviour`." + +msgid "The role which the integration uses for subscribers." +msgstr "The role which the integration uses for subscribers." + +msgid "Edits the integration." +msgstr "Edits the integration." + +msgid "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." +msgstr "The behaviour when an integration subscription lapses. Aliased to ``expire_behavior`` as well." + +msgid "The period (in days) where the integration will ignore lapsed subscriptions." +msgstr "The period (in days) where the integration will ignore lapsed subscriptions." + +msgid "Where emoticons should be synced for this integration (currently twitch only)." +msgstr "Where emoticons should be synced for this integration (currently twitch only)." + +msgid "You do not have permission to edit the integration." +msgstr "You do not have permission to edit the integration." + +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." + +msgid "Syncs the integration." +msgstr "Syncs the integration." + +msgid "You do not have permission to sync the integration." +msgstr "You do not have permission to sync the integration." + +msgid "Syncing the integration failed." +msgstr "Syncing the integration failed." + +msgid "Widget" +msgstr "Widget" + +msgid "Represents a :class:`Guild` widget." +msgstr "Represents a :class:`Guild` widget." + +msgid "Checks if two widgets are the same." +msgstr "Checks if two widgets are the same." + +msgid "Checks if two widgets are not the same." +msgstr "Checks if two widgets are not the same." + +msgid "Returns the widget's JSON URL." +msgstr "Returns the widget's JSON URL." + +msgid "The guild's name." +msgstr "The guild's name." + +msgid "The accessible voice channels in the guild." +msgstr "The accessible voice channels in the guild." + +msgid "List[:class:`WidgetChannel`]" +msgstr "List[:class:`WidgetChannel`]" + +msgid "The online members in the server. Offline members do not appear in the widget." +msgstr "The online members in the server. Offline members do not appear in the widget." + +msgid "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." +msgstr "Due to a Discord limitation, if this data is available the users will be \"anonymized\" with linear IDs and discriminator information being incorrect. Likewise, the number of members retrieved is capped." + +msgid "Returns the member's creation time in UTC." +msgstr "Returns the member's creation time in UTC." + +msgid "The JSON URL of the widget." +msgstr "The JSON URL of the widget." + +msgid "The invite URL for the guild, if available." +msgstr "The invite URL for the guild, if available." + +msgid "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." +msgstr "Retrieves an :class:`Invite` from the widget's invite URL. This is the same as :meth:`Client.fetch_invite`; the invite code is abstracted away." + +msgid "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`Invite.approximate_member_count` and :attr:`Invite.approximate_presence_count` fields." + +msgid "The invite from the widget's invite URL." +msgstr "The invite from the widget's invite URL." + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid "Represents a \"partial\" widget channel." +msgstr "Represents a \"partial\" widget channel." + +msgid "The channel's ID." +msgstr "The channel's ID." + +msgid "The channel's position" +msgstr "The channel's position" + +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "Represents a \"partial\" member of the widget's guild." + +msgid "Checks if two widget members are the same." +msgstr "Checks if two widget members are the same." + +msgid "Checks if two widget members are not the same." +msgstr "Checks if two widget members are not the same." + +msgid "Return the widget member's hash." +msgstr "Return the widget member's hash." + +msgid "Returns the widget member's `name#discriminator`." +msgstr "Returns the widget member's `name#discriminator`." + +msgid "The member's ID." +msgstr "The member's ID." + +msgid "The member's username." +msgstr "The member's username." + +msgid "The member's discriminator." +msgstr "The member's discriminator." + +msgid "Whether the member is a bot." +msgstr "Whether the member is a bot." + +msgid "The member's status." +msgstr "The member's status." + +msgid ":class:`Status`" +msgstr ":class:`Status`" + +msgid "The member's nickname." +msgstr "The member's nickname." + +msgid "The member's avatar hash." +msgstr "The member's avatar hash." + +msgid "The member's activity." +msgstr "The member's activity." + +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" + +msgid "Whether the member is currently deafened." +msgstr "Whether the member is currently deafened." + +msgid "Whether the member is currently muted." +msgstr "Whether the member is currently muted." + +msgid "Whether the member is currently being suppressed." +msgstr "Whether the member is currently being suppressed." + +msgid "Which channel the member is connected to." +msgstr "Which channel the member is connected to." + +msgid "Optional[:class:`WidgetChannel`]" +msgstr "Optional[:class:`WidgetChannel`]" + +msgid "Returns the member's display name." +msgstr "Returns the member's display name." + +msgid "Threads" +msgstr "Threads" + +msgid "Represents a Discord thread." +msgstr "Represents a Discord thread." + +msgid "Checks if two threads are equal." +msgstr "Checks if two threads are equal." + +msgid "Checks if two threads are not equal." +msgstr "Checks if two threads are not equal." + +msgid "Returns the thread's hash." +msgstr "Returns the thread's hash." + +msgid "Returns the thread's name." +msgstr "Returns the thread's name." + +msgid "The thread name." +msgstr "The thread name." + +msgid "The guild the thread belongs to." +msgstr "The guild the thread belongs to." + +msgid "The thread ID." +msgstr "The thread ID." + +msgid "This ID is the same as the thread starting message ID." +msgstr "This ID is the same as the thread starting message ID." + +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "The parent :class:`TextChannel` ID this thread belongs to." + +msgid "The user's ID that created this thread." +msgstr "The user's ID that created this thread." + +msgid "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this thread. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "An approximate number of messages in this thread. This caps at 50." + +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "An approximate number of members in this thread. This caps at 50." + +msgid "A thread member representing yourself, if you've joined the thread. This could not be available." +msgstr "A thread member representing yourself, if you've joined the thread. This could not be available." + +msgid "Optional[:class:`ThreadMember`]" +msgstr "Optional[:class:`ThreadMember`]" + +msgid "Whether the thread is archived." +msgstr "Whether the thread is archived." + +msgid "Whether the thread is locked." +msgstr "Whether the thread is locked." + +msgid "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. This is always ``True`` for public threads." + +msgid "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." +msgstr "The duration in minutes until the thread is automatically archived due to inactivity. Usually a value of 60, 1440, 4320 and 10080." + +msgid "An aware timestamp of when the thread's archived status was last updated in UTC." +msgstr "An aware timestamp of when the thread's archived status was last updated in UTC." + +msgid "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." +msgstr "An aware timestamp of when the thread was created. Only available for threads created after 2022-01-09." + +msgid "Extra features of the thread." +msgstr "Extra features of the thread." + +msgid ":class:`ChannelFlags`" +msgstr ":class:`ChannelFlags`" + +msgid "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." +msgstr "Number of messages ever sent in a thread. It's similar to message_count on message creation, but will not decrement the number when a message is deleted." + +msgid "The channel's Discord type." +msgstr "The channel's Discord type." + +msgid "The parent channel this thread belongs to." +msgstr "The parent channel this thread belongs to." + +msgid "The member this thread belongs to." +msgstr "The member this thread belongs to." + +msgid "The string that allows you to mention the thread." +msgstr "The string that allows you to mention the thread." + +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "Returns a URL that allows the client to jump to the thread." + +msgid "A list of thread members in this thread, including the bot if it is a member of this thread." +msgstr "A list of thread members in this thread, including the bot if it is a member of this thread." + +msgid "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." +msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the time however, this data is not provided by the gateway and a call to :meth:`fetch_members` is needed." + +msgid "A list of tags applied to this thread." +msgstr "A list of tags applied to this thread." + +msgid "This is only available for threads in forum channels." +msgstr "This is only available for threads in forum channels." + +msgid "List[:class:`ForumTag`]" +msgstr "List[:class:`ForumTag`]" + +msgid "Returns the last message from this thread in cache." +msgstr "Returns the last message from this thread in cache." + +msgid "The message might not be valid or point to an existing message." +msgstr "The message might not be valid or point to an existing message." + +msgid "Reliable Fetching" +msgstr "Reliable Fetching" + +msgid "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." +msgstr "For a slightly more reliable method of fetching the last message, consider using either :meth:`history` or :meth:`fetch_message` with the :attr:`last_message_id` attribute." + +msgid "The last message in this channel or ``None`` if not found." +msgstr "The last message in this channel or ``None`` if not found." + +msgid "Optional[:class:`Message`]" +msgstr "Optional[:class:`Message`]" + +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "The category channel the parent channel belongs to, if applicable." + +msgid "The parent channel's category." +msgstr "The parent channel's category." + +msgid "Optional[:class:`CategoryChannel`]" +msgstr "Optional[:class:`CategoryChannel`]" + +msgid "The parent channel was not cached and returned ``None``." +msgstr "The parent channel was not cached and returned ``None``." + +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "The category channel ID the parent channel belongs to, if applicable." + +msgid "The parent channel's category ID." +msgstr "The parent channel's category ID." + +msgid "Returns the message that started this thread." +msgstr "Returns the message that started this thread." + +msgid "The ID for this message is the same as the thread ID." +msgstr "The ID for this message is the same as the thread ID." + +msgid "The message that started this thread or ``None`` if not found in the cache." +msgstr "The message that started this thread or ``None`` if not found in the cache." + +msgid "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the thread is a private thread." +msgstr "Whether the thread is a private thread." + +msgid "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." +msgstr "A private thread is only viewable by those that have been explicitly invited or have :attr:`~.Permissions.manage_threads`." + +msgid "Whether the thread is a news thread." +msgstr "Whether the thread is a news thread." + +msgid "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." +msgstr "A news thread is a thread that has a parent that is a news channel, i.e. :meth:`.TextChannel.is_news` is ``True``." + +msgid "Whether the thread is NSFW or not." +msgstr "Whether the thread is NSFW or not." + +msgid "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." +msgstr "An NSFW thread is a thread that has a parent that is an NSFW channel, i.e. :meth:`.TextChannel.is_nsfw` is ``True``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." + +msgid "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." +msgstr "Since threads do not have their own permissions, they inherit them from the parent channel. This is a convenience method for calling :meth:`~discord.TextChannel.permissions_for` on the parent channel." + +msgid "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." +msgstr "The object to resolve permissions for. This could be either a member or a role. If it's a role then member overwrites are not computed." + +msgid "The resolved permissions for the member or role." +msgstr "The resolved permissions for the member or role." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The parent channel was not cached and returned ``None``" +msgstr "The parent channel was not cached and returned ``None``" + +msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." +msgstr "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." + +msgid "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." +msgstr "As a special case, if the number of messages is 0, then nothing is done. If the number of messages is 1 then single message delete is done. If it's more than two, then bulk delete is used." + +msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." +msgstr "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to use this." + +msgid "Usable only by bot accounts." +msgstr "Usable only by bot accounts." + +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "An iterable of messages denoting which ones to bulk delete." + +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "The reason for deleting the messages. Shows up on the audit log." + +msgid "The number of messages to delete was more than 100." +msgstr "The number of messages to delete was more than 100." + +msgid "You do not have proper permissions to delete the messages, or you're not using a bot account." +msgstr "You do not have proper permissions to delete the messages, or you're not using a bot account." + +msgid "If single delete, then the message was already deleted." +msgstr "If single delete, then the message was already deleted." + +msgid "Deleting the messages failed." +msgstr "Deleting the messages failed." + +msgid "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." +msgstr "Purges a list of messages that meet the criteria given by the predicate ``check``. If a ``check`` is not provided then all messages are deleted without discrimination." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own (unless you are a user account). The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." +msgstr "The number of messages to search through. This is not the number of messages that will be deleted, though it can be." + +msgid "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." +msgstr "The function used to check if a message should be deleted. It must take a :class:`Message` as its sole parameter." + +msgid "Same as ``before`` in :meth:`history`." +msgstr "Same as ``before`` in :meth:`history`." + +msgid "Same as ``after`` in :meth:`history`." +msgstr "Same as ``after`` in :meth:`history`." + +msgid "Same as ``around`` in :meth:`history`." +msgstr "Same as ``around`` in :meth:`history`." + +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "Same as ``oldest_first`` in :meth:`history`." + +msgid "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." +msgstr "If ``True``, use bulk delete. Setting this to ``False`` is useful for mass-deleting a bot's own messages without :attr:`Permissions.manage_messages`. When ``True``, will fall back to single delete if messages are older than two weeks." + +msgid "The list of messages that were deleted." +msgstr "The list of messages that were deleted." + +msgid "List[:class:`.Message`]" +msgstr "List[:class:`.Message`]" + +msgid "You do not have proper permissions to do the actions required." +msgstr "You do not have proper permissions to do the actions required." + +msgid "Purging the messages failed." +msgstr "Purging the messages failed." + +msgid "Deleting bot's messages ::" +msgstr "Deleting bot's messages ::" + +msgid "Edits the thread." +msgstr "Edits the thread." + +msgid "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." +msgstr "Editing the thread requires :attr:`.Permissions.manage_threads`. The thread creator can also edit ``name``, ``archived`` or ``auto_archive_duration``. Note that if the thread is locked then only those with :attr:`.Permissions.manage_threads` can send messages in it or unarchive a thread." + +msgid "The thread must be unarchived to be edited." +msgstr "The thread must be unarchived to be edited." + +msgid "The new name of the thread." +msgstr "The new name of the thread." + +msgid "Whether to archive the thread or not." +msgstr "Whether to archive the thread or not." + +msgid "Whether to lock the thread or not." +msgstr "Whether to lock the thread or not." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads." + +msgid "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "The reason for editing this thread. Shows up on the audit log." + +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum." + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set. .. versionadded:: 2.3" + +msgid "The set of tags to apply to the thread. Each tag object should have an ID set." +msgstr "The set of tags to apply to the thread. Each tag object should have an ID set." + +msgid "The newly edited thread." +msgstr "The newly edited thread." + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid "You do not have permissions to edit the thread." +msgstr "You do not have permissions to edit the thread." + +msgid "Editing the thread failed." +msgstr "Editing the thread failed." + +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Archives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "Whether to lock the thread on archive, Defaults to ``False``." + +msgid "The updated thread." +msgstr "The updated thread." + +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "Unarchives the thread. This is a shorthand of :meth:`.edit`." + +msgid "Joins this thread." +msgstr "Joins this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed." + +msgid "You do not have permissions to join the thread." +msgstr "You do not have permissions to join the thread." + +msgid "Joining the thread failed." +msgstr "Joining the thread failed." + +msgid "Leaves this thread." +msgstr "Leaves this thread." + +msgid "Leaving the thread failed." +msgstr "Leaving the thread failed." + +msgid "Adds a user to this thread." +msgstr "Adds a user to this thread." + +msgid "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." +msgstr "You must have :attr:`~Permissions.send_messages_in_threads` to add a user to a public thread. If the thread is private and :attr:`invitable` is ``False``, then :attr:`~Permissions.manage_threads` is required." + +msgid "The user to add to the thread." +msgstr "The user to add to the thread." + +msgid "You do not have permissions to add the user to the thread." +msgstr "You do not have permissions to add the user to the thread." + +msgid "Adding the user to the thread failed." +msgstr "Adding the user to the thread failed." + +msgid "Removes a user from this thread." +msgstr "Removes a user from this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." +msgstr "You must have :attr:`~Permissions.manage_threads` or be the creator of the thread to remove a user." + +msgid "The user to remove from the thread." +msgstr "The user to remove from the thread." + +msgid "You do not have permissions to remove the user from the thread." +msgstr "You do not have permissions to remove the user from the thread." + +msgid "Removing the user from the thread failed." +msgstr "Removing the user from the thread failed." + +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "Retrieves all :class:`ThreadMember` that are in this thread." + +msgid "This requires :attr:`Intents.members` to get information about members other than yourself." +msgstr "This requires :attr:`Intents.members` to get information about members other than yourself." + +msgid "All thread members in the thread." +msgstr "All thread members in the thread." + +msgid "List[:class:`ThreadMember`]" +msgstr "List[:class:`ThreadMember`]" + +msgid "Retrieving the members failed." +msgstr "Retrieving the members failed." + +msgid "Deletes this thread." +msgstr "Deletes this thread." + +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "You must have :attr:`~Permissions.manage_threads` to delete threads." + +msgid "You do not have permissions to delete this thread." +msgstr "You do not have permissions to delete this thread." + +msgid "Deleting the thread failed." +msgstr "Deleting the thread failed." + +msgid "Represents a Discord thread member." +msgstr "Represents a Discord thread member." + +msgid "Checks if two thread members are equal." +msgstr "Checks if two thread members are equal." + +msgid "Checks if two thread members are not equal." +msgstr "Checks if two thread members are not equal." + +msgid "Returns the thread member's hash." +msgstr "Returns the thread member's hash." + +msgid "Returns the thread member's name." +msgstr "Returns the thread member's name." + +msgid "The thread member's ID." +msgstr "The thread member's ID." + +msgid "The thread's ID." +msgstr "The thread's ID." + +msgid "The time the member joined the thread in UTC." +msgstr "The time the member joined the thread in UTC." + +msgid "The thread this member belongs to." +msgstr "The thread this member belongs to." + +msgid "Stages" +msgstr "Stages" + +msgid "Represents a Discord guild stage channel." +msgstr "Represents a Discord guild stage channel." + +msgid "Checks if two channels are equal." +msgstr "Checks if two channels are equal." + +msgid "Checks if two channels are not equal." +msgstr "Checks if two channels are not equal." + +msgid "Returns the channel's hash." +msgstr "Returns the channel's hash." + +msgid "Returns the channel's name." +msgstr "Returns the channel's name." + +msgid "The channel name." +msgstr "The channel name." + +msgid "The guild the channel belongs to." +msgstr "The guild the channel belongs to." + +msgid "The channel ID." +msgstr "The channel ID." + +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "The channel's topic. ``None`` if it isn't set." + +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "The category channel ID this channel belongs to, if applicable." + +msgid "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the channel list. This is a number that starts at 0. e.g. the top channel is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "The channel's limit for number of members that can be in a stage channel." + +msgid "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "Optional[:class:`VoiceRegion`]" +msgstr "Optional[:class:`VoiceRegion`]" + +msgid "The camera video quality for the stage channel's participants." +msgstr "The camera video quality for the stage channel's participants." + +msgid ":class:`VideoQualityMode`" +msgstr ":class:`VideoQualityMode`" + +msgid "Extra features of the channel." +msgstr "Extra features of the channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5" + +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "A list of members who are requesting to speak in the stage channel." + +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "A list of members who have been permitted to speak in the stage channel." + +msgid "A list of members who are listening in the stage channel." +msgstr "A list of members who are listening in the stage channel." + +msgid "Checks if the channel is NSFW." +msgstr "Checks if the channel is NSFW." + +msgid "Fetches the last message from this channel in cache." +msgstr "Fetches the last message from this channel in cache." + +msgid "You do not have proper permissions to delete the messages." +msgstr "You do not have proper permissions to delete the messages." + +msgid "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." +msgstr "You must have the :attr:`~Permissions.manage_messages` permission to delete messages even if they are your own. The :attr:`~Permissions.read_message_history` permission is also needed to retrieve message history." + +msgid "Gets the list of webhooks from this channel." +msgstr "Gets the list of webhooks from this channel." + +msgid "The webhooks for this channel." +msgstr "The webhooks for this channel." + +msgid "Creates a webhook for this channel." +msgstr "Creates a webhook for this channel." + +msgid "Added the ``reason`` keyword-only parameter." +msgstr "Added the ``reason`` keyword-only parameter." + +msgid "The webhook's name." +msgstr "The webhook's name." + +msgid "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." +msgstr "A :term:`py:bytes-like object` representing the webhook's default avatar. This operates similarly to :meth:`~ClientUser.edit`." + +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "The reason for creating this webhook. Shows up in the audit logs." + +msgid "The created webhook." +msgstr "The created webhook." + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creating the webhook failed." +msgstr "Creating the webhook failed." + +msgid "You do not have permissions to create a webhook." +msgstr "You do not have permissions to create a webhook." + +msgid "A list of members who are moderating the stage channel." +msgstr "A list of members who are moderating the stage channel." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clones this channel. This creates a channel with the same properties as this channel." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "The name of the new channel. If not provided, defaults to this channel name." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "The reason for cloning this channel. Shows up on the audit log." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "The running stage instance of the stage channel." +msgstr "The running stage instance of the stage channel." + +msgid "Create a stage instance." +msgstr "Create a stage instance." + +msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." +msgstr "You must have the :attr:`~Permissions.manage_channels` permission to use this." + +msgid "The stage instance's topic." +msgstr "The stage instance's topic." + +msgid "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." +msgstr "The stage instance's privacy level. Defaults to :attr:`StagePrivacyLevel.guild_only`." + +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "The reason the stage instance was created. Shows up on the audit log." + +msgid "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." +msgstr "Send a notification to everyone in the server that the stage instance has started. Defaults to ``False``. Requires the ``mention_everyone`` permission." + +msgid "The newly created stage instance." +msgstr "The newly created stage instance." + +msgid ":class:`StageInstance`" +msgstr ":class:`StageInstance`" + +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "If the ``privacy_level`` parameter is not the proper type." + +msgid "You do not have permissions to create a stage instance." +msgstr "You do not have permissions to create a stage instance." + +msgid "Creating a stage instance failed." +msgstr "Creating a stage instance failed." + +msgid "Gets the running :class:`StageInstance`." +msgstr "Gets the running :class:`StageInstance`." + +msgid "The stage instance." +msgstr "The stage instance." + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Edits the channel." +msgstr "Edits the channel." + +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "The ``topic`` parameter must now be set via :attr:`create_instance`." + +msgid "Edits are no longer in-place, the newly edited channel is returned instead." +msgstr "Edits are no longer in-place, the newly edited channel is returned instead." + +msgid "The new channel's name." +msgstr "The new channel's name." + +msgid "The new channel's position." +msgstr "The new channel's position." + +msgid "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." +msgstr "Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``." + +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "The new category for this channel. Can be ``None`` to remove the category." + +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "The reason for editing this channel. Shows up on the audit log." + +msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." +msgstr "The overwrites to apply to channel permissions. Useful for creating secret channels." + +msgid "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the stage channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" +msgstr "The camera video quality for the stage channel's participants. .. versionadded:: 2.0" + +msgid "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited stage channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.StageChannel`]" +msgstr "Optional[:class:`.StageChannel`]" + +msgid "If the permission overwrite information is not in proper form." +msgstr "If the permission overwrite information is not in proper form." + +msgid "You do not have permissions to edit the channel." +msgstr "You do not have permissions to edit the channel." + +msgid "Editing the channel failed." +msgstr "Editing the channel failed." + +msgid "The category this channel belongs to." +msgstr "The category this channel belongs to." + +msgid "If there is no category then this is ``None``." +msgstr "If there is no category then this is ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." + +msgid "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." +msgstr "Connects to voice and creates a :class:`VoiceClient` to establish your connection to the voice server." + +msgid "This requires :attr:`Intents.voice_states`." +msgstr "This requires :attr:`Intents.voice_states`." + +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "The timeout in seconds to wait for the voice endpoint." + +msgid "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." +msgstr "Whether the bot should automatically attempt a reconnect if a part of the handshake fails or the gateway goes down." + +msgid "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." +msgstr "A type that subclasses :class:`~discord.VoiceProtocol` to connect with. Defaults to :class:`~discord.VoiceClient`." + +msgid "A voice client that is fully connected to the voice server." +msgstr "A voice client that is fully connected to the voice server." + +msgid ":class:`~discord.VoiceProtocol`" +msgstr ":class:`~discord.VoiceProtocol`" + +msgid "Could not connect to the voice channel in time." +msgstr "Could not connect to the voice channel in time." + +msgid "You are already connected to a voice channel." +msgstr "You are already connected to a voice channel." + +msgid "The opus library has not been loaded." +msgstr "The opus library has not been loaded." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Creates an instant invite from a text or voice channel." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." + +msgid "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." +msgstr "Indicates if a unique invite URL should be created. Defaults to True. If this is set to ``False`` then it will return a previously created invite." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "The reason for creating this invite. Shows up on the audit log." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "The type of target for the voice channel invite, if any." + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel. .. versionadded:: 2.0" + +msgid "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." +msgstr "The user whose stream to display for this invite, required if `target_type` is `TargetType.stream`. The user must be streaming in the channel." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event` See :meth:`.Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite that was created." +msgstr "The invite that was created." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Invite creation failed." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "The channel that was passed is a category or an invalid channel." + +msgid "Deletes the channel." +msgstr "Deletes the channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "The reason for deleting this channel. Shows up on the audit log." + +msgid "You do not have proper permissions to delete the channel." +msgstr "You do not have proper permissions to delete the channel." + +msgid "The channel was not found or was already deleted." +msgstr "The channel was not found or was already deleted." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Returns a list of all active instant invites from this channel." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "You must have :attr:`~discord.Permissions.manage_channels` to get this information." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Returns a URL that allows the client to jump to the channel." + +msgid "Returns all members that are currently inside this voice channel." +msgstr "Returns all members that are currently inside this voice channel." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "A rich interface to help move a channel relative to other channels." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "If exact position movement is required, ``edit`` should be used instead." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Voice channels will always be sorted below text channels. This is a Discord limitation." + +msgid "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." +msgstr "Whether to move the channel to the beginning of the channel list (or category if given). This is mutually exclusive with ``end``, ``before``, and ``after``." + +msgid "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." +msgstr "Whether to move the channel to the end of the channel list (or category if given). This is mutually exclusive with ``beginning``, ``before``, and ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." + +msgid "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." +msgstr "The number of channels to offset the move by. For example, an offset of ``2`` with ``beginning=True`` would move it 2 after the beginning. A positive number moves it below while a negative number moves it above. Note that this number is relative and computed after the ``beginning``, ``end``, ``before``, and ``after`` parameters." + +msgid "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." +msgstr "The category to move this channel under. If ``None`` is given then it moves it out of the category. This parameter is ignored if moving a category channel." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Whether to sync the permissions with the category (if given)." + +msgid "The reason for the move." +msgstr "The reason for the move." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "An invalid position was given or a bad mix of arguments was passed." + +msgid "You do not have permissions to move the channel." +msgstr "You do not have permissions to move the channel." + +msgid "Moving the channel failed." +msgstr "Moving the channel failed." + +msgid "Returns all of the channel's overwrites." +msgstr "Returns all of the channel's overwrites." + +msgid "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." +msgstr "This is returned as a dictionary where the key contains the target which can be either a :class:`~discord.Role` or a :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "The channel's permission overwrites." + +msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" +msgstr "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Returns the channel-specific overwrites for a member or a role." + +msgid "The role or user denoting whose overwrite to get." +msgstr "The role or user denoting whose overwrite to get." + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "This function takes into consideration the following cases:" + +msgid "Guild owner" +msgstr "Guild owner" + +msgid "Guild roles" +msgstr "Guild roles" + +msgid "Channel overrides" +msgstr "Channel overrides" + +msgid "Member overrides" +msgstr "Member overrides" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" + +msgid "The default role permissions" +msgstr "The default role permissions" + +msgid "The permissions of the role used as a parameter" +msgstr "The permissions of the role used as a parameter" + +msgid "The default role permission overwrites" +msgstr "The default role permission overwrites" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "The permission overwrites of the role used as a parameter" + +msgid "The object passed in can now be a role object." +msgstr "The object passed in can now be a role object." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Whether the permissions for this channel are synced with the category it belongs to." + +msgid "If there is no category then this is ``False``." +msgstr "If there is no category then this is ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Sets the channel specific permission overwrites for a target in the channel." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." + +msgid "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." +msgstr "The ``overwrite`` parameter, if given, must either be ``None`` or :class:`~discord.PermissionOverwrite`. For convenience, you can pass in keyword arguments denoting :class:`~discord.Permissions` attributes. If this is done, then you cannot mix the keyword arguments with the ``overwrite`` parameter." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "This method *replaces* the old overwrites with the ones given." + +msgid "Setting allow and deny: ::" +msgstr "Setting allow and deny: ::" + +msgid "Deleting overwrites ::" +msgstr "Deleting overwrites ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Using :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "The member or role to overwrite permissions for." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "You do not have permissions to edit channel specific permissions." + +msgid "Editing channel specific permissions failed." +msgstr "Editing channel specific permissions failed." + +msgid "The role or member being edited is not part of the guild." +msgstr "The role or member being edited is not part of the guild." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." + +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "Returns a mapping of member IDs who have voice states in this channel." + +msgid "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." +msgstr "This function is intentionally low level to replace :attr:`members` when the member cache is unavailable." + +msgid "The mapping of member ID to a voice state." +msgstr "The mapping of member ID to a voice state." + +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "Mapping[:class:`int`, :class:`VoiceState`]" + +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "Represents a stage instance of a stage channel in a guild." + +msgid "Checks if two stage instances are equal." +msgstr "Checks if two stage instances are equal." + +msgid "Checks if two stage instances are not equal." +msgstr "Checks if two stage instances are not equal." + +msgid "Returns the stage instance's hash." +msgstr "Returns the stage instance's hash." + +msgid "The stage instance's ID." +msgstr "The stage instance's ID." + +msgid "The guild that the stage instance is running in." +msgstr "The guild that the stage instance is running in." + +msgid "The ID of the channel that the stage instance is running in." +msgstr "The ID of the channel that the stage instance is running in." + +msgid "The topic of the stage instance." +msgstr "The topic of the stage instance." + +msgid "The privacy level of the stage instance." +msgstr "The privacy level of the stage instance." + +msgid ":class:`StagePrivacyLevel`" +msgstr ":class:`StagePrivacyLevel`" + +msgid "Whether discoverability for the stage instance is disabled." +msgstr "Whether discoverability for the stage instance is disabled." + +msgid "The scheduled event linked with the stage instance, if any." +msgstr "The scheduled event linked with the stage instance, if any." + +msgid "The channel that stage instance is running in." +msgstr "The channel that stage instance is running in." + +msgid "Edits the stage instance." +msgstr "Edits the stage instance." + +msgid "The stage instance's new topic." +msgstr "The stage instance's new topic." + +msgid "The stage instance's new privacy level." +msgstr "The stage instance's new privacy level." + +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "The reason the stage instance was edited. Shows up on the audit log." + +msgid "You do not have permissions to edit the stage instance." +msgstr "You do not have permissions to edit the stage instance." + +msgid "Editing a stage instance failed." +msgstr "Editing a stage instance failed." + +msgid "Deletes the stage instance." +msgstr "Deletes the stage instance." + +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "The reason the stage instance was deleted. Shows up on the audit log." + +msgid "You do not have permissions to delete the stage instance." +msgstr "You do not have permissions to delete the stage instance." + +msgid "Deleting the stage instance failed." +msgstr "Deleting the stage instance failed." + +msgid "Interactions" +msgstr "Interactions" + +msgid "Represents a Discord interaction." +msgstr "Represents a Discord interaction." + +msgid "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." +msgstr "An interaction happens when a user does an action that needs to be notified. Current examples are application commands, components, and modals." + +msgid "The interaction's ID." +msgstr "The interaction's ID." + +msgid "The interaction type." +msgstr "The interaction type." + +msgid ":class:`InteractionType`" +msgstr ":class:`InteractionType`" + +msgid "The guild ID the interaction was sent from." +msgstr "The guild ID the interaction was sent from." + +msgid "The channel the interaction was sent from." +msgstr "The channel the interaction was sent from." + +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]]" + +msgid "The ID of the channel the interaction was sent from." +msgstr "The ID of the channel the interaction was sent from." + +msgid "The application ID that the interaction was for." +msgstr "The application ID that the interaction was for." + +msgid "The user or member that sent the interaction. Will be `None` in PING interactions." +msgstr "The user or member that sent the interaction. Will be `None` in PING interactions." + +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "Optional[Union[:class:`User`, :class:`Member`]]" + +msgid "The message that sent this interaction." +msgstr "The message that sent this interaction." + +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "The token to continue the interaction. These are valid for 15 minutes." + +msgid "The raw interaction data." +msgstr "The raw interaction data." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "The user's locale." +msgstr "The user's locale." + +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "The guilds preferred locale, if invoked in a guild." + +msgid "The custom ID for the interaction." +msgstr "The custom ID for the interaction." + +msgid "Entitlements that apply to the invoking user, showing access to premium SKUs." +msgstr "Entitlements that apply to the invoking user, showing access to premium SKUs." + +msgid "list[:class:`Entitlement`]" +msgstr "list[:class:`Entitlement`]" + +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "Contains the entities (users or guilds) that authorized this interaction." + +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr ":class:`AuthorizingIntegrationOwners`" + +msgid "The context in which this command was executed." +msgstr "The context in which this command was executed." + +msgid "Optional[:class:`InteractionContextType`]" +msgstr "Optional[:class:`InteractionContextType`]" + +msgid "Returns the client that sent the interaction." +msgstr "Returns the client that sent the interaction." + +msgid "The guild the interaction was sent from." +msgstr "The guild the interaction was sent from." + +msgid "Indicates whether the interaction is an application command." +msgstr "Indicates whether the interaction is an application command." + +msgid "Indicates whether the interaction is a message component." +msgstr "Indicates whether the interaction is a message component." + +msgid "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." +msgstr "Note that due to a Discord limitation, DM channels are not resolved since there is no data to complete them. These are :class:`PartialMessageable` instead." + +msgid "The resolved permissions of the member in the channel, including overwrites." +msgstr "The resolved permissions of the member in the channel, including overwrites." + +msgid "In a non-guild context where this doesn't apply, an empty permissions object is returned." +msgstr "In a non-guild context where this doesn't apply, an empty permissions object is returned." + +msgid "The resolved permissions of the application in the channel, including overwrites." +msgstr "The resolved permissions of the application in the channel, including overwrites." + +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "Returns an object responsible for handling responding to the interaction." + +msgid "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." +msgstr "A response can only be done once. If secondary messages need to be sent, consider using :attr:`followup` instead." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Fetches the original interaction response message associated with the interaction." +msgstr "Fetches the original interaction response message associated with the interaction." + +msgid "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." +msgstr "If the interaction response was :meth:`InteractionResponse.send_message` then this would return the message that was sent using that response. Otherwise, this would return the message that triggered the interaction." + +msgid "Repeated calls to this will return a cached value." +msgstr "Repeated calls to this will return a cached value." + +msgid "The original interaction response message." +msgstr "The original interaction response message." + +msgid "Fetching the original response message failed." +msgstr "Fetching the original response message failed." + +msgid "The channel for the message could not be resolved." +msgstr "The channel for the message could not be resolved." + +msgid "An alias for :meth:`original_response`." +msgstr "An alias for :meth:`original_response`." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "An alias for :meth:`edit_original_response`." +msgstr "An alias for :meth:`edit_original_response`." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.delete` in case you do not want to fetch the message and save an HTTP request." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid "An alias for :meth:`delete_original_response`." +msgstr "An alias for :meth:`delete_original_response`." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." +msgstr "Either respond to the interaction with an edit_message or edits the existing response, determined by whether the interaction has been responded to or not." + +msgid "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.InteractionMessage`, :class:`discord.WebhookMessage`]" + +msgid "Converts this interaction object into a dict." +msgstr "Converts this interaction object into a dict." + +msgid "A dictionary of :class:`str` interaction keys bound to the respective value." +msgstr "A dictionary of :class:`str` interaction keys bound to the respective value." + +msgid "Dict[:class:`str`, Any]" +msgstr "Dict[:class:`str`, Any]" + +msgid "Represents a Discord interaction response." +msgstr "Represents a Discord interaction response." + +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "This type can be accessed through :attr:`Interaction.response`." + +msgid "Indicates whether an interaction response has been done before." +msgstr "Indicates whether an interaction response has been done before." + +msgid "An interaction can only be responded to once." +msgstr "An interaction can only be responded to once." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Pongs the ping interaction." +msgstr "Pongs the ping interaction." + +msgid "This should rarely be used." +msgstr "This should rarely be used." + +msgid "Ponging the interaction failed." +msgstr "Ponging the interaction failed." + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "Responds to this interaction by editing the original message of a component or modal interaction." +msgstr "Responds to this interaction by editing the original message of a component or modal interaction." + +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "The new content to replace the message with. ``None`` removes the content." + +msgid "A new file to add to the message. This cannot be mixed with ``files`` parameter." +msgstr "A new file to add to the message. This cannot be mixed with ``files`` parameter." + +msgid "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." +msgstr "A list of new files to add to the message. Must be a maximum of 10. This cannot be mixed with the ``file`` parameter." + +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "|coro| Responds to this interaction by sending the autocomplete choices." + +msgid "A list of choices." +msgstr "A list of choices." + +msgid "Sending the result failed." +msgstr "Sending the result failed." + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "Responds to this interaction by sending a premium required message. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" + +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "A button with type :attr:`ButtonType.premium` should be used instead." + +msgid "Represents the original interaction response message." +msgstr "Represents the original interaction response message." + +msgid "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." +msgstr "This allows you to edit or delete the message associated with the interaction response. To retrieve this object see :meth:`Interaction.original_response`." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a Discord message interaction." +msgstr "Represents a Discord message interaction." + +msgid "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." +msgstr "This is sent on the message object when the message is a response to an interaction without an existing message e.g. application command." + +msgid "See :class:`InteractionMetadata`." +msgstr "See :class:`InteractionMetadata`." + +msgid "Responses to message components do not include this property." +msgstr "Responses to message components do not include this property." + +msgid "The name of the invoked application command." +msgstr "The name of the invoked application command." + +msgid "The user that sent the interaction." +msgstr "The user that sent the interaction." + +msgid "Represents metadata about an interaction." +msgstr "Represents metadata about an interaction." + +msgid "This is sent on the message object when the message is related to an interaction" +msgstr "This is sent on the message object when the message is related to an interaction" + +msgid "The authorizing user or server for the installation(s) relevant to the interaction." +msgstr "The authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the original response message. Only present on interaction follow-up messages." +msgstr "The ID of the original response message. Only present on interaction follow-up messages." + +msgid "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." +msgstr "The ID of the message that triggered the interaction. Only present on interactions of type :attr:`InteractionType.component`." + +msgid "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." +msgstr "The metadata of the interaction that opened the model. Only present on interactions of type :attr:`InteractionType.modal_submit`." + +msgid "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." +msgstr "The original response message. Returns ``None`` if the message is not in cache, or if :attr:`original_response_message_id` is ``None``." + +msgid "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." +msgstr "The message that triggered the interaction. Returns ``None`` if the message is not in cache, or if :attr:`interacted_message_id` is ``None``." + +msgid "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." +msgstr "Contains details on the authorizing user or server for the installation(s) relevant to the interaction." + +msgid "The ID of the user that authorized the integration." +msgstr "The ID of the user that authorized the integration." + +msgid ":class:`int` | None" +msgstr ":class:`int` | None" + +msgid "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." +msgstr "The ID of the guild that authorized the integration. This will be ``0`` if the integration was triggered from the user in the bot's DMs." + +msgid "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." +msgstr "The user that authorized the integration. Returns ``None`` if the user is not in cache, or if :attr:`user_id` is ``None``." + +msgid "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." +msgstr "The guild that authorized the integration. Returns ``None`` if the guild is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." + +msgid "Represents a Discord Bot UI Kit Component." +msgstr "Represents a Discord Bot UI Kit Component." + +msgid "Currently, the only components supported by Discord are:" +msgstr "Currently, the only components supported by Discord are:" + +msgid ":class:`ActionRow`" +msgstr ":class:`ActionRow`" + +msgid ":class:`Button`" +msgstr ":class:`Button`" + +msgid ":class:`SelectMenu`" +msgstr ":class:`SelectMenu`" + +msgid "This class is abstract and cannot be instantiated." +msgstr "This class is abstract and cannot be instantiated." + +msgid "The type of component." +msgstr "The type of component." + +msgid ":class:`ComponentType`" +msgstr ":class:`ComponentType`" + +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "Represents a Discord Bot UI Kit Action Row." + +msgid "This is a component that holds up to 5 children components in a row." +msgstr "This is a component that holds up to 5 children components in a row." + +msgid "This inherits from :class:`Component`." +msgstr "This inherits from :class:`Component`." + +msgid "The children components that this holds, if any." +msgstr "The children components that this holds, if any." + +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "Represents a button from the Discord Bot UI Kit." + +msgid "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." +msgstr "The user constructible and usable type to create a button is :class:`discord.ui.Button` not this one." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid ":class:`.ButtonStyle`" +msgstr ":class:`.ButtonStyle`" + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "Optional[:class:`PartialEmoji`]" +msgstr "Optional[:class:`PartialEmoji`]" + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "Represents a select menu from the Discord Bot UI Kit." + +msgid "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." +msgstr "A select menu is functionally the same as a dropdown, however on mobile it renders a bit differently." + +msgid "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." +msgstr "The user constructible and usable type to create a select menu is :class:`discord.ui.Select` not this one." + +msgid "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." +msgstr "Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`." + +msgid "The select menu's type." +msgstr "The select menu's type." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Will be an empty list for all component types except for :attr:`ComponentType.string_select`." + +msgid "List[:class:`SelectOption`]" +msgstr "List[:class:`SelectOption`]" + +msgid "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." +msgstr "A list of channel types that can be selected. Will be an empty list for all component types except for :attr:`ComponentType.channel_select`." + +msgid "List[:class:`ChannelType`]" +msgstr "List[:class:`ChannelType`]" + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "Emoji" +msgstr "Emoji" + +msgid "Represents a custom emoji." +msgstr "Represents a custom emoji." + +msgid "Depending on the way this object was created, some attributes can have a value of ``None``." +msgstr "Depending on the way this object was created, some attributes can have a value of ``None``." + +msgid "Checks if two emoji are the same." +msgstr "Checks if two emoji are the same." + +msgid "Checks if two emoji are not the same." +msgstr "Checks if two emoji are not the same." + +msgid "Return the emoji's hash." +msgstr "Return the emoji's hash." + +msgid "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." +msgstr "Returns an iterator of ``(field, value)`` pairs. This allows this class to be used as an iterable in list/dict/etc constructions." + +msgid "Returns the emoji rendered for discord." +msgstr "Returns the emoji rendered for discord." + +msgid "The name of the emoji." +msgstr "The name of the emoji." + +msgid "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." +msgstr "If colons are required to use this emoji in the client (:PJSalt: vs PJSalt)." + +msgid "Whether an emoji is animated or not." +msgstr "Whether an emoji is animated or not." + +msgid "If this emoji is managed by a Twitch integration." +msgstr "If this emoji is managed by a Twitch integration." + +msgid "The guild ID the emoji belongs to." +msgstr "The guild ID the emoji belongs to." + +msgid "Whether the emoji is available for use." +msgstr "Whether the emoji is available for use." + +msgid "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." +msgstr "The user that created the emoji. This can only be retrieved using :meth:`Guild.fetch_emoji` and having the :attr:`~Permissions.manage_emojis` permission." + +msgid "Returns the emoji's creation time in UTC." +msgstr "Returns the emoji's creation time in UTC." + +msgid "Returns the URL of the emoji." +msgstr "Returns the URL of the emoji." + +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "A :class:`list` of roles that is allowed to use this emoji." + +msgid "If roles is empty, the emoji is unrestricted." +msgstr "If roles is empty, the emoji is unrestricted." + +msgid "The guild this emoji belongs to." +msgstr "The guild this emoji belongs to." + +msgid "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the bot can use this emoji. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Deletes the custom emoji." +msgstr "Deletes the custom emoji." + +msgid "Edits the custom emoji." +msgstr "Edits the custom emoji." + +msgid "The newly updated emoji is returned." +msgstr "The newly updated emoji is returned." + +msgid "The new emoji name." +msgstr "The new emoji name." + +msgid "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." +msgstr "A list of roles that can use this emoji. An empty list can be passed to make it available to everyone." + +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "The reason for editing this emoji. Shows up on the audit log." + +msgid "You are not allowed to edit emojis." +msgstr "You are not allowed to edit emojis." + +msgid "An error occurred editing the emoji." +msgstr "An error occurred editing the emoji." + +msgid "The newly updated emoji." +msgstr "The newly updated emoji." + +msgid "Represents a \"partial\" emoji." +msgstr "Represents a \"partial\" emoji." + +msgid "This model will be given in two scenarios:" +msgstr "This model will be given in two scenarios:" + +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "\"Raw\" data events such as :func:`on_raw_reaction_add`" + +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" + +msgid "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." +msgstr "The custom emoji name, if applicable, or the unicode codepoint of the non-custom emoji. This can be ``None`` if the emoji got deleted (e.g. removing a reaction with a deleted emoji)." + +msgid "Whether the emoji is animated or not." +msgstr "Whether the emoji is animated or not." + +msgid "The ID of the custom emoji, if applicable." +msgstr "The ID of the custom emoji, if applicable." + +msgid "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." +msgstr "Converts a Discord string representation of an emoji to a :class:`PartialEmoji`." + +msgid "The formats accepted are:" +msgstr "The formats accepted are:" + +msgid "``a:name:id``" +msgstr "``a:name:id``" + +msgid "````" +msgstr "````" + +msgid "``name:id``" +msgstr "``name:id``" + +msgid "``<:name:id>``" +msgstr "``<:name:id>``" + +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "If the format does not match then it is assumed to be a unicode emoji." + +msgid "The string representation of an emoji." +msgstr "The string representation of an emoji." + +msgid "The partial emoji from this string." +msgstr "The partial emoji from this string." + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "Checks if this is a custom non-Unicode emoji." + +msgid "Checks if this is a Unicode emoji." +msgstr "Checks if this is a Unicode emoji." + +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "Returns the emoji's creation time in UTC, or None if Unicode emoji." + +msgid "Returns the URL of the emoji, if it is custom." +msgstr "Returns the URL of the emoji, if it is custom." + +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "If this isn't a custom emoji then an empty string is returned" + +msgid "Channels" +msgstr "Channels" + +msgid "Represents a Discord text channel." +msgstr "Represents a Discord text channel." + +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "The channel's topic. ``None`` if it doesn't exist." + +msgid "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." +msgstr "The last message ID of the message sent to this channel. It may *not* point to an existing or valid message." + +msgid "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." +msgstr "The number of seconds a member must wait between sending messages in this channel. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode." + +msgid "If the channel is marked as \"not safe for work\"." +msgstr "If the channel is marked as \"not safe for work\"." + +msgid "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." +msgstr "To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead." + +msgid "The default auto archive duration in minutes for threads created in this channel." +msgstr "The default auto archive duration in minutes for threads created in this channel." + +msgid "The initial slowmode delay to set on newly created threads in this channel." +msgstr "The initial slowmode delay to set on newly created threads in this channel." + +msgid "Checks if the channel is a news/announcements channel." +msgstr "Checks if the channel is a news/announcements channel." + +msgid "Equivalent to :meth:`is_news`." +msgstr "Equivalent to :meth:`is_news`." + +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "The ``overwrites`` keyword-only parameter was added." + +msgid "The ``type`` keyword-only parameter was added." +msgstr "The ``type`` keyword-only parameter was added." + +msgid "The new channel name." +msgstr "The new channel name." + +msgid "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." +msgstr "Specifies the slowmode rate limit for user in this channel, in seconds. A value of `0` disables slowmode. The maximum value possible is `21600`." + +msgid "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." +msgstr "Change the type of this text channel. Currently, only conversion between :attr:`ChannelType.text` and :attr:`ChannelType.news` is supported. This is only available to guilds that contain ``NEWS`` in :attr:`Guild.features`." + +msgid "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." + +msgid "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" +msgstr "The new default slowmode delay in seconds for threads created in this channel. .. versionadded:: 2.3" + +msgid "The new default slowmode delay in seconds for threads created in this channel." +msgstr "The new default slowmode delay in seconds for threads created in this channel." + +msgid "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited text channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.TextChannel`]" +msgstr "Optional[:class:`.TextChannel`]" + +msgid "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." +msgstr "If position is less than 0 or greater than the number of channels, or if the permission overwrite information is not in proper form." + +msgid "Creates a thread in this text channel." +msgstr "Creates a thread in this text channel." + +msgid "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." +msgstr "To create a public thread, you must have :attr:`~discord.Permissions.create_public_threads`. For a private thread, :attr:`~discord.Permissions.create_private_threads` is needed instead." + +msgid "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." +msgstr "A snowflake representing the message to create the thread with. If ``None`` is passed then a private thread is created. Defaults to ``None``." + +msgid "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." +msgstr "The type of thread to create. If a ``message`` is passed then this parameter is ignored, as a thread created with a message is always a public thread. By default, this creates a private thread if this is ``None``." + +msgid "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." +msgstr "Specifies the slowmode rate limit for users in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``." + +msgid "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." +msgstr "Whether non-moderators can add other non-moderators to this thread. Only available for private threads, where it defaults to True." + +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "The reason for creating a new thread. Shows up on the audit log." + +msgid "The created thread" +msgstr "The created thread" + +msgid "Starting the thread failed." +msgstr "Starting the thread failed." + +msgid "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." +msgstr "Returns an :class:`~discord.AsyncIterator` that iterates over all archived threads in the guild." + +msgid "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." +msgstr "You must have :attr:`~Permissions.read_message_history` to use this. If iterating over private threads then :attr:`~Permissions.manage_threads` is also required." + +msgid "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of threads to retrieve. If ``None``, retrieves every archived thread in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve archived channels before the given date or ID." +msgstr "Retrieve archived channels before the given date or ID." + +msgid "Whether to retrieve private archived threads." +msgstr "Whether to retrieve private archived threads." + +msgid "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "Whether to retrieve private archived threads that you've joined. You cannot set ``joined`` to ``True`` and ``private`` to ``False``." + +msgid ":class:`Thread` -- The archived threads." +msgstr ":class:`Thread` -- The archived threads." + +msgid "You do not have permissions to get archived threads." +msgstr "You do not have permissions to get archived threads." + +msgid "The request to get the archived threads failed." +msgstr "The request to get the archived threads failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" + +msgid "Follows a channel using a webhook." +msgstr "Follows a channel using a webhook." + +msgid "Only news channels can be followed." +msgstr "Only news channels can be followed." + +msgid "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." +msgstr "The webhook returned will not provide a token to do webhook actions, as Discord does not provide it." + +msgid "The channel you would like to follow from." +msgstr "The channel you would like to follow from." + +msgid "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" +msgstr "The reason for following the channel. Shows up on the destination guild's audit log. .. versionadded:: 1.4" + +msgid "The reason for following the channel. Shows up on the destination guild's audit log." +msgstr "The reason for following the channel. Shows up on the destination guild's audit log." + +msgid "Following the channel failed." +msgstr "Following the channel failed." + +msgid "You do not have the permissions to create a webhook." +msgstr "You do not have the permissions to create a webhook." + +msgid "Returns all members that can see this channel." +msgstr "Returns all members that can see this channel." + +msgid "Returns all the threads that you can see." +msgstr "Returns all the threads that you can see." + +msgid "Represents a Discord forum channel." +msgstr "Represents a Discord forum channel." + +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr ":attr:`guidelines` exists as an alternative to this attribute." + +msgid "The set of tags that can be used in a forum channel." +msgstr "The set of tags that can be used in a forum channel." + +msgid "The default sort order type used to order posts in this channel." +msgstr "The default sort order type used to order posts in this channel." + +msgid "Optional[:class:`SortOrder`]" +msgstr "Optional[:class:`SortOrder`]" + +msgid "The default forum reaction emoji." +msgstr "The default forum reaction emoji." + +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "Optional[:class:`str` | :class:`discord.Emoji`]" + +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "The channel's guidelines. An alias of :attr:`topic`." + +msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum channel." + +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "Tags are specified in :attr:`applied_tags`." + +msgid "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." +msgstr "Returns the :class:`ForumTag` from this forum channel with the given ID, if any." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" + +msgid "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" +msgstr "The default sort order type to use to order posts in this channel. .. versionadded:: 2.3" + +msgid "The default sort order type to use to order posts in this channel." +msgstr "The default sort order type to use to order posts in this channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" + +msgid "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" +msgstr "The set of tags that can be used in this channel. Must be less than `20`. .. versionadded:: 2.3" + +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "The set of tags that can be used in this channel. Must be less than `20`." + +msgid "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" +msgstr "Whether a tag should be required to be specified when creating a thread in this channel. .. versionadded:: 2.3" + +msgid "Whether a tag should be required to be specified when creating a thread in this channel." +msgstr "Whether a tag should be required to be specified when creating a thread in this channel." + +msgid "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited forum channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.ForumChannel`]" +msgstr "Optional[:class:`.ForumChannel`]" + +msgid "Creates a thread in this forum channel." +msgstr "Creates a thread in this forum channel." + +msgid "The time to wait before deleting the thread." +msgstr "The time to wait before deleting the thread." + +msgid "A list of tags to apply to the new thread." +msgstr "A list of tags to apply to the new thread." + +msgid "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." +msgstr "The number of seconds a member must wait between sending messages in the new thread. A value of `0` denotes that it is disabled. Bots and users with :attr:`~Permissions.manage_channels` or :attr:`~Permissions.manage_messages` bypass slowmode. If not provided, the forum channel's default slowmode is used." + +msgid "Represents a Discord guild voice channel." +msgstr "Represents a Discord guild voice channel." + +msgid "The ID of the last message sent to this channel. It may not always point to an existing or valid message." +msgstr "The ID of the last message sent to this channel. It may not always point to an existing or valid message." + +msgid "The channel's status, if set." +msgstr "The channel's status, if set." + +msgid "The new channel's bitrate." +msgstr "The new channel's bitrate." + +msgid "The new channel's user limit." +msgstr "The new channel's user limit." + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection. .. versionadded:: 1.7" + +msgid "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." +msgstr "The new region for the voice channel's voice communication. A value of ``None`` indicates automatic voice region detection." + +msgid "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited voice channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "Optional[:class:`.VoiceChannel`]" + +msgid "A shortcut method that creates an instant activity invite." +msgstr "A shortcut method that creates an instant activity invite." + +msgid "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." +msgstr "You must have the :attr:`~discord.Permissions.start_embedded_activities` permission to do this." + +msgid "The activity to create an invite for which can be an application id as well." +msgstr "The activity to create an invite for which can be an application id as well." + +msgid "If the activity is not a valid activity or application id." +msgstr "If the activity is not a valid activity or application id." + +msgid "Sets the status of the voice channel." +msgstr "Sets the status of the voice channel." + +msgid "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." +msgstr "You must have the :attr:`~Permissions.set_voice_channel_status` permission to use this." + +msgid "The new status." +msgstr "The new status." + +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "The reason for setting the status. Shows up on the audit log." + +msgid "You do not have proper permissions to set the status." +msgstr "You do not have proper permissions to set the status." + +msgid "Setting the status failed." +msgstr "Setting the status failed." + +msgid "Represents a Discord channel category." +msgstr "Represents a Discord channel category." + +msgid "These are useful to group channels to logical compartments." +msgstr "These are useful to group channels to logical compartments." + +msgid "Returns the category's hash." +msgstr "Returns the category's hash." + +msgid "Returns the category's name." +msgstr "Returns the category's name." + +msgid "The category name." +msgstr "The category name." + +msgid "The guild the category belongs to." +msgstr "The guild the category belongs to." + +msgid "The category channel ID." +msgstr "The category channel ID." + +msgid "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." +msgstr "The position in the category list. This is a number that starts at 0. e.g. the top category is position 0. Can be ``None`` if the channel was received in an interaction." + +msgid "Checks if the category is NSFW." +msgstr "Checks if the category is NSFW." + +msgid "The new category's name." +msgstr "The new category's name." + +msgid "The new category's position." +msgstr "The new category's position." + +msgid "To mark the category as NSFW or not." +msgstr "To mark the category as NSFW or not." + +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "The reason for editing this category. Shows up on the audit log." + +msgid "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited category channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "Optional[:class:`.CategoryChannel`]" + +msgid "If position is less than 0 or greater than the number of categories." +msgstr "If position is less than 0 or greater than the number of categories." + +msgid "You do not have permissions to edit the category." +msgstr "You do not have permissions to edit the category." + +msgid "Editing the category failed." +msgstr "Editing the category failed." + +msgid "Returns the channels that are under this category." +msgstr "Returns the channels that are under this category." + +msgid "These are sorted by the official Discord UI, which places voice channels below the text channels." +msgstr "These are sorted by the official Discord UI, which places voice channels below the text channels." + +msgid "Returns the text channels that are under this category." +msgstr "Returns the text channels that are under this category." + +msgid "Returns the voice channels that are under this category." +msgstr "Returns the voice channels that are under this category." + +msgid "Returns the stage channels that are under this category." +msgstr "Returns the stage channels that are under this category." + +msgid "Returns the forum channels that are under this category." +msgstr "Returns the forum channels that are under this category." + +msgid "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_text_channel` to create a :class:`TextChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_voice_channel` to create a :class:`VoiceChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_stage_channel` to create a :class:`StageChannel` in the category." + +msgid "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." +msgstr "A shortcut method to :meth:`Guild.create_forum_channel` to create a :class:`ForumChannel` in the category." + +msgid "Represents a Discord direct message channel." +msgstr "Represents a Discord direct message channel." + +msgid "Returns a string representation of the channel" +msgstr "Returns a string representation of the channel" + +msgid "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." +msgstr "The user you are participating with in the direct message channel. If this channel is received through the gateway, the recipient information may not be always available." + +msgid "The user presenting yourself." +msgstr "The user presenting yourself." + +msgid "The direct message channel ID." +msgstr "The direct message channel ID." + +msgid "Returns the direct message channel's creation time in UTC." +msgstr "Returns the direct message channel's creation time in UTC." + +msgid "Handles permission resolution for a :class:`User`." +msgstr "Handles permission resolution for a :class:`User`." + +msgid "This function is there for compatibility with other channel types." +msgstr "This function is there for compatibility with other channel types." + +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "Actual direct messages do not really have the concept of permissions." + +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "This returns all the Text related permissions set to ``True`` except:" + +msgid ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." +msgstr ":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a DM." + +msgid ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." +msgstr ":attr:`~Permissions.manage_messages`: You cannot delete others messages in a DM." + +msgid "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." +msgstr "The user to check permissions for. This parameter is ignored but kept for compatibility with other ``permissions_for`` methods." + +msgid "The resolved permissions." +msgstr "The resolved permissions." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +msgid "Represents a Discord group channel." +msgstr "Represents a Discord group channel." + +msgid "The users you are participating with in the group channel." +msgstr "The users you are participating with in the group channel." + +msgid "List[:class:`User`]" +msgstr "List[:class:`User`]" + +msgid "The group channel ID." +msgstr "The group channel ID." + +msgid "The user that owns the group channel." +msgstr "The user that owns the group channel." + +msgid "The owner ID that owns the group channel." +msgstr "The owner ID that owns the group channel." + +msgid "The group channel's name if provided." +msgstr "The group channel's name if provided." + +msgid "Returns the channel's icon asset if available." +msgstr "Returns the channel's icon asset if available." + +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "This also checks the kick_members permission if the user is the owner." + +msgid "The user to check permissions for." +msgstr "The user to check permissions for." + +msgid "The resolved permissions for the user." +msgstr "The resolved permissions for the user." + +msgid "Leave the group." +msgstr "Leave the group." + +msgid "If you are the only one in the group, this deletes it as well." +msgstr "If you are the only one in the group, this deletes it as well." + +msgid "Leaving the group failed." +msgstr "Leaving the group failed." + +msgid "Stickers" +msgstr "Stickers" + +msgid "Represents a sticker." +msgstr "Represents a sticker." + +msgid "Returns the name of the sticker." +msgstr "Returns the name of the sticker." + +msgid "Checks if the sticker is equal to another sticker." +msgstr "Checks if the sticker is equal to another sticker." + +msgid "Checks if the sticker is not equal to another sticker." +msgstr "Checks if the sticker is not equal to another sticker." + +msgid "The sticker's name." +msgstr "The sticker's name." + +msgid "The id of the sticker." +msgstr "The id of the sticker." + +msgid "The description of the sticker." +msgstr "The description of the sticker." + +msgid "The id of the sticker's pack." +msgstr "The id of the sticker's pack." + +msgid "The format for the sticker's image." +msgstr "The format for the sticker's image." + +msgid ":class:`StickerFormatType`" +msgstr ":class:`StickerFormatType`" + +msgid "The URL for the sticker's image." +msgstr "The URL for the sticker's image." + +msgid "Returns the sticker's creation time in UTC." +msgstr "Returns the sticker's creation time in UTC." + +msgid "Represents a sticker pack." +msgstr "Represents a sticker pack." + +msgid "Returns the name of the sticker pack." +msgstr "Returns the name of the sticker pack." + +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "Checks if the sticker pack is equal to another sticker pack." + +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "Checks if the sticker pack is not equal to another sticker pack." + +msgid "The name of the sticker pack." +msgstr "The name of the sticker pack." + +msgid "The description of the sticker pack." +msgstr "The description of the sticker pack." + +msgid "The id of the sticker pack." +msgstr "The id of the sticker pack." + +msgid "The stickers of this sticker pack." +msgstr "The stickers of this sticker pack." + +msgid "List[:class:`StandardSticker`]" +msgstr "List[:class:`StandardSticker`]" + +msgid "The SKU ID of the sticker pack." +msgstr "The SKU ID of the sticker pack." + +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "The ID of the sticker used for the cover of the sticker pack." + +msgid "The sticker used for the cover of the sticker pack." +msgstr "The sticker used for the cover of the sticker pack." + +msgid ":class:`StandardSticker`" +msgstr ":class:`StandardSticker`" + +msgid "The banner asset of the sticker pack." +msgstr "The banner asset of the sticker pack." + +msgid "Represents a sticker item." +msgstr "Represents a sticker item." + +msgid "Returns the name of the sticker item." +msgstr "Returns the name of the sticker item." + +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "Checks if the sticker item is equal to another sticker item." + +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "Checks if the sticker item is not equal to another sticker item." + +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "Attempts to retrieve the full sticker data of the sticker item." + +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "Union[:class:`StandardSticker`, :class:`GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "Represents a sticker that is found in a standard sticker pack." + +msgid "A list of tags for the sticker." +msgstr "A list of tags for the sticker." + +msgid "The sticker's sort order within its pack." +msgstr "The sticker's sort order within its pack." + +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "Retrieves the sticker pack that this sticker belongs to." + +msgid "The retrieved sticker pack." +msgstr "The retrieved sticker pack." + +msgid ":class:`StickerPack`" +msgstr ":class:`StickerPack`" + +msgid "The corresponding sticker pack was not found." +msgstr "The corresponding sticker pack was not found." + +msgid "Retrieving the sticker pack failed." +msgstr "Retrieving the sticker pack failed." + +msgid "Represents a sticker that belongs to a guild." +msgstr "Represents a sticker that belongs to a guild." + +msgid "Whether this sticker is available for use." +msgstr "Whether this sticker is available for use." + +msgid "The ID of the guild that this sticker is from." +msgstr "The ID of the guild that this sticker is from." + +msgid "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." +msgstr "The user that created this sticker. This can only be retrieved using :meth:`Guild.fetch_sticker` and having the :attr:`~Permissions.manage_emojis_and_stickers` permission." + +msgid "The name of a unicode emoji that represents this sticker." +msgstr "The name of a unicode emoji that represents this sticker." + +msgid "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." +msgstr "The guild that this sticker is from. Could be ``None`` if the bot is not in the guild." + +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "Edits a :class:`GuildSticker` for the guild." + +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "The sticker's new name. Must be at least 2 characters." + +msgid "The sticker's new description. Can be ``None``." +msgstr "The sticker's new description. Can be ``None``." + +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "The reason for editing this sticker. Shows up on the audit log." + +msgid "The newly modified sticker." +msgstr "The newly modified sticker." + +msgid "You are not allowed to edit stickers." +msgstr "You are not allowed to edit stickers." + +msgid "An error occurred editing the sticker." +msgstr "An error occurred editing the sticker." + +msgid "Events" +msgstr "Events" + +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "Represents the payload for an :func:`on_auto_moderation_action_execution`" + +msgid "The action that was executed." +msgstr "The action that was executed." + +msgid ":class:`AutoModAction`" +msgstr ":class:`AutoModAction`" + +msgid "The ID of the rule that the action belongs to." +msgstr "The ID of the rule that the action belongs to." + +msgid "The category of trigger the rule belongs to." +msgstr "The category of trigger the rule belongs to." + +msgid "The ID of the guild that the action was executed in." +msgstr "The ID of the guild that the action was executed in." + +msgid "The guild that the action was executed in, if cached." +msgstr "The guild that the action was executed in, if cached." + +msgid "The ID of the user that triggered the action." +msgstr "The ID of the user that triggered the action." + +msgid "The member that triggered the action, if cached." +msgstr "The member that triggered the action, if cached." + +msgid "The ID of the channel in which the member's content was posted." +msgstr "The ID of the channel in which the member's content was posted." + +msgid "The channel in which the member's content was posted, if cached." +msgstr "The channel in which the member's content was posted, if cached." + +msgid "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "Optional[Union[:class:`TextChannel`, :class:`Thread`, :class:`VoiceChannel`, :class:`StageChannel`]]" + +msgid "The ID of the message that triggered the action. This is only available if the message was not blocked." +msgstr "The ID of the message that triggered the action. This is only available if the message was not blocked." + +msgid "The message that triggered the action, if cached." +msgstr "The message that triggered the action, if cached." + +msgid "The ID of the system auto moderation message that was posted as a result of the action." +msgstr "The ID of the system auto moderation message that was posted as a result of the action." + +msgid "The system auto moderation message that was posted as a result of the action, if cached." +msgstr "The system auto moderation message that was posted as a result of the action, if cached." + +msgid "The content of the message that triggered the action." +msgstr "The content of the message that triggered the action." + +msgid "The word or phrase configured that was matched in the content." +msgstr "The word or phrase configured that was matched in the content." + +msgid "The substring in the content that was matched." +msgstr "The substring in the content that was matched." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "Represents the payload for a :func:`on_raw_typing` event." + +msgid "The channel ID where the typing originated from." +msgstr "The channel ID where the typing originated from." + +msgid "The ID of the user that started typing." +msgstr "The ID of the user that started typing." + +msgid "When the typing started as an aware datetime in UTC." +msgstr "When the typing started as an aware datetime in UTC." + +msgid "The guild ID where the typing originated from, if applicable." +msgstr "The guild ID where the typing originated from, if applicable." + +msgid "The member who started typing. Only available if the member started typing in a guild." +msgstr "The member who started typing. Only available if the member started typing in a guild." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_message_delete` event." + +msgid "The channel ID where the deletion took place." +msgstr "The channel ID where the deletion took place." + +msgid "The guild ID where the deletion took place, if applicable." +msgstr "The guild ID where the deletion took place, if applicable." + +msgid "The message ID that got deleted." +msgstr "The message ID that got deleted." + +msgid "The cached message, if found in the internal message cache." +msgstr "The cached message, if found in the internal message cache." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." +msgstr "Represents the event payload for a :func:`on_raw_bulk_message_delete` event." + +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "A :class:`set` of the message IDs that were deleted." + +msgid "Set[:class:`int`]" +msgstr "Set[:class:`int`]" + +msgid "The channel ID where the message got deleted." +msgstr "The channel ID where the message got deleted." + +msgid "The guild ID where the message got deleted, if applicable." +msgstr "The guild ID where the message got deleted, if applicable." + +msgid "The cached messages, if found in the internal message cache." +msgstr "The cached messages, if found in the internal message cache." + +msgid "List[:class:`Message`]" +msgstr "List[:class:`Message`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "Represents the payload for a :func:`on_raw_message_edit` event." + +msgid "The message ID that got updated." +msgstr "The message ID that got updated." + +msgid "The channel ID where the update took place." +msgstr "The channel ID where the update took place." + +msgid "The guild ID where the message got updated, if applicable." +msgstr "The guild ID where the message got updated, if applicable." + +msgid "The raw data sent by the `gateway `_" +msgstr "The raw data sent by the `gateway `_" + +msgid "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." +msgstr "The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`." + +msgid "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_add` or :func:`on_raw_reaction_remove` event." + +msgid "The message ID that got or lost a reaction." +msgstr "The message ID that got or lost a reaction." + +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "The user ID who added the reaction or whose reaction was removed." + +msgid "The channel ID where the reaction got added or removed." +msgstr "The channel ID where the reaction got added or removed." + +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "The guild ID where the reaction got added or removed, if applicable." + +msgid "The custom or unicode emoji being used." +msgstr "The custom or unicode emoji being used." + +msgid "The member who added the reaction. Only available if the reaction occurs within a guild." +msgstr "The member who added the reaction. Only available if the reaction occurs within a guild." + +msgid "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "The event type that triggered this action. Can be ``REACTION_ADD`` for reaction addition or ``REACTION_REMOVE`` for reaction removal." + +msgid "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." +msgstr "A list of hex codes this reaction can be. Only available if `event_type` is `REACTION_ADD` and this emoji has super reactions available." + +msgid "Optional[:class:`list`]" +msgstr "Optional[:class:`list`]" + +msgid "Alias for :attr:`burst_colours`." +msgstr "Alias for :attr:`burst_colours`." + +msgid "The type of reaction added." +msgstr "The type of reaction added." + +msgid ":class:`ReactionType`" +msgstr ":class:`ReactionType`" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear` event." + +msgid "The message ID that got its reactions cleared." +msgstr "The message ID that got its reactions cleared." + +msgid "The channel ID where the reactions got cleared." +msgstr "The channel ID where the reactions got cleared." + +msgid "The guild ID where the reactions got cleared." +msgstr "The guild ID where the reactions got cleared." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." + +msgid "The custom or unicode emoji being removed." +msgstr "The custom or unicode emoji being removed." + +msgid "Whether this reaction was a burst (super) reaction." +msgstr "Whether this reaction was a burst (super) reaction." + +msgid "The available HEX codes of the removed super reaction." +msgstr "The available HEX codes of the removed super reaction." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "The type of reaction removed." +msgstr "The type of reaction removed." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "Represents the payload for a :func:`on_raw_integration_delete` event." + +msgid "The ID of the integration that got deleted." +msgstr "The ID of the integration that got deleted." + +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "The ID of the bot/OAuth2 application for this deleted integration." + +msgid "The guild ID where the integration got deleted." +msgstr "The guild ID where the integration got deleted." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "Represents the payload for :func:`on_raw_thread_delete` event." + +msgid "The ID of the thread that was deleted." +msgstr "The ID of the thread that was deleted." + +msgid "The channel type of the deleted thread." +msgstr "The channel type of the deleted thread." + +msgid ":class:`discord.ChannelType`" +msgstr ":class:`discord.ChannelType`" + +msgid "The ID of the guild the deleted thread belonged to." +msgstr "The ID of the guild the deleted thread belonged to." + +msgid "The ID of the channel the thread belonged to." +msgstr "The ID of the channel the thread belonged to." + +msgid "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." +msgstr "The thread that was deleted. This may be ``None`` if deleted thread is not found in internal cache." + +msgid "Optional[:class:`discord.Thread`]" +msgstr "Optional[:class:`discord.Thread`]" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." +msgstr "Represents the payload for a :func:`raw_scheduled_event_user_add` or :func:`raw_scheduled_event_user_remove` event." + +msgid "The event ID where the typing originated from." +msgstr "The event ID where the typing originated from." + +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "The ID of the user that subscribed/unsubscribed." + +msgid "The guild where the subscription/unsubscription happened." +msgstr "The guild where the subscription/unsubscription happened." + +msgid "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." +msgstr "Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event called." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_member_remove` event." + +msgid "The user that left the guild." +msgstr "The user that left the guild." + +msgid ":class:`discord.User`" +msgstr ":class:`discord.User`" + +msgid "The ID of the guild the user left." +msgstr "The ID of the guild the user left." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "Represents the payload for an :func:`on_raw_thread_update` event." + +msgid "The ID of the updated thread." +msgstr "The ID of the updated thread." + +msgid "The channel type of the updated thread." +msgstr "The channel type of the updated thread." + +msgid "The ID of the guild the thread belongs to." +msgstr "The ID of the guild the thread belongs to." + +msgid "The ID of the channel the thread belongs to." +msgstr "The ID of the channel the thread belongs to." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "The thread, if it could be found in the internal cache." +msgstr "The thread, if it could be found in the internal cache." + +msgid ":class:`discord.Thread` | None" +msgstr ":class:`discord.Thread` | None" + +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "Represents the payload for an :func:`on_raw_thread_member_remove` event." + +msgid "The ID of the thread that was updated." +msgstr "The ID of the thread that was updated." + +msgid "The ID of the guild the thread is in." +msgstr "The ID of the guild the thread is in." + +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "The approximate number of members in the thread. Maximum of 50." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "Represents the payload for an :func:`on_raw_audit_log_entry` event." + +msgid "The action that was done." +msgstr "The action that was done." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "The entry ID." + +msgid "The ID of the guild this action came from." +msgstr "The ID of the guild this action came from." + +msgid "The ID of the user who initiated this action." +msgstr "The ID of the user who initiated this action." + +msgid "The ID of the target that got changed." +msgstr "The ID of the target that got changed." + +msgid "The reason this action was done." +msgstr "The reason this action was done." + +msgid "The changes that were made to the target." +msgstr "The changes that were made to the target." + +msgid "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." +msgstr "Extra information that this entry has that might be useful. For most actions, this is ``None``. However, in some cases it contains extra information. See :class:`AuditLogAction` for which actions have this field filled out." + +msgid "Any" +msgstr "Any" + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." +msgstr "Represents the payload for an :func:`on_raw_voice_channel_status_update` event." + +msgid "The channel ID where the voice channel status update originated from." +msgstr "The channel ID where the voice channel status update originated from." + +msgid "The guild ID where the voice channel status update originated from." +msgstr "The guild ID where the voice channel status update originated from." + +msgid "The new new voice channel status." +msgstr "The new new voice channel status." + +msgid "The raw data sent by the `gateway `_." +msgstr "The raw data sent by the `gateway `_." + +msgid "Webhooks" +msgstr "Webhooks" + +msgid "Represents a partial guild for webhooks." +msgstr "Represents a partial guild for webhooks." + +msgid "These are typically given for channel follower webhooks." +msgstr "These are typically given for channel follower webhooks." + +msgid "Represents a partial channel for webhooks." +msgstr "Represents a partial channel for webhooks." + diff --git a/docs/locales/zh/LC_MESSAGES/api/sinks.po b/docs/locales/zh/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..82436a6b02 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Core" + +msgid "Filters for :class:`~.Sink`" +msgstr "Filters for :class:`~.Sink`" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Container of all Filters." +msgstr "Container of all Filters." + +msgid "A sink \"stores\" recorded audio data." +msgstr "A sink \"stores\" recorded audio data." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Can be subclassed for extra customizablilty." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "just replace the following like so: ::" + +msgid "Raises" +msgstr "Raises" + +msgid "An invalid encoding type was specified." +msgstr "An invalid encoding type was specified." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Audio may only be formatted after recording is finished." + +msgid "Gets all audio files." +msgstr "Gets all audio files." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Gets the audio file(s) of one specific user." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Handles data that's been completely decrypted and decoded and is ready to be saved to file." + +msgid "Writes audio data." +msgstr "Writes audio data." + +msgid "The AudioData is already finished writing." +msgstr "The AudioData is already finished writing." + +msgid "Finishes and cleans up the audio data." +msgstr "Finishes and cleans up the audio data." + +msgid "Called when audio data is formatted." +msgstr "Called when audio data is formatted." + +msgid "The AudioData is still writing." +msgstr "The AudioData is still writing." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Handles raw data from Discord so that it can be decrypted and decoded to be used." + +msgid "Sink Classes" +msgstr "Sink Classes" + +msgid "A special sink for .wav(wave) files." +msgstr "A special sink for .wav(wave) files." + +msgid "Formats the recorded audio." +msgstr "Formats the recorded audio." + +msgid "Formatting the audio failed." +msgstr "Formatting the audio failed." + +msgid "A special sink for .mp3 files." +msgstr "A special sink for .mp3 files." + +msgid "A special sink for .mp4 files." +msgstr "A special sink for .mp4 files." + +msgid "A special sink for .m4a files." +msgstr "A special sink for .m4a files." + +msgid "A special sink for .mkv files." +msgstr "A special sink for .mkv files." + +msgid "A special sink for .mka files." +msgstr "A special sink for .mka files." + +msgid "A special sink for .ogg files." +msgstr "A special sink for .ogg files." + diff --git a/docs/locales/zh/LC_MESSAGES/api/ui_kit.po b/docs/locales/zh/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..bcbfa362d8 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,535 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Bot UI Kit" +msgstr "Bot UI Kit" + +msgid "The library has helpers to help create component-based UIs." +msgstr "The library has helpers to help create component-based UIs." + +msgid "Shortcut decorators" +msgstr "Shortcut decorators" + +msgid "A decorator that attaches a button to a component." +msgstr "A decorator that attaches a button to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Button` being pressed and the :class:`discord.Interaction` you receive." + +msgid "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." +msgstr "Premium and link buttons cannot be created with this decorator. Consider creating a :class:`Button` object manually instead. These types of buttons do not have a callback associated since Discord doesn't handle them when clicked." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The label of the button, if any." +msgstr "The label of the button, if any." + +msgid "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the button that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." + +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "Whether the button is disabled or not. Defaults to ``False``." + +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`.Emoji`." + +msgid "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this button belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`I\\`\\`\\, bound\\= Item\\)\\, \\:py\\:class\\:\\`\\~discord.interactions.Interaction\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\]`" + +msgid "A decorator that attaches a select menu to a component." +msgstr "A decorator that attaches a select menu to a component." + +msgid "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." +msgstr "The function being decorated should have three parameters, ``self`` representing the :class:`discord.ui.View`, the :class:`discord.ui.Select` being pressed and the :class:`discord.Interaction` you receive." + +msgid "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen within the callback use :attr:`Select.values`." + +msgid "Creating select menus of different types is now supported." +msgstr "Creating select menus of different types is now supported." + +msgid "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." +msgstr "The type of select to create. Must be one of :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, or :attr:`discord.ComponentType.channel_select`." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." +msgstr "The ID of the select menu that gets received during an interaction. It is recommended not to set this parameter to prevent conflicts." + +msgid "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this select menu belongs to. A Discord component can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 0 and 25." + +msgid "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." +msgstr "A list of options that can be selected in this menu. Only valid for the :attr:`discord.ComponentType.string_select` type." + +msgid "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." +msgstr "The channel types that should be selectable. Only valid for the :attr:`discord.ComponentType.channel_select` type. Defaults to all channel types." + +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "Whether the select is disabled or not. Defaults to ``False``." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`." + +msgid "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." +msgstr "A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`." + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a UI view." +msgstr "Represents a UI view." + +msgid "This object must be inherited to create a UI within Discord." +msgstr "This object must be inherited to create a UI within Discord." + +msgid "The initial items attached to this view." +msgstr "The initial items attached to this view." + +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." +msgstr "Timeout from last interaction with the UI before no longer accepting input. If ``None`` then there is no timeout." + +msgid "type" +msgstr "type" + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "The list of children attached to this view." +msgstr "The list of children attached to this view." + +msgid "List[:class:`Item`]" +msgstr "List[:class:`Item`]" + +msgid "Whether to disable the view when the timeout is reached. Defaults to ``False``." +msgstr "Whether to disable the view when the timeout is reached. Defaults to ``False``." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The message that this view is attached to. If ``None`` then the view has not been sent with a message." +msgstr "The message that this view is attached to. If ``None`` then the view has not been sent with a message." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." +msgstr "The parent interaction which this view was sent from. If ``None`` then the view was not sent using :meth:`InteractionResponse.send_message`." + +msgid "Optional[:class:`.Interaction`]" +msgstr "Optional[:class:`.Interaction`]" + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "Returns" +msgstr "Returns" + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "|coro|" +msgstr "|coro|" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid "A callback that is called when a view's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a view's timeout elapses without being explicitly stopped." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Represents the base UI item that all UI components inherit from." +msgstr "Represents the base UI item that all UI components inherit from." + +msgid "The current UI items supported are:" +msgstr "The current UI items supported are:" + +msgid ":class:`discord.ui.Button`" +msgstr ":class:`discord.ui.Button`" + +msgid ":class:`discord.ui.Select`" +msgstr ":class:`discord.ui.Select`" + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "The callback associated with this UI item." +msgstr "The callback associated with this UI item." + +msgid "This can be overridden by subclasses." +msgstr "This can be overridden by subclasses." + +msgid "The interaction that triggered this UI item." +msgstr "The interaction that triggered this UI item." + +msgid "Represents a UI button." +msgstr "Represents a UI button." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." +msgstr "The ID of the button that gets received during an interaction. If this button is for a URL, it does not have a custom ID." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "The label of the button, if any. Maximum of 80 chars." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "Represents a UI select menu." +msgstr "Represents a UI select menu." + +msgid "This is usually represented as a drop down menu." +msgstr "This is usually represented as a drop down menu." + +msgid "In order to get the selected items that the user has chosen, use :attr:`Select.values`." +msgstr "In order to get the selected items that the user has chosen, use :attr:`Select.values`." + +msgid "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." +msgstr "Added support for :attr:`discord.ComponentType.string_select`, :attr:`discord.ComponentType.user_select`, :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`." + +msgid "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." +msgstr "The ID of the select menu that gets received during an interaction. If not given then one is generated for you." + +msgid "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." +msgstr "The minimum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25." + +msgid "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." +msgstr "A list of options that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.string_select`." + +msgid "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." +msgstr "A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "Represents a UI Modal dialog." +msgstr "Represents a UI Modal dialog." + +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "The initial InputText fields that are displayed in the modal dialog." + +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "The title of the modal dialog. Must be 45 characters or fewer." + +msgid "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." +msgstr "The ID of the modal dialog that gets received during an interaction. Must be 100 characters or fewer." + +msgid "The title of the modal dialog." +msgstr "The title of the modal dialog." + +msgid "The child components associated with the modal dialog." +msgstr "The child components associated with the modal dialog." + +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "The ID of the modal dialog that gets received during an interaction." + +msgid "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." +msgstr "The coroutine that is called when the modal dialog is submitted. Should be overridden to handle the values submitted by the user." + +msgid "The interaction that submitted the modal dialog." +msgstr "The interaction that submitted the modal dialog." + +msgid "Adds an InputText component to the modal dialog." +msgstr "Adds an InputText component to the modal dialog." + +msgid "The item to add to the modal dialog" +msgstr "The item to add to the modal dialog" + +msgid "Removes an InputText component from the modal dialog." +msgstr "Removes an InputText component from the modal dialog." + +msgid "The item to remove from the modal dialog." +msgstr "The item to remove from the modal dialog." + +msgid "Stops listening to interaction events from the modal dialog." +msgstr "Stops listening to interaction events from the modal dialog." + +msgid "Waits for the modal dialog to be submitted." +msgstr "Waits for the modal dialog to be submitted." + +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "A callback that is called when the modal's callback fails with an error." + +msgid "A callback that is called when a modal's timeout elapses without being explicitly stopped." +msgstr "A callback that is called when a modal's timeout elapses without being explicitly stopped." + +msgid "Represents a UI text input field." +msgstr "Represents a UI text input field." + +msgid "The style of the input text field." +msgstr "The style of the input text field." + +msgid "The ID of the input text field that gets received during an interaction." +msgstr "The ID of the input text field that gets received during an interaction." + +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "The label for the input text field. Must be 45 characters or fewer." + +msgid "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." +msgstr "The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer." + +msgid "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." +msgstr "The minimum number of characters that must be entered. Defaults to 0 and must be less than 4000." + +msgid "The maximum number of characters that can be entered. Must be between 1 and 4000." +msgstr "The maximum number of characters that can be entered. Must be between 1 and 4000." + +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "Whether the input text field is required or not. Defaults to ``True``." + +msgid "Pre-fills the input text field with this value. Must be 4000 characters or fewer." +msgstr "Pre-fills the input text field with this value. Must be 4000 characters or fewer." + +msgid "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." +msgstr "The relative row this input text field belongs to. A modal dialog can only have 5 rows. By default, items are arranged automatically into those 5 rows. If you'd like to control the relative positioning of the row then passing an index is advised. For example, row=1 will show up before row=2. Defaults to ``None``, which is automatic ordering. The row number must be between 0 and 4 (i.e. zero indexed)." + +msgid "The label of the input text field." +msgstr "The label of the input text field." + +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "The placeholder text that is shown before anything is entered, if any." + +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "The minimum number of characters that must be entered. Defaults to 0." + +msgid "The maximum number of characters that can be entered." +msgstr "The maximum number of characters that can be entered." + +msgid "The value entered in the text field." +msgstr "The value entered in the text field." + diff --git a/docs/locales/zh/LC_MESSAGES/api/utils.po b/docs/locales/zh/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..11cc3bc28c --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/utils.po @@ -0,0 +1,481 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Utility Functions" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "A helper to return the first element found in the sequence that meets the predicate. For example: ::" + +msgid "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." +msgstr "would find the first :class:`~discord.Member` whose name is 'Mighty' and return it. If an entry is not found, then ``None`` is returned." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A function that returns a boolean-like result." +msgstr "A function that returns a boolean-like result." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." +msgstr "A helper that returns the first element in the iterable that meets all the traits passed in ``attrs``. This is an alternative for :func:`~discord.utils.find`." + +msgid "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." +msgstr "When multiple attributes are specified, they are checked using logical AND, not logical OR. Meaning they have to meet every attribute passed in and not one of them." + +msgid "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." +msgstr "To have a nested attribute search (i.e. search by ``x.y``) then pass in ``x__y`` as the keyword argument." + +msgid "If nothing is found that matches the attributes passed, then ``None`` is returned." +msgstr "If nothing is found that matches the attributes passed, then ``None`` is returned." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage:" +msgstr "Basic usage:" + +msgid "Multiple attribute matching:" +msgstr "Multiple attribute matching:" + +msgid "Nested attribute matching:" +msgstr "Nested attribute matching:" + +msgid "An iterable to search through." +msgstr "An iterable to search through." + +msgid "Keyword arguments that denote attributes to search with." +msgstr "Keyword arguments that denote attributes to search with." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." +msgstr "Attempts to get an attribute from the object in cache. If it fails, it will attempt to fetch it. If the fetch also fails, an error will be raised." + +msgid "The object to use the get or fetch methods in" +msgstr "The object to use the get or fetch methods in" + +msgid "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." +msgstr "The attribute to get or fetch. Note the object must have both a ``get_`` and ``fetch_`` method for this attribute." + +msgid "The ID of the object" +msgstr "The ID of the object" + +msgid "The default value to return if the object is not found, instead of raising an error." +msgstr "The default value to return if the object is not found, instead of raising an error." + +msgid "Returns" +msgstr "Returns" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Raises" + +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "The object is missing a ``get_`` or ``fetch_`` method" + +msgid "Invalid ID for the object" +msgstr "Invalid ID for the object" + +msgid "An error occurred fetching the object" +msgstr "An error occurred fetching the object" + +msgid "You do not have permission to fetch the object" +msgstr "You do not have permission to fetch the object" + +msgid "Getting a guild from a guild ID: ::" +msgstr "Getting a guild from a guild ID: ::" + +msgid "Getting a channel from the guild. If the channel is not found, return None: ::" +msgstr "Getting a channel from the guild. If the channel is not found, return None: ::" + +msgid "A helper function that returns the OAuth2 URL for inviting the bot into guilds." +msgstr "A helper function that returns the OAuth2 URL for inviting the bot into guilds." + +msgid "The client ID for your bot." +msgstr "The client ID for your bot." + +msgid "The permissions you're requesting. If not given then you won't be requesting any permissions." +msgstr "The permissions you're requesting. If not given then you won't be requesting any permissions." + +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "The guild to pre-select in the authorization screen, if available." + +msgid "An optional valid redirect URI." +msgstr "An optional valid redirect URI." + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``. .. versionadded:: 1.7" + +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "An optional valid list of scopes. Defaults to ``('bot',)``." + +msgid "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" +msgstr "Whether to disallow the user from changing the guild dropdown. .. versionadded:: 2.0" + +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "Whether to disallow the user from changing the guild dropdown." + +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "The OAuth2 URL for inviting the bot into guilds." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "A helper function that removes markdown characters." +msgstr "A helper function that removes markdown characters." + +msgid "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." +msgstr "This function is not markdown aware and may remove meaning from the original text. For example, if the input contains ``10 * 5`` then it will be converted into ``10 5``." + +msgid "The text to remove markdown from." +msgstr "The text to remove markdown from." + +msgid "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." +msgstr "Whether to leave links alone when removing markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. Defaults to ``True``." + +msgid "The text with the markdown special characters removed." +msgstr "The text with the markdown special characters removed." + +msgid "A helper function that escapes Discord's markdown." +msgstr "A helper function that escapes Discord's markdown." + +msgid "The text to escape markdown from." +msgstr "The text to escape markdown from." + +msgid "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." +msgstr "Whether to escape the markdown characters as needed. This means that it does not escape extraneous characters if it's not necessary, e.g. ``**hello**`` is escaped into ``\\*\\*hello**`` instead of ``\\*\\*hello\\*\\*``. Note however that this can open you up to some clever syntax abuse. Defaults to ``False``." + +msgid "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." +msgstr "Whether to leave links alone when escaping markdown. For example, if a URL in the text contains characters such as ``_`` then it will be left alone. This option is not supported with ``as_needed``. Defaults to ``True``." + +msgid "The text with the markdown special characters escaped with a slash." +msgstr "The text with the markdown special characters escaped with a slash." + +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "A helper function that escapes everyone, here, role, and user mentions." + +msgid "This does not include channel mentions." +msgstr "This does not include channel mentions." + +msgid "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "For more granular control over what mentions should be escaped within messages, refer to the :class:`~discord.AllowedMentions` class." + +msgid "The text to escape mentions from." +msgstr "The text to escape mentions from." + +msgid "The text with the mentions removed." +msgstr "The text with the mentions removed." + +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "Returns a list of user IDs matching ``<@user_id>`` in the string." + +msgid "The string to get user mentions from." +msgstr "The string to get user mentions from." + +msgid "A list of user IDs found in the string." +msgstr "A list of user IDs found in the string." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." + +msgid "The string to get channel mentions from." +msgstr "The string to get channel mentions from." + +msgid "A list of channel IDs found in the string." +msgstr "A list of channel IDs found in the string." + +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "Returns a list of role IDs matching ``<@&role_id>`` in the string." + +msgid "The string to get role mentions from." +msgstr "The string to get role mentions from." + +msgid "A list of role IDs found in the string." +msgstr "A list of role IDs found in the string." + +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "Resolves an invite from a :class:`~discord.Invite`, URL or code." + +msgid "The invite." +msgstr "The invite." + +msgid "The invite code." +msgstr "The invite code." + +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "Resolves a template code from a :class:`~discord.Template`, URL or code." + +msgid "The code." +msgstr "The code." + +msgid "The template code." +msgstr "The template code." + +msgid "Sleep until a specified time." +msgstr "Sleep until a specified time." + +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "If the time supplied is in the past this function will yield instantly." + +msgid "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." +msgstr "The timestamp in which to sleep until. If the datetime is naive then it is assumed to be local time." + +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "If provided is returned to the caller when the coroutine completes." + +msgid "A helper function to return an aware UTC datetime representing the current time." +msgstr "A helper function to return an aware UTC datetime representing the current time." + +msgid "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." +msgstr "This should be preferred to :meth:`datetime.datetime.utcnow` since it is an aware datetime, compared to the naive datetime in the standard library." + +msgid "The current aware datetime in UTC." +msgstr "The current aware datetime in UTC." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "Converts a Discord snowflake ID to a UTC-aware datetime object." + +msgid "The snowflake ID." +msgstr "The snowflake ID." + +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "An aware datetime in UTC representing the creation time of the snowflake." + +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "A helper function to convert an ISO 8601 timestamp to a datetime object." + +msgid "The timestamp to convert." +msgstr "The timestamp to convert." + +msgid "The converted datetime object." +msgstr "The converted datetime object." + +msgid "Optional[:class:`datetime.datetime`]" +msgstr "Optional[:class:`datetime.datetime`]" + +msgid "A helper function to format a :class:`datetime.datetime` for presentation within Discord." +msgstr "A helper function to format a :class:`datetime.datetime` for presentation within Discord." + +msgid "This allows for a locale-independent way of presenting data using Discord specific Markdown." +msgstr "This allows for a locale-independent way of presenting data using Discord specific Markdown." + +msgid "Style" +msgstr "Style" + +msgid "Example Output" +msgstr "Example Output" + +msgid "Description" +msgstr "Description" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Short Time" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Long Time" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17/05/2016" + +msgid "Short Date" +msgstr "Short Date" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 May 2016" + +msgid "Long Date" +msgstr "Long Date" + +msgid "f (default)" +msgstr "f (default)" + +msgid "17 May 2016 22:57" +msgstr "17 May 2016 22:57" + +msgid "Short Date Time" +msgstr "Short Date Time" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Tuesday, 17 May 2016 22:57" + +msgid "Long Date Time" +msgstr "Long Date Time" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 years ago" + +msgid "Relative Time" +msgstr "Relative Time" + +msgid "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." +msgstr "Note that the exact output depends on the user's locale setting in the client. The example output presented is using the ``en-GB`` locale." + +msgid "The datetime to format." +msgstr "The datetime to format." + +msgid "The style to format the datetime with." +msgstr "The style to format the datetime with." + +msgid "The formatted string." +msgstr "The formatted string." + +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "Returns a numeric snowflake pretending to be created at the given date." + +msgid "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." +msgstr "When using as the lower end of a range, use ``time_snowflake(high=False) - 1`` to be inclusive, ``high=True`` to be exclusive." + +msgid "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" +msgstr "When using as the higher end of a range, use ``time_snowflake(high=True) + 1`` to be inclusive, ``high=False`` to be exclusive" + +msgid "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." +msgstr "A datetime object to convert to a snowflake. If naive, the timezone is assumed to be local time." + +msgid "Whether to set the lower 22 bit to high or low." +msgstr "Whether to set the lower 22 bit to high or low." + +msgid "The snowflake representing the time given." +msgstr "The snowflake representing the time given." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." +msgstr "Returns a numeric snowflake pretending to be created at the given date but more accurate and random than :func:`time_snowflake`. If dt is not passed, it makes one from the current time using utcnow." + +msgid "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." +msgstr "A helper function to make a basic autocomplete for slash commands. This is a pretty standard autocomplete and will return any options that start with the value from the user, case-insensitive. If the ``values`` parameter is callable, it will be called with the AutocompleteContext." + +msgid "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." +msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` attribute." + +msgid "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." +msgstr "Possible values for the option. Accepts an iterable of :class:`str`, a callable (sync or async) that takes a single argument of :class:`.AutocompleteContext`, or a coroutine. Must resolve to an iterable of :class:`str`." + +msgid "A wrapped callback for the autocomplete." +msgstr "A wrapped callback for the autocomplete." + +msgid "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +msgid "Example" +msgstr "Example" + +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "A helper function that collects an iterator into chunks of a given size." + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "The last chunk collected may not be as large as ``max_size``." + +msgid "The iterator to chunk, can be sync or async." +msgstr "The iterator to chunk, can be sync or async." + +msgid "The maximum chunk size." +msgstr "The maximum chunk size." + +msgid "A new iterator which yields chunks of a given size." +msgstr "A new iterator which yields chunks of a given size." + +msgid "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" +msgstr "Union[:class:`collections.abc.Iterator`, :class:`collections.abc.AsyncIterator`]" + +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "A helper function to filter out and replace certain keyword parameters" + +msgid "The initial parameters to filter." +msgstr "The initial parameters to filter." + +msgid "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." +msgstr "Key to value pairs where the key's contents would be moved to the value, or if the value is None, remove key's contents (see code example)." + +msgid "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." +msgstr "Warn about a deprecated function, with the ability to specify details about the deprecation. Emits a DeprecationWarning." + +msgid "The name of the deprecated function." +msgstr "The name of the deprecated function." + +msgid "A recommended alternative to the function." +msgstr "A recommended alternative to the function." + +msgid "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function was deprecated. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." +msgstr "The version in which the function is planned to be removed. This should be in the format ``major.minor(.patch)``, where the patch version is optional." + +msgid "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." +msgstr "A reference that explains the deprecation, typically a URL to a page such as a changelog entry or a GitHub issue/PR." + +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." +msgstr "A decorator implementation of :func:`warn_deprecated`. This will automatically call :func:`warn_deprecated` when the decorated function is called." + +msgid "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." +msgstr "Whether to use the qualified name of the function in the deprecation warning. If ``False``, the short name of the function will be used instead. For example, __qualname__ will display as ``Client.login`` while __name__ will display as ``login``. Defaults to ``True``." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]`" + diff --git a/docs/locales/zh/LC_MESSAGES/api/version_info.po b/docs/locales/zh/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..3e7ff6039a --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Version Related Info" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "A named tuple that is similar to :obj:`py:sys.version_info`." + +msgid "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." +msgstr "Just like :obj:`py:sys.version_info` the valid values for ``releaselevel`` are 'alpha', 'beta', 'candidate' and 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." + diff --git a/docs/locales/zh/LC_MESSAGES/api/voice.po b/docs/locales/zh/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..6458abab9e --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/voice.po @@ -0,0 +1,505 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Voice Related" + +msgid "Objects" +msgstr "Objects" + +msgid "Represents a Discord voice connection." +msgstr "Represents a Discord voice connection." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "The voice connection session ID." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "The voice connection token." + +msgid "The endpoint we are connecting to." +msgstr "The endpoint we are connecting to." + +msgid "The voice channel connected to." +msgstr "The voice channel connected to." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "The event loop that the voice client is running on." + +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr ":class:`asyncio.AbstractEventLoop`" + +msgid "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 to transmit audio." +msgstr "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 to transmit audio." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The guild we're connected to, if applicable." +msgstr "The guild we're connected to, if applicable." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "The user connected to voice (i.e. ourselves)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." +msgstr "This could be referred to as the Discord Voice WebSocket latency and is an analogue of user's voice latencies as seen in the Discord client." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Average of most recent 20 HEARTBEAT latencies in seconds." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Disconnects this voice client from voice." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Moves you to a different voice channel." +msgstr "Moves you to a different voice channel." + +msgid "The channel to move to. Must be a voice channel." +msgstr "The channel to move to. Must be a voice channel." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Indicates if the voice client is connected to voice." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Plays an :class:`AudioSource`." +msgstr "Plays an :class:`AudioSource`." + +msgid "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." +msgstr "The finalizer, ``after`` is called after the source has been exhausted or an error occurred." + +msgid "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." +msgstr "If an error happens while the audio player is running, the exception is caught and the audio player is then stopped. If no after callback is passed, any caught exception will be displayed as if it were raised." + +msgid "The audio source we're reading from." +msgstr "The audio source we're reading from." + +msgid "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." +msgstr "The finalizer that is called after the stream is exhausted. This function must have a single parameter, ``error``, that denotes an optional exception that was raised during playing." + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised. If False, None is returned and the function does not block. .. versionadded:: v2.5" + +msgid "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." +msgstr "If True, an awaitable will be returned, which can be used to wait for audio to stop playing. This awaitable will return an exception if raised, or None when no exception is raised." + +msgid "If False, None is returned and the function does not block." +msgstr "If False, None is returned and the function does not block." + +msgid "Raises" +msgstr "Raises" + +msgid "Already playing audio or not connected." +msgstr "Already playing audio or not connected." + +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "Source is not a :class:`AudioSource` or after is not a callable." + +msgid "Source is not opus encoded and opus is not loaded." +msgstr "Source is not opus encoded and opus is not loaded." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| \\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" + +msgid "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." +msgstr "Takes an audio packet received from Discord and decodes it into pcm audio data. If there are no users talking in the channel, `None` will be returned." + +msgid "You must be connected to receive audio." +msgstr "You must be connected to receive audio." + +msgid "Bytes received by Discord via the UDP connection used for sending and receiving voice data." +msgstr "Bytes received by Discord via the UDP connection used for sending and receiving voice data." + +msgid "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." +msgstr "The bot will begin recording audio from the current voice channel it is in. This function uses a thread so the current code line will not be stopped. Must be in a voice channel to use. Must not be already recording." + +msgid "A Sink which will \"store\" all the audio data." +msgstr "A Sink which will \"store\" all the audio data." + +msgid "A function which is called after the bot has stopped recording." +msgstr "A function which is called after the bot has stopped recording." + +msgid "Args which will be passed to the callback function." +msgstr "Args which will be passed to the callback function." + +msgid "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." +msgstr "If True, the recordings of subsequent users will start with silence. This is useful for recording audio just as it was heard." + +msgid "Not connected to a voice channel." +msgstr "Not connected to a voice channel." + +msgid "Already recording." +msgstr "Already recording." + +msgid "Must provide a Sink object." +msgstr "Must provide a Sink object." + +msgid "Stops the recording. Must be already recording." +msgstr "Stops the recording. Must be already recording." + +msgid "Not currently recording." +msgstr "Not currently recording." + +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "Pauses or unpauses the recording. Must be already recording." + +msgid "Indicates if we're currently playing audio." +msgstr "Indicates if we're currently playing audio." + +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "Indicates if we're playing audio, but if we're paused." + +msgid "Stops playing audio." +msgstr "Stops playing audio." + +msgid "Pauses the audio playing." +msgstr "Pauses the audio playing." + +msgid "Resumes the audio playing." +msgstr "Resumes the audio playing." + +msgid "The audio source being played, if playing." +msgstr "The audio source being played, if playing." + +msgid "This property can also be used to change the audio source currently being played." +msgstr "This property can also be used to change the audio source currently being played." + +msgid "Sends an audio packet composed of the data." +msgstr "Sends an audio packet composed of the data." + +msgid "You must be connected to play audio." +msgstr "You must be connected to play audio." + +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "The :term:`py:bytes-like object` denoting PCM or Opus voice data." + +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "Indicates if ``data`` should be encoded into Opus." + +msgid "You are not connected." +msgstr "You are not connected." + +msgid "Encoding the data failed." +msgstr "Encoding the data failed." + +msgid "A class that represents the Discord voice protocol." +msgstr "A class that represents the Discord voice protocol." + +msgid "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." +msgstr "This is an abstract class. The library provides a concrete implementation under :class:`VoiceClient`." + +msgid "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." +msgstr "This class allows you to implement a protocol to allow for an external method of sending voice, such as Lavalink_ or a native library implementation." + +msgid "These classes are passed to :meth:`abc.Connectable.connect `." +msgstr "These classes are passed to :meth:`abc.Connectable.connect `." + +msgid "The client (or its subclasses) that started the connection request." +msgstr "The client (or its subclasses) that started the connection request." + +msgid "The voice channel that is being connected to." +msgstr "The voice channel that is being connected to." + +msgid "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "An abstract method that is called when the client's voice state has changed. This corresponds to ``VOICE_STATE_UPDATE``." + +msgid "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" +msgstr "The raw `voice state payload`__. .. _voice_state_update_payload: https://discord.com/developers/docs/resources/voice#voice-state-object __ voice_state_update_payload_" + +msgid "The raw `voice state payload`__." +msgstr "The raw `voice state payload`__." + +msgid "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "An abstract method that is called when initially connecting to voice. This corresponds to ``VOICE_SERVER_UPDATE``." + +msgid "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" +msgstr "The raw `voice server update payload`__. .. _voice_server_update_payload: https://discord.com/developers/docs/topics/gateway#voice-server-update-voice-server-update-event-fields __ voice_server_update_payload_" + +msgid "The raw `voice server update payload`__." +msgstr "The raw `voice server update payload`__." + +msgid "An abstract method called when the client initiates the connection request." +msgstr "An abstract method called when the client initiates the connection request." + +msgid "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." +msgstr "When a connection is requested initially, the library calls the constructor under ``__init__`` and then calls :meth:`connect`. If :meth:`connect` fails at some point then :meth:`disconnect` is called." + +msgid "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. The order that these two are called is unspecified." +msgstr "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. The order that these two are called is unspecified." + +msgid "The timeout for the connection." +msgstr "The timeout for the connection." + +msgid "Whether reconnection is expected." +msgstr "Whether reconnection is expected." + +msgid "An abstract method called when the client terminates the connection." +msgstr "An abstract method called when the client terminates the connection." + +msgid "See :meth:`cleanup`." +msgstr "See :meth:`cleanup`." + +msgid "Whether the disconnection was forced." +msgstr "Whether the disconnection was forced." + +msgid "This method *must* be called to ensure proper clean-up during a disconnect." +msgstr "This method *must* be called to ensure proper clean-up during a disconnect." + +msgid "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." +msgstr "It is advisable to call this from within :meth:`disconnect` when you are completely done with the voice protocol instance." + +msgid "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." +msgstr "This method removes it from the internal state cache that keeps track of currently alive voice clients. Failure to clean-up will cause subsequent connections to report that it's still connected." + +msgid "Represents an audio stream." +msgstr "Represents an audio stream." + +msgid "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." +msgstr "The audio stream can be Opus encoded or not, however if the audio stream is not Opus encoded then the audio format must be 16-bit 48KHz stereo PCM." + +msgid "The audio source reads are done in a separate thread." +msgstr "The audio source reads are done in a separate thread." + +msgid "Reads 20ms worth of audio." +msgstr "Reads 20ms worth of audio." + +msgid "Subclasses must implement this." +msgstr "Subclasses must implement this." + +msgid "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." +msgstr "If the audio is complete, then returning an empty :term:`py:bytes-like object` to signal this is the way to do so." + +msgid "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." +msgstr "If :meth:`~AudioSource.is_opus` method returns ``True``, then it must return 20ms worth of Opus encoded audio. Otherwise, it must be 20ms worth of 16-bit 48KHz stereo PCM, which is about 3,840 bytes per frame (20ms worth of audio)." + +msgid "Returns" +msgstr "Returns" + +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "A bytes like object that represents the PCM or Opus data." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "Checks if the audio source is already encoded in Opus." +msgstr "Checks if the audio source is already encoded in Opus." + +msgid "Called when clean-up is needed to be done." +msgstr "Called when clean-up is needed to be done." + +msgid "Useful for clearing buffer data or processes after it is done playing audio." +msgstr "Useful for clearing buffer data or processes after it is done playing audio." + +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "Represents raw 16-bit 48KHz stereo PCM audio source." + +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "A file-like object that reads byte data representing raw PCM." + +msgid ":term:`py:file object`" +msgstr ":term:`py:file object`" + +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "Represents an FFmpeg (or AVConv) based AudioSource." + +msgid "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." +msgstr "User created AudioSources using FFmpeg differently from how :class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass this." + +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "An audio source from FFmpeg (or AVConv)." + +msgid "This launches a sub-process to a specific input file given." +msgstr "This launches a sub-process to a specific input file given." + +msgid "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." +msgstr "You must have the ffmpeg or avconv executable in your path environment variable in order for this to work." + +msgid "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to PCM bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "The executable name (and path) to use. Defaults to ``ffmpeg``." + +msgid "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." +msgstr "If ``True``, denotes that ``source`` parameter will be passed to the stdin of ffmpeg. Defaults to ``False``." + +msgid "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." +msgstr "A file-like object to pass to the Popen constructor. Could also be an instance of ``subprocess.PIPE``." + +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." + +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." + +msgid "The subprocess failed to be created." +msgstr "The subprocess failed to be created." + +msgid "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." +msgstr "This launches a sub-process to a specific input file given. However, rather than producing PCM packets like :class:`FFmpegPCMAudio` does that need to be encoded to Opus, this class produces Opus packets, skipping the encoding step done by the library." + +msgid "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." +msgstr "Alternatively, instead of instantiating this class directly, you can use :meth:`FFmpegOpusAudio.from_probe` to probe for bitrate and codec information. This can be used to opportunistically skip pointless re-encoding of existing Opus audio data for a boost in performance at the cost of a short initial delay to gather the information. The same can be achieved by passing ``copy`` to the ``codec`` parameter, but only if you know that the input source is Opus encoded beforehand." + +msgid "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." +msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` is ``True`` then this is a file-like object that is passed to the stdin of ffmpeg." + +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "The bitrate in kbps to encode the output to. Defaults to ``128``." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``. .. warning:: Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." +msgstr "The codec to use to encode the audio data. Normally this would be just ``libopus``, but is used by :meth:`FFmpegOpusAudio.from_probe` to opportunistically skip pointlessly re-encoding Opus audio data by passing ``copy`` as the codec value. Any values other than ``copy``, ``opus``, or ``libopus`` will be considered ``libopus``. Defaults to ``libopus``." + +msgid "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." +msgstr "Do not provide this parameter unless you are certain that the audio input is already Opus encoded. For typical use :meth:`FFmpegOpusAudio.from_probe` should be used to determine the proper value for this parameter." + +msgid "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." +msgstr "A factory method that creates a :class:`FFmpegOpusAudio` after probing the input source for audio codec and bitrate information." + +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "Identical to the ``source`` parameter for the constructor." + +msgid "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." +msgstr "The probing method used to determine bitrate and codec information. As a string, valid values are ``native`` to use ffprobe (or avprobe) and ``fallback`` to use ffmpeg (or avconv). As a callable, it must take two string arguments, ``source`` and ``executable``. Both parameters are the same values passed to this factory function. ``executable`` will default to ``ffmpeg`` if not provided as a keyword argument." + +msgid "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." +msgstr "The remaining parameters to be passed to the :class:`FFmpegOpusAudio` constructor, excluding ``bitrate`` and ``codec``." + +msgid "An instance of this class." +msgstr "An instance of this class." + +msgid ":class:`FFmpegOpusAudio`" +msgstr ":class:`FFmpegOpusAudio`" + +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "Invalid probe method, must be ``'native'`` or ``'fallback'``." + +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." + +msgid "Examples" +msgstr "Examples" + +msgid "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" +msgstr "Use this function to create an :class:`FFmpegOpusAudio` instance instead of the constructor: ::" + +msgid "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" +msgstr "If you are on Windows and don't have ffprobe installed, use the ``fallback`` method to probe using ffmpeg instead: ::" + +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "Using a custom method of determining codec and bitrate: ::" + +msgid "Probes the input source for bitrate and codec information." +msgstr "Probes the input source for bitrate and codec information." + +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." + +msgid "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." +msgstr "Identical to the ``method`` parameter for :meth:`FFmpegOpusAudio.from_probe`." + +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." + +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "A 2-tuple with the codec and bitrate of the input source." + +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" + +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "Transforms a previous :class:`AudioSource` to have volume controls." + +msgid "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." +msgstr "This does not work on audio sources that have :meth:`AudioSource.is_opus` set to ``True``." + +msgid "The original AudioSource to transform." +msgstr "The original AudioSource to transform." + +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "The initial volume to set it to. See :attr:`volume` for more info." + +msgid "Not an audio source." +msgstr "Not an audio source." + +msgid "The audio source is opus encoded." +msgstr "The audio source is opus encoded." + +msgid "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." +msgstr "Retrieves or sets the volume as a floating point percentage (e.g. ``1.0`` for 100%)." + +msgid "Opus Library" +msgstr "Opus Library" + +msgid "Loads the libopus shared library for use with voice." +msgstr "Loads the libopus shared library for use with voice." + +msgid "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." +msgstr "If this function is not called then the library uses the function :func:`ctypes.util.find_library` and then loads that one if available." + +msgid "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." +msgstr "Not loading a library and attempting to use PCM based AudioSources will lead to voice not working." + +msgid "This function propagates the exceptions thrown." +msgstr "This function propagates the exceptions thrown." + +msgid "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." +msgstr "The bitness of the library must match the bitness of your python interpreter. If the library is 64-bit then your python interpreter must be 64-bit as well. Usually if there's a mismatch in bitness then the load will throw an exception." + +msgid "On Windows, this function should not need to be called as the binaries are automatically loaded." +msgstr "On Windows, this function should not need to be called as the binaries are automatically loaded." + +msgid "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." +msgstr "On Windows, the .dll extension is not necessary. However, on Linux the full extension is required to load the library, e.g. ``libopus.so.1``. On Linux however, :func:`ctypes.util.find_library` will usually find the library automatically without you having to call this." + +msgid "The filename of the shared library." +msgstr "The filename of the shared library." + +msgid "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "Function to check if opus lib is successfully loaded either via the :func:`ctypes.util.find_library` call of :func:`load_opus`." + +msgid "This must return ``True`` for voice to work." +msgstr "This must return ``True`` for voice to work." + +msgid "Indicates if the opus library has been loaded." +msgstr "Indicates if the opus library has been loaded." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + diff --git a/docs/locales/zh/LC_MESSAGES/api/webhooks.po b/docs/locales/zh/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..37d7e63745 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Webhook Support" + +msgid "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." +msgstr "Pycord offers support for creating, editing, and executing webhooks through the :class:`Webhook` class." + +msgid "Represents an asynchronous Discord webhook." +msgstr "Represents an asynchronous Discord webhook." + +msgid "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." +msgstr "Webhooks are a form to send messages to channels in Discord without a bot user or authentication." + +msgid "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." +msgstr "There are two main ways to use Webhooks. The first is through the ones received by the library such as :meth:`.Guild.webhooks` and :meth:`.TextChannel.webhooks`. The ones received by the library will automatically be bound using the library's internal HTTP session." + +msgid "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." +msgstr "The second form involves creating a webhook object manually using the :meth:`~.Webhook.from_url` or :meth:`~.Webhook.partial` classmethods." + +msgid "For example, creating a webhook from a URL and using :doc:`aiohttp `:" +msgstr "For example, creating a webhook from a URL and using :doc:`aiohttp `:" + +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "For a synchronous counterpart, see :class:`SyncWebhook`." + +msgid "Checks if two webhooks are equal." +msgstr "Checks if two webhooks are equal." + +msgid "Checks if two webhooks are not equal." +msgstr "Checks if two webhooks are not equal." + +msgid "Returns the webhook's hash." +msgstr "Returns the webhook's hash." + +msgid "Webhooks are now comparable and hashable." +msgstr "Webhooks are now comparable and hashable." + +msgid "The webhook's ID" +msgstr "The webhook's ID" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The type of the webhook." +msgstr "The type of the webhook." + +msgid ":class:`WebhookType`" +msgstr ":class:`WebhookType`" + +msgid "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." +msgstr "The authentication token of the webhook. If this is ``None`` then the webhook cannot be used to make requests." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The guild ID this webhook is for." +msgstr "The guild ID this webhook is for." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The channel ID this webhook is for." +msgstr "The channel ID this webhook is for." + +msgid "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." +msgstr "The user this webhook was created by. If the webhook was received without authentication then this will be ``None``." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The default name of the webhook." +msgstr "The default name of the webhook." + +msgid "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The guild of the channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "Optional[:class:`PartialWebhookGuild`]" + +msgid "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "The channel that this webhook is following. Only given if :attr:`type` is :attr:`WebhookType.channel_follower`." + +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "Optional[:class:`PartialWebhookChannel`]" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Returns the webhook's url." +msgstr "Returns the webhook's url." + +msgid "Creates a partial :class:`Webhook`." +msgstr "Creates a partial :class:`Webhook`." + +msgid "The ID of the webhook." +msgstr "The ID of the webhook." + +msgid "The authentication token of the webhook." +msgstr "The authentication token of the webhook." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. .. versionadded:: 2.0" + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it." + +msgid "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" +msgstr "The bot authentication token for authenticated requests involving the webhook. .. versionadded:: 2.0" + +msgid "The bot authentication token for authenticated requests involving the webhook." +msgstr "The bot authentication token for authenticated requests involving the webhook." + +msgid "Returns" +msgstr "Returns" + +msgid "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." +msgstr "A partial :class:`Webhook`. A partial webhook is just a webhook object with an ID and a token." + +msgid "Return type" +msgstr "Return type" + +msgid ":class:`Webhook`" +msgstr ":class:`Webhook`" + +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "Creates a partial :class:`Webhook` from a webhook URL." + +msgid "The URL of the webhook." +msgstr "The URL of the webhook." + +msgid "Raises" +msgstr "Raises" + +msgid "The URL is invalid." +msgstr "The URL is invalid." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Fetches the current webhook." +msgstr "Fetches the current webhook." + +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "This could be used to get a full webhook from a partial webhook." + +msgid "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." +msgstr "When fetching with an unauthenticated webhook, i.e. :meth:`is_authenticated` returns ``False``, then the returned webhook does not contain any user information." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``." +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``." + +msgid "The fetched webhook." +msgstr "The fetched webhook." + +msgid "Could not fetch the webhook" +msgstr "Could not fetch the webhook" + +msgid "Could not find the webhook by this ID" +msgstr "Could not find the webhook by this ID" + +msgid "This webhook does not have a token associated with it." +msgstr "This webhook does not have a token associated with it." + +msgid "Deletes this Webhook." +msgstr "Deletes this Webhook." + +msgid "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for deleting this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "The reason for deleting this webhook. Shows up on the audit log." + +msgid "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" +msgstr "Whether to use the bot token over the webhook token if available. Defaults to ``True``. .. versionadded:: 2.0" + +msgid "Deleting the webhook failed." +msgstr "Deleting the webhook failed." + +msgid "This webhook does not exist." +msgstr "This webhook does not exist." + +msgid "You do not have permissions to delete this webhook." +msgstr "You do not have permissions to delete this webhook." + +msgid "Edits this Webhook." +msgstr "Edits this Webhook." + +msgid "The webhook's new default name." +msgstr "The webhook's new default name." + +msgid "A :term:`py:bytes-like object` representing the webhook's new default avatar." +msgstr "A :term:`py:bytes-like object` representing the webhook's new default avatar." + +msgid "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" +msgstr "The webhook's new channel. This requires an authenticated webhook. .. versionadded:: 2.0" + +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "The webhook's new channel. This requires an authenticated webhook." + +msgid "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" +msgstr "The reason for editing this webhook. Shows up on the audit log. .. versionadded:: 1.4" + +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "The reason for editing this webhook. Shows up on the audit log." + +msgid "Editing the webhook failed." +msgstr "Editing the webhook failed." + +msgid "This webhook does not have a token associated with it, or it tried editing a channel without authentication." +msgstr "This webhook does not have a token associated with it, or it tried editing a channel without authentication." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "Returns an :class:`Asset` for the avatar the webhook has." + +msgid "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." +msgstr "If the webhook does not have a traditional avatar, an asset for the default avatar is returned instead." + +msgid "The text channel this webhook belongs to." +msgstr "The text channel this webhook belongs to." + +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "If this is a partial webhook, then this will always return ``None``." + +msgid "Returns the webhook's creation time in UTC." +msgstr "Returns the webhook's creation time in UTC." + +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The ID of the thread that contains the message." +msgstr "The ID of the thread that contains the message." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.WebhookMessage`" +msgstr ":class:`~discord.WebhookMessage`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "There was no token associated with this webhook." +msgstr "There was no token associated with this webhook." + +msgid "The guild this webhook belongs to." +msgstr "The guild this webhook belongs to." + +msgid "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is authenticated with a bot token. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the webhook is a \"partial\" webhook. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Edits a message owned by this webhook." +msgstr "Edits a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.edit` in case you only have an ID." + +msgid "The edit is no longer in-place, instead the newly edited message is returned." +msgstr "The edit is no longer in-place, instead the newly edited message is returned." + +msgid "The message ID to edit." +msgstr "The message ID to edit." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" +msgstr "The file to upload. This cannot be mixed with ``files`` parameter. .. versionadded:: 2.0" + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter. .. versionadded:: 2.0" + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. The webhook must have state attached, similar to :meth:`send`." + +msgid "The thread that contains the message." +msgstr "The thread that contains the message." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited webhook message." +msgstr "The newly edited webhook message." + +msgid ":class:`WebhookMessage`" +msgstr ":class:`WebhookMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "The length of ``embeds`` was invalid" +msgstr "The length of ``embeds`` was invalid" + +msgid "There was no token associated with this webhook or the webhook had no state." +msgstr "There was no token associated with this webhook or the webhook had no state." + +msgid "Deletes a message owned by this webhook." +msgstr "Deletes a message owned by this webhook." + +msgid "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." +msgstr "This is a lower level interface to :meth:`WebhookMessage.delete` in case you only have an ID." + +msgid "The message ID to delete." +msgstr "The message ID to delete." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "Deleted a message that is not yours." +msgstr "Deleted a message that is not yours." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Represents a message sent from your webhook." +msgstr "Represents a message sent from your webhook." + +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "This allows you to edit or delete a message sent by your webhook." + +msgid "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." +msgstr "This inherits from :class:`discord.Message` with changes to :meth:`edit` and :meth:`delete` to work." + +msgid "Edits the message." +msgstr "Edits the message." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed. .. versionadded:: 2.0" + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid "Deletes the message." +msgstr "Deletes the message." + +msgid "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." +msgstr "If provided, the number of seconds to wait before deleting the message. The waiting is done in the background and deletion failures are ignored." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "The message was deleted already." +msgstr "The message was deleted already." + +msgid "Represents a synchronous Discord webhook." +msgstr "Represents a synchronous Discord webhook." + +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "For an asynchronous counterpart, see :class:`Webhook`." + +msgid "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." +msgstr "The session to use to send requests with. Note that the library does not manage the session and will not close it. If not given, the ``requests`` auto session creation functions are used instead." + +msgid ":class:`SyncWebhook`" +msgstr ":class:`SyncWebhook`" + +msgid "The newly edited webhook." +msgstr "The newly edited webhook." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``." + +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "The thread to send this message to. .. versionadded:: 2.0" + +msgid "The thread to send this message to." +msgstr "The thread to send this message to." + +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "Optional[:class:`SyncWebhookMessage`]" + +msgid "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." +msgstr "There was no token associated with this webhook, or you specified both a thread to send to and a thread to create (the ``thread`` and ``thread_name`` parameters)." + +msgid "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." +msgstr "Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this webhook." + +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr ":class:`~discord.SyncWebhookMessage`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" + +msgid ":class:`SyncWebhookMessage`" +msgstr ":class:`SyncWebhookMessage`" + +msgid "If provided, the number of seconds to wait before deleting the message. This blocks the thread." +msgstr "If provided, the number of seconds to wait before deleting the message. This blocks the thread." + diff --git a/docs/locales/zh/LC_MESSAGES/changelog.po b/docs/locales/zh/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..d18690d984 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/changelog.po @@ -0,0 +1,1102 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "All notable changes to this project will be documented in this file." +msgstr "All notable changes to this project will be documented in this file." + +msgid "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." +msgstr "The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) when possible (see our [Version Guarantees] for more info)." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "These changes are available on the `master` branch, but have not yet been released." + +msgid "Changed" +msgstr "Changed" + +msgid "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" +msgstr "Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +msgid "Added" +msgstr "Added" + +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" + +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Added `bridge_option` decorator. Required for `bridge.Bot` in 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" + +msgid "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Added bulk banning up to 200 users through `Guild.bulk_ban`. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" + +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" + +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" + +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" + +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" + +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" + +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" + +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" +msgstr "Fixed the type-hinting of `Member.move_to` and `Member.edit` to reflect actual behavior. ([#2386](https://github.com/Pycord-Development/pycord/pull/2386))" + +msgid "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" +msgstr "Fixed a deprecation warning from being displayed when running `python -m discord -v` by replacing the deprecated module. ([#2392](https://github.com/Pycord-Development/pycord/pull/2392))" + +msgid "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "Fixed `Paginator.edit` to no longer set user to the bot. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" + +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" + +msgid "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" +msgstr "Fixed interactions being ignored due to `PartialMessage.id` being of type `str`. ([#2406](https://github.com/Pycord-Development/pycord/pull/2406))" + +msgid "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" +msgstr "Fixed the type-hinting of `ScheduledEvent.subscribers` to reflect actual behavior. ([#2400](https://github.com/Pycord-Development/pycord/pull/2400))" + +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" + +msgid "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" +msgstr "Fixed invalid data being passed to `Interaction._guild` in certain cases. ([#2411](https://github.com/Pycord-Development/pycord/pull/2411))" + +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" + +msgid "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" +msgstr "Fixed paginator to revert state if a page update callback fails. ([#2448](https://github.com/Pycord-Development/pycord/pull/2448))" + +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" + +msgid "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" +msgstr "Fixed issues with enums as `Option` types with long descriptions or too many values. ([#2463](https://github.com/Pycord-Development/pycord/pull/2463))" + +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" + +msgid "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" +msgstr "Fixed `AttributeError` due to `discord.Option` being initialised with `input_type` set to `None`. ([#2464](https://github.com/Pycord-Development/pycord/pull/2464))" + +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" + +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" + +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" + +msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" + +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" + +msgid "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" +msgstr "`Guild.query_members` now accepts `limit=None` to retrieve all members. ([#2419](https://github.com/Pycord-Development/pycord/pull/2419))" + +msgid "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`ApplicationCommand.guild_only` is now deprecated in favor of `ApplicationCommand.contexts`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "`Message.interaction` is now deprecated in favor of `Message.interaction_metadata`. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" + +msgid "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" +msgstr "Replaced `Client.fetch_entitlements` with `Client.entitlements`, which returns an `EntitlementIterator`. ([#2490](https://github.com/Pycord-Development/pycord/pull/2490))" + +msgid "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" +msgstr "Changed the error message that appears when attempting to add a subcommand group to a subcommand group. ([#2275](https://github.com/Pycord-Development/pycord/pull/2275))" + +msgid "Removed" +msgstr "Removed" + +msgid "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" +msgstr "Removed the `delete_message_days` parameter from ban methods. Please use `delete_message_seconds` instead. ([#2421](https://github.com/Pycord-Development/pycord/pull/2421))" + +msgid "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "Removed the `oldest_first` parameter from `Guild.audit_logs` in favor of the `before` and `after` parameters. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" + +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" + +msgid "[2.5.0] - 2024-03-02" +msgstr "[2.5.0] - 2024-03-02" + +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" + +msgid "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" +msgstr "Added parameters `author`, `footer`, `image` and `thumbnail` to `discord.Embed` initializer. ([#1996](https://github.com/Pycord-Development/pycord/pull/1996))" + +msgid "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" +msgstr "Added events `on_bridge_command`, `on_bridge_command_completion`, and `on_bridge_command_error`. ([#1916](https://github.com/Pycord-Development/pycord/pull/1916))" + +msgid "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" +msgstr "Added the `@client.once()` decorator, which serves as a one-time event listener. ([#1940](https://github.com/Pycord-Development/pycord/pull/1940))" + +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" + +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" + +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" + +msgid "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" +msgstr "Added support for recording silence via new `sync_start` argument in `VoiceClient.start_recording()`. ([#1984](https://github.com/Pycord-Development/pycord/pull/1984))" + +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" +msgstr "Added support for [voice messages](https://github.com/discord/discord-api-docs/pull/6082). ([#2016](https://github.com/Pycord-Development/pycord/pull/2016))" + +msgid "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" +msgstr "Added `data` attribute to all [Raw Event payloads](https://docs.pycord.dev/en/master/api/models.html#events). ([#2023](https://github.com/Pycord-Development/pycord/pull/2023))" + +msgid "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" +msgstr "Added and documented missing `AuditLogAction` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030), [#2171](https://github.com/Pycord-Development/pycord/pull/2171))" + +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" + +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" + +msgid "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Added `view.parent` which is set when the view is sent by `interaction.response.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Added methods `bridge.Bot.walk_bridge_commands` and `BridgeCommandGroup.walk_commands`. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" + +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" + +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" + +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" + +msgid "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" +msgstr "Added support for type-hinting slash command options with `typing.Annotated`. ([#2124](https://github.com/Pycord-Development/pycord/pull/2124))" + +msgid "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" +msgstr "Added `suppress` and `allowed_mentions` parameters to `Webhook` and `InteractionResponse` edit methods. ([#2138](https://github.com/Pycord-Development/pycord/pull/2138))" + +msgid "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" +msgstr "Added `wait_finish` parameter to `VoiceClient.play` for awaiting the end of a play. ([#2194](https://github.com/Pycord-Development/pycord/pull/2194))" + +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" + +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" + +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" + +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "Added `default_reaction_emoji` parameter to `Guild.create_forum_channel` and `ForumChannel.edit` methods. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" + +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" + +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" + +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" + +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" + +msgid "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" +msgstr "Added `AttachmentFlags` and attachment attributes `expires_at`, `issued_at` and `hm`. ([#2342](https://github.com/Pycord-Development/pycord/pull/2342))" + +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" + +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" + +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" + +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" + +msgid "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" +msgstr "Changed default for all `name_localizations` and `description_localizations` attributes from being `None` to being `MISSING`. ([#1866](https://github.com/Pycord-Development/pycord/pull/1866))" + +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" + +msgid "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" +msgstr "Changed file-upload size limit from 8 MB to 25 MB accordingly. ([#2014](https://github.com/Pycord-Development/pycord/pull/2014))" + +msgid "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" +msgstr "Changed the behavior of retrieving bans to accurately reflect the API. ([#1922](https://github.com/Pycord-Development/pycord/pull/1922))" + +msgid "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `Interaction.channel` to be received from the gateway, allowing it to be `DMChannel` or `GroupChannel`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" + +msgid "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" +msgstr "Changed the behavior to store `view.message` when receiving a component interaction, while also changing `view.message` not to be set when sending view through `InteractionResponse.send_message`. ([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" + +msgid "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" +msgstr "Changed the fetching of attributes shared between text-based and Slash Commands in Bridge Commands to be dynamic. ([#1867](https://github.com/Pycord-Development/pycord/pull/1867))" + +msgid "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "`discord.Embed` attributes (such as author, footer, etc.) now return instances of their respective classes when set and `None` otherwise. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" +msgstr "Changed `default_avatar` behavior to depend on the user's username migration status. ([#2087](https://github.com/Pycord-Development/pycord/pull/2087))" + +msgid "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" +msgstr "Changed type hints of `command_prefix` and `help_command` arguments to be accurate. ([#2099](https://github.com/Pycord-Development/pycord/pull/2099))" + +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" + +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" + +msgid "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "Removed `Client.once` in favour of `once` argument in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" + +msgid "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" +msgstr "Removed `Embed.Empty` in favour of `None`, and `EmbedProxy` in favour of individual classes. ([#2063](https://github.com/Pycord-Development/pycord/pull/2063))" + +msgid "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" +msgstr "Fixed `AttributeError` caused by [#1957](https://github.com/Pycord-Development/pycord/pull/1957) when using listeners in cogs. ([#1989](https://github.com/Pycord-Development/pycord/pull/1989))" + +msgid "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." +msgstr "Fixed an issue in editing webhook messages in forum posts and private threads. ([#1981](https://github.com/Pycord-Development/pycord/pull/1981))." + +msgid "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" +msgstr "Fixed `View.message` not being set when view is sent using webhooks, including `Interaction.followup.send` or when a message is edited. ([#1997](https://github.com/Pycord-Development/pycord/pull/1997))" + +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" + +msgid "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" +msgstr "Fixed scheduled events breaking when changing the location from external to a channel. ([#1998](https://github.com/Pycord-Development/pycord/pull/1998))" + +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" + +msgid "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" +msgstr "Fixed `TypeError` being raised when passing `name` argument to bridge groups. ([#2000](https://github.com/Pycord-Development/pycord/pull/2000))" + +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" + +msgid "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" +msgstr "Fixed the functionality to override the default `on_application_command_error` behavior using listeners. ([#2044](https://github.com/Pycord-Development/pycord/pull/2044))" + +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" + +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" + +msgid "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" +msgstr "Fixed an issue that occurred when `webhooks_update` event payload channel ID was `None`. ([#2078](https://github.com/Pycord-Development/pycord/pull/2078))" + +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" + +msgid "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" +msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ([#2075](https://github.com/Pycord-Development/pycord/pull/2075))" + +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" + +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it hasn't been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" + +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" + +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" + +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" + +msgid "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" +msgstr "Fixed type hinting of `author` property of `ApplicationContext` to include type-hinting of `User` or `Member`. ([#2148](https://github.com/Pycord-Development/pycord/pull/2148))" + +msgid "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" +msgstr "Fixed missing `delete_after` parameter in overload type-hinting for `Webhook.send()`. ([#2156](https://github.com/Pycord-Development/pycord/pull/2156))" + +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" + +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" + +msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`. ([#2164](https://github.com/Pycord-Development/pycord/pull/2164))" + +msgid "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" +msgstr "Fixed initial message inside of the create thread payload sending legacy beta payload. ([#2191](https://github.com/Pycord-Development/pycord/pull/2191))" + +msgid "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" +msgstr "Fixed a misplaced payload object inside of the thread creation payload. ([#2192](https://github.com/Pycord-Development/pycord/pull/2192))" + +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" + +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" + +msgid "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" +msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. ([#2196](https://github.com/Pycord-Development/pycord/pull/2196))" + +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" + +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` doesn't recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" + +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" + +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" + +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" + +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" + +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" + +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" + +msgid "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" +msgstr "Fixed `self.use_default_buttons` being assumed truthy by `Paginator.update`. ([#2319](https://github.com/Pycord-Development/pycord/pull/2319))" + +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" + +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" + +msgid "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" +msgstr "Fixed application command options causing errors if declared through the option decorator or kwarg. ([#2332](https://github.com/Pycord-Development/pycord/issues/2332))" + +msgid "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" +msgstr "Fixed options declared using the parameter default value syntax always being optional. ([#2333](https://github.com/Pycord-Development/pycord/issues/2333))" + +msgid "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" +msgstr "Fixed `BridgeContext` type hints raising an exception for unsupported option type. ([#2337](https://github.com/Pycord-Development/pycord/pull/2337))" + +msgid "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" +msgstr "Fixed `TypeError` due to `(Sync)WebhookMessage._thread_id` being set to `None`. ([#2343](https://github.com/Pycord-Development/pycord/pull/2343))" + +msgid "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" +msgstr "Fixed `AttributeError` due to `entitlements` not being included in `Interaction.__slots__`. ([#2345](https://github.com/Pycord-Development/pycord/pull/2345))" + +msgid "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" +msgstr "Fixed `Thread.me` being out of date and added the thread owner to `Thread.members` on creation. ([#1296](https://github.com/Pycord-Development/pycord/issues/1296))" + +msgid "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" +msgstr "Fixed keyword argument wildcard of `bridge.has_permissions` having the wrong type hint. ([#2364](https://github.com/Pycord-Development/pycord/pull/2364))" + +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" + +msgid "[2.4.1] - 2023-03-20" +msgstr "[2.4.1] - 2023-03-20" + +msgid "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" +msgstr "Updated the values of the `Color.embed_background()` classmethod to correspond with new theme colors in the app. ([#1931](https://github.com/Pycord-Development/pycord/pull/1931))" + +msgid "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" +msgstr "Fixed the type-hinting of `SlashCommandGroup.walk_commands()` to reflect actual behavior. ([#1838](https://github.com/Pycord-Development/pycord/pull/1838))" + +msgid "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" +msgstr "Fixed the voice IP discovery due to the recent [announced change](https://discord.com/channels/613425648685547541/697138785317814292/1080623873629884486). ([#1955](https://github.com/Pycord-Development/pycord/pull/1955))" + +msgid "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" +msgstr "Fixed `reason` being passed to the wrong method in `guild.create_auto_moderation_rule`. ([#1960](https://github.com/Pycord-Development/pycord/pull/1960))" + +msgid "[2.4.0] - 2023-02-10" +msgstr "[2.4.0] - 2023-02-10" + +msgid "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" +msgstr "Added new AutoMod trigger metadata properties `regex_patterns`, `allow_list`, and `mention_total_limit`; and added the `mention_spam` trigger type. ([#1809](https://github.com/Pycord-Development/pycord/pull/1809))" + +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" + +msgid "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" +msgstr "New `ApplicationRoleConnectionMetadata` class for application role connection metadata, along with the `fetch_role_connection_metadata_records` and `update_role_connection_metadata_records` methods in `Client`. ([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" + +msgid "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" +msgstr "Added new message types, `role_subscription_purchase`, `interaction_premium_upsell`, `stage_start`, `stage_end`, `stage_speaker`, `stage_raise_hand`, `stage_topic`, and `guild_application_premium_subscription`. ([#1852](https://github.com/Pycord-Development/pycord/pull/1852))" + +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" + +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" +msgstr "Added new raw events: `raw_member_remove`, `raw_thread_update`, and `raw_thread_member_remove`. ([#1880](https://github.com/Pycord-Development/pycord/pull/1880))" + +msgid "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" +msgstr "Improved support for setting channel types & added new channel types for `discord.Option`. ([#1883](https://github.com/Pycord-Development/pycord/pull/1883))" + +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" + +msgid "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "Advanced version info is now stored as a dict in `version_info.advanced` instead of attributes on the `version_info` object. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" +msgstr "The `version_info.release_level` attribute has been reverted to its previous name, `releaselevel`. ([#1920](https://github.com/Pycord-Development/pycord/pull/1920))" + +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" +msgstr "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files didn't send properly more than once. ([#1869](https://github.com/Pycord-Development/pycord/pull/1869) & [#1881](https://github.com/Pycord-Development/pycord/pull/1881))" + +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" + +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" + +msgid "[2.3.3] - 2023-02-10" +msgstr "[2.3.3] - 2023-02-10" + +msgid "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "Fixed an unhandled `KeyError` exception when receiving GIF stickers, causing crashes. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" + +msgid "[2.3.2] - 2022-12-03" +msgstr "[2.3.2] - 2022-12-03" + +msgid "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" +msgstr "Fixed another `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1815](https://github.com/Pycord-Development/pycord/pull/1815))" + +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" + +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" + +msgid "[2.3.1] - 2022-11-27" +msgstr "[2.3.1] - 2022-11-27" + +msgid "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" +msgstr "Fixed `AttributeError` relating to the new `bridge_commands` attribute on `ext.bridge.Bot`. ([#1802](https://github.com/Pycord-Development/pycord/pull/1802))" + +msgid "[2.3.0] - 2022-11-23" +msgstr "[2.3.0] - 2022-11-23" + +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" + +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" + +msgid "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" +msgstr "New select types `user`, `role`, `mentionable`, and `channel` - Along with their respective types and shortcut decorators. ([#1702](https://github.com/Pycord-Development/pycord/pull/1702))" + +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" + +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" + +msgid "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new forum features including tags, default slowmode, and default sort order. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" +msgstr "Support for new thread attributes `total_message_sent` and `is_pinned`. ([#1636](https://github.com/Pycord-Development/pycord/pull/1636))" + +msgid "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" +msgstr "Added `bridge_commands` attribute to `ext.bridge.Bot` for access to bridge command objects. ([#1787](https://github.com/Pycord-Development/pycord/pull/1787))" + +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" + +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" + +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" + +msgid "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" +msgstr "Fixed error when using `suppress` kwarg in `send()`. ([#1719](https://github.com/Pycord-Development/pycord/pull/1719) & [#1723](https://github.com/Pycord-Development/pycord/pull/1723))" + +msgid "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` type kwarg now defaults to `ApplicationCommand`, so all command types can be retrieved by default. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" + +msgid "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" +msgstr "Removed the guild feature `PRIVATE_THREADS` due to paywall limitation removal. ([#1789](https://github.com/Pycord-Development/pycord/pull/1789))" + +msgid "[2.2.2] - 2022-10-05" +msgstr "[2.2.2] - 2022-10-05" + +msgid "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" +msgstr "Fixed `parent` attribute of second-level subcommands being set to the base level command instead of the direct parent. ([#1673](https://github.com/Pycord-Development/pycord/pull/1673))" + +msgid "[2.2.1] - 2022-10-05" +msgstr "[2.2.1] - 2022-10-05" + +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" +msgstr "Fixed a `TypeError` in `ban()` methods related to the new `delete_message_seconds` parameter. ([#1666](https://github.com/Pycord-Development/pycord/pull/1666))" + +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" + +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" + +msgid "[2.2.0] - 2022-10-02" +msgstr "[2.2.0] - 2022-10-02" + +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" + +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" + +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" + +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" + +msgid "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" +msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` functions in `discord.utils`. ([#1658](https://github.com/Pycord-Development/pycord/pull/1658))" + +msgid "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "New methods `original_response`, `edit_original_response` & `delete_original_response` for `Interaction` objects. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "The `delete_message_days` parameter in ban methods is now deprecated. Please use `delete_message_seconds` instead. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" + +msgid "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" +msgstr "The `original_message`, `edit_original_message` & `delete_original_message` methods for `Interaction` are now deprecated. Please use the respective `original_response`, `edit_original_response` & `delete_original_response` methods instead. ([#1609](https://github.com/Pycord-Development/pycord/pull/1609))" + +msgid "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" +msgstr "Various fixes to ext.bridge groups. ([#1633](https://github.com/Pycord-Development/pycord/pull/1633) & [#1631](https://github.com/Pycord-Development/pycord/pull/1631))" + +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" + +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" + +msgid "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "Interaction responses are now passed the respective `proxy` and `proxy_auth` params as defined in `Client`. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" + +msgid "[2.1.3] - 2022-09-06" +msgstr "[2.1.3] - 2022-09-06" + +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" + +msgid "[2.1.2] - 2022-09-06" +msgstr "[2.1.2] - 2022-09-06" + +msgid "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" +msgstr "Fix subcommands having MISSING cog attribute. ([#1594](https://github.com/Pycord-Development/pycord/pull/1594) & [#1605](https://github.com/Pycord-Development/pycord/pull/1605))" + +msgid "[2.1.1] - 2022-08-25" +msgstr "[2.1.1] - 2022-08-25" + +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" + +msgid "[2.1.0] - 2022-08-25" +msgstr "[2.1.0] - 2022-08-25" + +msgid "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" +msgstr "Support for add, sub, union, intersect, and inverse operations on classes inheriting from `BaseFlags`. ([#1486](https://github.com/Pycord-Development/pycord/pull/1486))" + +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" +msgstr "New `mention` property for `SlashCommand` objects, allowing a shortcut for the new command markdown syntax. ([#1523](https://github.com/Pycord-Development/pycord/pull/1523))" + +msgid "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" +msgstr "An `app_commands_badge` value on `ApplicationFlags`. ([#1535](https://github.com/Pycord-Development/pycord/pull/1535) and [#1553](https://github.com/Pycord-Development/pycord/pull/1553))" + +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" + +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" + +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" + +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" + +msgid "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "Use `slash_variant` and `ext_variant` attributes instead of `get_application_command()` and `get_ext_command()` methods on `BridgeCommand`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" + +msgid "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" +msgstr "Set `store` kwarg default to `False` in load_extension(s) method. ([#1520](https://github.com/Pycord-Development/pycord/pull/1520))" + +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" + +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" + +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" + +msgid "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" +msgstr "Fix KeyError on AutoModActionExecution when the bot lacks the Message Content Intent. ([#1521](https://github.com/Pycord-Development/pycord/pull/1521))" + +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" + +msgid "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" +msgstr "Fix `Option` with type `str` raising AttributeError when `min_length` or `max_length` kwargs are passed. ([#1527](https://github.com/Pycord-Development/pycord/pull/1527))" + +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" + +msgid "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" +msgstr "Fix `SlashCommandGroup` descriptions to use the correct default string. ([#1539](https://github.com/Pycord-Development/pycord/pull/1539) and [#1586](https://github.com/Pycord-Development/pycord/pull/1586))" + +msgid "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" +msgstr "Fix Enum type options breaking due to `from_datatype()` method & Fix minor typing import. ([#1541](https://github.com/Pycord-Development/pycord/pull/1541))" + +msgid "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" +msgstr "Adjust category and guild `_channels` attributes to work with NoneType positions. ([#1530](https://github.com/Pycord-Development/pycord/pull/1530))" + +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" + +msgid "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" +msgstr "Improve sticker creation by checking for minimum and maximum length on `name` and `description`. ([#1546](https://github.com/Pycord-Development/pycord/pull/1546))" + +msgid "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" +msgstr "Fix threads created with a base message being set to the wrong `message_reference`. ([#1551](https://github.com/Pycord-Development/pycord/pull/1551))" + +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" + +msgid "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" +msgstr "Fix bug in `Modal.on_timeout()` by using `custom_id` to create timeout task. ([#1562](https://github.com/Pycord-Development/pycord/pull/1562))" + +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" + +msgid "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" +msgstr "Fix `before` argument in `on_scheduled_event_update` event always set to `None` by converting ID to `int`. ([#1580](https://github.com/Pycord-Development/pycord/pull/1580))" + +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" + +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" + +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" + +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" + +msgid "Security" +msgstr "Security" + +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" + +msgid "[2.0.1] - 2022-08-16" +msgstr "[2.0.1] - 2022-08-16" + +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" + +msgid "[2.0.0] - 2022-07-08" +msgstr "[2.0.0] - 2022-07-08" + +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" + +msgid "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Support for audit log event type 121 `APPLICATION_COMMAND_PERMISSION_UPDATE`. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" + +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" + +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" + +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" + +msgid "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" +msgstr "Support for `error`, `before_invoke`, and `after_invoke` handlers on `BridgeCommand`. ([#1411](https://github.com/Pycord-Development/pycord/pull/1411))" + +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" + +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" + +msgid "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" +msgstr "Support for loading folders in `load_extension`, and a new helper function `load_extensions`. ([#1423](https://github.com/Pycord-Development/pycord/pull/1423))" + +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" + +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" + +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" + +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" + +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" + +msgid "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" +msgstr "`Guild.region` attribute (Deprecated on API, VoiceChannel.rtc_region should be used instead). ([#1429](https://github.com/Pycord-Development/pycord/pull/1429))" + +msgid "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" +msgstr "Change `guild_only` to `dm_permission` in application command `to_dict` method. ([#1368](https://github.com/Pycord-Development/pycord/pull/1368))" + +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" + +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" + +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" + +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" + +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" + +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" + +msgid "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" +msgstr "Fix busy-loop in `DecodeManager` when the decode queue is empty, causing 100% CPU consumption. ([#1395](https://github.com/Pycord-Development/pycord/pull/1395))" + +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" + +msgid "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" +msgstr "Converted PartialMember `deaf` and `mute` from str annotation (incorrect) to bool annotation. ([#1424](https://github.com/Pycord-Development/pycord/pull/1424))" + +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" + +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" + +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" + +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" + +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" + +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" + +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" + +msgid "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord doesn't send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" + +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "[2.0.0-rc.1] - 2022-05-17" + +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" + +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" + +msgid "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" +msgstr "A new `jump_url` property to channel and thread objects. ([#1254](https://github.com/Pycord-Development/pycord/pull/1254) & [#1259](https://github.com/Pycord-Development/pycord/pull/1259))" + +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" + +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" + +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" + +msgid "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" +msgstr "Component field limits are now enforced at the library level ([#1065](https://github.com/Pycord-Development/pycord/pull/1065) & [#1289](https://github.com/Pycord-Development/pycord/pull/1289))" + +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" + +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" + +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" + +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" + +msgid "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" +msgstr "A debug warning to catch deprecated perms v1 usage until v2 perms are implemented. ([#1301](https://github.com/Pycord-Development/pycord/pull/1301))" + +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" + +msgid "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" +msgstr "A `disable_all_items` and `enable_all_items` methods to `View` object. ([#1199](https://github.com/Pycord-Development/pycord/pull/1199) & [#1319](https://github.com/Pycord-Development/pycord/pull/1319))" + +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" + +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" + +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" + +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" + +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" + +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" + +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" + +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" + +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" + +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" + +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" + +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" + +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" + +msgid "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" +msgstr "Fix `PartialMessage.edit()` setting `view` as `None` when `view` kwarg is not passed. ([#1256](https://github.com/Pycord-Development/pycord/pull/1256))" + +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" + +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" + +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" + +msgid "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" +msgstr "Fix `Paginator.add_menu()` and `Paginator.add_default_buttons()` passing `custom_id` to `PaginatorMenu`. ([#1270](https://github.com/Pycord-Development/pycord/pull/1270))" + +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" + +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" + +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" + +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" + +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" + +msgid "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" +msgstr "Updated `Message.edit` type-hinting overload and removed resulting redundant overloads. ([#1299](https://github.com/Pycord-Development/pycord/pull/1299))" + +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" + +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" + +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" + +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" + +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "[2.0.0-beta.7] - 2022-04-09" + +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" + +msgid "Older Versions" +msgstr "Older Versions" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." + diff --git a/docs/locales/zh/LC_MESSAGES/cogs.po b/docs/locales/zh/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..713392b91f --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single slash command named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "The name of the cog is automatically derived from the class name but can be overridden." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + diff --git a/docs/locales/zh/LC_MESSAGES/discord.po b/docs/locales/zh/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..242f4b20a4 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Creating a Bot Account" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Creating a Bot account is a pretty straightforward process." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_" +msgstr "Navigate to the `application page `_" + +msgid "Click on the \"New Application\" button." +msgstr "Click on the \"New Application\" button." + +msgid "The new application button." +msgstr "The new application button." + +msgid "Give the application a name and click \"Create\"." +msgstr "Give the application a name and click \"Create\"." + +msgid "The new application form filled in." +msgstr "The new application form filled in." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Click \"Yes, do it!\" to continue." + +msgid "The Add Bot button." +msgstr "The Add Bot button." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Make sure that **Public Bot** is ticked if you want others to invite your bot." + +msgid "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." +msgstr "You should also make sure that **Require OAuth2 Code Grant** is unchecked unless you are developing a service that needs it. If you're unsure, then **leave it unchecked**." + +msgid "How the Bot User options should look like for most people." +msgstr "How the Bot User options should look like for most people." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copy the token using the \"Copy\" button." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**This is not the Client Secret at the General Information page.**" + +msgid "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." +msgstr "It should be worth noting that this token is essentially your bot's password. You should **never** share this with someone else. In doing so, someone can log in to your bot and do malicious things, such as leaving servers, ban all members inside a server, or pinging everyone maliciously." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "The possibilities are endless, so **do not share this token.**" + +msgid "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." +msgstr "If you accidentally leaked your token, click the \"Regenerate\" button as soon as possible. This revokes your old token and re-generates a new one. Now you need to use the new token to login." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "And that's it. You now have a bot account and you can login with that token." + +msgid "Inviting Your Bot" +msgstr "Inviting Your Bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "So you've made a Bot User but it's not actually in any server." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "If you want to invite your bot you must create an invite URL for it." + +msgid "Click on your bot's page." +msgstr "Click on your bot's page." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expand the \"OAuth2\" tab and click on \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "How the OAuth2 tab should look like." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Tick the permissions required for your bot to function under \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." + +msgid "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." +msgstr "Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page `_ for more information." + +msgid "The permission checkboxes with some permissions checked." +msgstr "The permission checkboxes with some permissions checked." + +msgid "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." +msgstr "Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "The person adding the bot needs \"Manage Server\" permissions to do so." + +msgid "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." +msgstr "If you want to generate this URL dynamically at run-time inside your bot and using the :class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/zh/LC_MESSAGES/ext/bridge/api.po b/docs/locales/zh/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..2e66ef4160 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,388 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "The reference manual that follows details the API of Pycord's bridge command extension module." + +msgid "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." +msgstr "Using the prefixed command version (which uses the ``ext.commands`` extension) of bridge commands in guilds requires :attr:`Intents.message_context` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Represents a discord bot, with support for cross-compatibility between command types." + +msgid "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`.ext.commands.Bot` and as a result anything that you can do with a :class:`.ext.commands.Bot` you can do with this bot." + +msgid "Parameters" +msgstr "Parameters" + +msgid "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." +msgstr "Takes a :class:`.BridgeCommand` and adds both a slash and traditional (prefix-based) version of the command to the bot." + +msgid "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." +msgstr "A shortcut decorator that invokes :func:`bridge_command` and adds it to the internal command list via :meth:`~.Bot.add_bridge_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." +msgstr "A decorator that converts the provided method into an :class:`.BridgeCommand`, adds both a slash and traditional (prefix-based) version of the command to the bot, and returns the :class:`.BridgeCommand`." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "A decorator that is used to wrap a function as a bridge command group." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)" + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`.ext.commands.AutoShardedBot` instead." + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the bridge extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and users input them correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "BridgeCommand" +msgstr "BridgeCommand" + +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "Compatibility class between prefixed-based commands and slash commands." + +msgid "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." +msgstr "The callback to invoke when the command is executed. The first argument will be a :class:`BridgeContext`, and any additional arguments will be passed to the callback. This callback must be a coroutine." + +msgid "Parent of the BridgeCommand." +msgstr "Parent of the BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "The slash command version of this bridge command." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "The prefix-based version of this bridge command." + +msgid ":class:`.BridgeExtCommand`" +msgstr ":class:`.BridgeExtCommand`" + +msgid "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" +msgstr "Returns name_localizations from :attr:`slash_variant` You can edit/set name_localizations directly with .. code-block:: python3" + +msgid "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" +msgstr "Returns description_localizations from :attr:`slash_variant` You can edit/set description_localizations directly with .. code-block:: python3" + +msgid "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" +msgstr "bridge_command.description_localizations[\"en-UK\"] = ... # or any other locale # or bridge_command.description_localizations = {\"en-UK\": ..., \"fr-FR\": ...}" + +msgid "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." +msgstr "Adds the command to a bot. This method is inherited by :class:`.BridgeCommandGroup`." + +msgid "The bot to add the command to." +msgstr "The bot to add the command to." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." +msgstr "This error handler is limited to the command it is defined to. However, higher scope handlers (per-cog and global) are still invoked afterwards as a catch-all. This handler also functions as the handler for both the prefixed and slash versions of the command." + +msgid "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." +msgstr "This error handler takes two parameters, a :class:`.BridgeContext` and a :class:`~discord.DiscordException`." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly before the command is called, making it useful for any sort of set up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." +msgstr "This hook is called directly after the command is called, making it useful for any sort of clean up required. This hook is called for both the prefixed and slash versions of the command." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "BridgeCommandGroup" +msgstr "BridgeCommandGroup" + +msgid "The slash command version of this command group." +msgstr "The slash command version of this command group." + +msgid ":class:`.SlashCommandGroup`" +msgstr ":class:`.SlashCommandGroup`" + +msgid "The prefix-based version of this command group." +msgstr "The prefix-based version of this command group." + +msgid ":class:`.ext.commands.Group`" +msgstr ":class:`.ext.commands.Group`" + +msgid "List of bridge commands in this group" +msgstr "List of bridge commands in this group" + +msgid "List[:class:`.BridgeCommand`]" +msgstr "List[:class:`.BridgeCommand`]" + +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "If :func:`map_to` is used, the mapped slash command." + +msgid "Optional[:class:`.SlashCommand`]" +msgstr "Optional[:class:`.SlashCommand`]" + +msgid "An iterator that recursively walks through all the bridge group's subcommands." +msgstr "An iterator that recursively walks through all the bridge group's subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- A bridge command of this bridge group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" + +msgid "A decorator to register a function as a subcommand." +msgstr "A decorator to register a function as a subcommand." + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "A decorator that is used to wrap a function as a bridge command." + +msgid "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." +msgstr "Keyword arguments that are directly passed to the respective command constructors (:class:`.SlashCommandGroup` and :class:`.ext.commands.Group`)." + +msgid "To be used with bridge command groups, map the main command to a slash subcommand." +msgstr "To be used with bridge command groups, map the main command to a slash subcommand." + +msgid "The new name of the mapped command." +msgstr "The new name of the mapped command." + +msgid "The new description of the mapped command." +msgstr "The new description of the mapped command." + +msgid "Example" +msgstr "Example" + +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "Prefixed commands will not be affected, but slash commands will appear as:" + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in guilds, and also registers the command as guild only client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.guild_only` and :func:`discord.commands.guild_only`." + +msgid "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." +msgstr "Intended to work with :class:`.ApplicationCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to only run in nsfw contexts, and also registers the command as nsfw client-side (on discord)." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.is_nsfw` and :func:`discord.commands.is_nsfw`." + +msgid "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." +msgstr "In DMs, the prefixed-based command will always run as the user's privacy settings cannot be checked directly." + +msgid "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." +msgstr "Intended to work with :class:`.SlashCommand` and :class:`BridgeCommand`, adds a :func:`~ext.commands.check` that locks the command to be run by people with certain permissions inside guilds, and also registers the command as locked behind said permissions." + +msgid "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." +msgstr "Basically a utility function that wraps both :func:`discord.ext.commands.has_permissions` and :func:`discord.commands.default_permissions`." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Command Subclasses" +msgstr "Command Subclasses" + +msgid "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Command` that is used for bridge commands." + +msgid "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." +msgstr "A subclass of :class:`.ext.commands.Group` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommand` that is used for bridge commands." + +msgid "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." +msgstr "A subclass of :class:`.SlashCommandGroup` that is used for bridge commands." + +msgid "Context" +msgstr "Context" + +msgid "BridgeContext" +msgstr "BridgeContext" + +msgid "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." +msgstr "The base context class for compatibility commands. This class is an :term:`abstract base class` (also known as an ``abc``), which is subclassed by :class:`BridgeExtContext` and :class:`BridgeApplicationContext`. The methods in this class are meant to give parity between the two contexts, while still allowing for all of their functionality." + +msgid "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" +msgstr "When this is passed to a command, it will either be passed as :class:`BridgeExtContext`, or :class:`BridgeApplicationContext`. Since they are two separate classes, it's easy to use the :attr:`BridgeContext.is_app` attribute. to make different functionality for each context. For example, if you want to respond to a command with the command type that it was invoked with, you can do the following:" + +msgid "Helper for @overload to raise when called." +msgstr "Helper for @overload to raise when called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." +msgstr "Responds to the command with the respective response type to the current context. In :class:`BridgeExtContext`, this will be :meth:`~.Context.reply` while in :class:`BridgeApplicationContext`, this will be :meth:`~.ApplicationContext.respond`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\` \\| \\:py\\:class\\:\\`\\~discord.webhook.async\\_.WebhookMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "Alias for :meth:`~.BridgeContext.respond`." + +msgid "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Defers the command with the respective approach to the current context. In :class:`BridgeExtContext`, this will be :meth:`~discord.abc.Messageable.trigger_typing` while in :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.defer`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." +msgstr "There is no ``trigger_typing`` alias for this method. ``trigger_typing`` will always provide the same functionality across contexts." + +msgid "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." +msgstr "Edits the original response message with the respective approach to the current context. In :class:`BridgeExtContext`, this will have a custom approach where :meth:`.respond` caches the message to be edited here. In :class:`BridgeApplicationContext`, this will be :attr:`~.ApplicationContext.edit`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\` \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Whether the context is an :class:`BridgeApplicationContext` or not." +msgstr "Whether the context is an :class:`BridgeApplicationContext` or not." + +msgid "BridgeContext Subclasses" +msgstr "BridgeContext Subclasses" + +msgid "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The application context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.ApplicationContext`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." +msgstr "The ext.commands context class for compatibility commands. This class is a subclass of :class:`BridgeContext` and :class:`~.Context`. This class is meant to be used with :class:`BridgeCommand`." + +msgid "Deletes the original response message, if it exists." +msgstr "Deletes the original response message, if it exists." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "The reason for deleting the message. Shows up on the audit log." + +msgid "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." +msgstr "Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience." + +msgid "Option" +msgstr "Option" + +msgid "BridgeOption" +msgstr "BridgeOption" + +msgid "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." +msgstr "A subclass of :class:`discord.Option` which represents a selectable slash command option and a prefixed command argument for bridge commands." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + diff --git a/docs/locales/zh/LC_MESSAGES/ext/bridge/index.po b/docs/locales/zh/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..5d04d47e3a --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.bridge" +msgstr "discord.ext.bridge" + +msgid "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." +msgstr "This module allows using one command callback in order to make both a prefix command and a slash command. This page includes the API reference/documentation for the module, but only contains a short example. For a more detailed guide on how to use this, see our `discord.ext.bridge guide `_." + +msgid "Example usage:" +msgstr "Example usage:" + diff --git a/docs/locales/zh/LC_MESSAGES/ext/commands/api.po b/docs/locales/zh/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..a2b86203a5 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4117 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "API Reference" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "The following section outlines the API of Pycord's prefixed command extension module." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot." +msgstr "Represents a discord bot." + +msgid "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." +msgstr "This class is a subclass of :class:`discord.Bot` and as a result anything that you can do with a :class:`discord.Bot` you can do with this bot." + +msgid "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." +msgstr "This class also subclasses :class:`.GroupMixin` to provide the functionality to manage commands." + +msgid "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." +msgstr "Using prefixed commands requires :attr:`discord.Intents.message_content` to be enabled." + +msgid "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." +msgstr "The command prefix is what the message content must contain initially to have a command invoked. This prefix could either be a string to indicate what the prefix should be, or a callable that takes in the bot as its first parameter and :class:`discord.Message` as its second parameter and returns the prefix. This is to facilitate \"dynamic\" command prefixes. This callable can be either a regular function or a coroutine." + +msgid "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." +msgstr "An empty string as the prefix always matches, enabling prefix-less command invocation. While this may be useful in DMs it should be avoided in servers, as it's likely to cause performance issues and unintended command invocations." + +msgid "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." +msgstr "The command prefix could also be an iterable of strings indicating that multiple checks for the prefix should be used and the first one to match will be the invocation prefix. You can get this prefix via :attr:`.Context.prefix`. To avoid confusion empty iterables are not allowed." + +msgid "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." +msgstr "When passing multiple prefixes be careful to not pass a prefix that matches a longer prefix occurring later in the sequence. For example, if the command prefix is ``('!', '!?')`` the ``'!?'`` prefix will never be matched to any message as the previous one matches messages starting with ``!?``. This is especially important when passing an empty string, it should always be last as no prefix after it will be matched." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``. This attribute does not carry over to groups. You must set it to every group if you require group commands to be case-insensitive as well." + +msgid "type" +msgstr "type" + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." +msgstr "The help command implementation to use. This can be dynamically set at runtime. To remove the help command pass ``None``. For more information on implementing a help command, see :ref:`ext_commands_help_command`." + +msgid "Optional[:class:`.HelpCommand`]" +msgstr "Optional[:class:`.HelpCommand`]" + +msgid "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." +msgstr "Whether to strip whitespace characters after encountering the command prefix. This allows for ``! hello`` and ``!hello`` to both work if the ``command_prefix`` is set to ``!``. Defaults to ``False``." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a post-invoke hook. A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required. This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." +msgstr "Similar to :meth:`~.Bot.before_invoke`\\, this is not called unless checks and argument parsing procedures succeed. This hook is, however, **always** called regardless of the internal command callback raising an error (i.e. :exc:`.CommandInvokeError`\\). This makes it ideal for clean-up scenarios." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "The coroutine to register as the post-invoke hook." + +msgid "Raises" +msgstr "Raises" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "The coroutine passed is not actually a coroutine." + +msgid "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "A decorator that registers a coroutine as a pre-invoke hook. A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required. This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." +msgstr "The :meth:`~.Bot.before_invoke` and :meth:`~.Bot.after_invoke` hooks are only called if all checks and argument parsing procedures pass without error. If any check or argument parsing procedures fail then the hooks are not called." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "The coroutine to register as the pre-invoke hook." + +msgid "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." +msgstr "A decorator that adds a global check to the bot. A global check is similar to a :func:`.check` that is applied on a per-command basis except it is run before any command checks have been verified and applies to every command the bot has." + +msgid "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." +msgstr "This function can either be a regular function or a coroutine. Similar to a command :func:`.check`, this takes a single parameter of type :class:`.Context` and can only raise exceptions inherited from :exc:`.ApplicationCommandError`." + +msgid "Example" +msgstr "Example" + +msgid "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." +msgstr "A decorator that adds a \"call once\" global check to the bot. Unlike regular global checks, this one is called only once per :meth:`.Bot.invoke` call. Regular global checks are called whenever a command is called or :meth:`.Command.can_run` is called. This type of check bypasses that and ensures that it's called only once, even inside the default help command." + +msgid "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." +msgstr "When using this function the :class:`.Context` sent to a group subcommand may only parse the parent command and not the subcommands due to it being invoked once per :meth:`.Bot.invoke` call." + +msgid "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.command` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "Returns" +msgstr "Returns" + +msgid "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Command, adds it to the bot, then returns it." + +msgid "Return type" +msgstr "Return type" + +msgid "Callable[..., :class:`Command`]" +msgstr "Callable[..., :class:`Command`]" + +msgid "A decorator that registers an event to listen to." +msgstr "A decorator that registers an event to listen to." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "You can find more info about the events on the :ref:`documentation below `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." + +msgid "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." +msgstr "This replaces any default handlers. Developers are encouraged to use :py:meth:`~discord.Client.listen` for adding additional handlers instead of :py:meth:`~discord.Client.event` unless default method replacement is intended." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "A shortcut decorator that invokes :func:`.group` and adds it to the internal command list via :meth:`~.GroupMixin.add_command`." + +msgid "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a Group, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`Group`]" +msgstr "Callable[..., :class:`Group`]" + +msgid "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" +msgstr "A decorator that registers another function as an external event listener. Basically this allows you to listen to multiple events from different places e.g. such as :func:`.on_ready`" + +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "The functions being listened to must be a :ref:`coroutine `." + +msgid "The function being listened to is not a coroutine." +msgstr "The function being listened to is not a coroutine." + +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "The ``name`` (event name) does not start with 'on_'" + +msgid "Would print one and two in an unspecified order." +msgstr "Would print one and two in an unspecified order." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`Coro\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]`" + +msgid "The activity being used upon logging in." +msgstr "The activity being used upon logging in." + +msgid "Optional[:class:`.BaseActivity`]" +msgstr "Optional[:class:`.BaseActivity`]" + +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "Adds an :class:`.ApplicationCommand` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`command` or other shortcut decorators are used instead." + +msgid "The command to add." +msgstr "The command to add." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." +msgstr "Adds a global check to the bot. This is the non-decorator interface to :meth:`.check` and :meth:`.check_once`." + +msgid "The function that was used as a global check." +msgstr "The function that was used as a global check." + +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "If the function should only be called once per :meth:`.Bot.invoke` call." + +msgid "Adds a \"cog\" to the bot." +msgstr "Adds a \"cog\" to the bot." + +msgid "A cog is a class that has its own event listeners and commands." +msgstr "A cog is a class that has its own event listeners and commands." + +msgid ":exc:`.ClientException` is raised when a cog with the same name is already loaded." +msgstr ":exc:`.ClientException` is raised when a cog with the same name is already loaded." + +msgid "The cog to register to the bot." +msgstr "The cog to register to the bot." + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error. .. versionadded:: 2.0" + +msgid "If a previously loaded cog with the same name should be ejected instead of raising an error." +msgstr "If a previously loaded cog with the same name should be ejected instead of raising an error." + +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "The cog does not inherit from :class:`.Cog`." + +msgid "An error happened during loading." +msgstr "An error happened during loading." + +msgid "A cog with the same name is already loaded." +msgstr "A cog with the same name is already loaded." + +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "Adds a :class:`.Command` into the internal list of commands." + +msgid "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "This is usually not called, instead the :meth:`~.GroupMixin.command` or :meth:`~.GroupMixin.group` shortcut decorators are used instead." + +msgid "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" +msgstr "Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException`" + +msgid "If the command or its alias is already registered by different command." +msgstr "If the command or its alias is already registered by different command." + +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "If the command passed is not a subclass of :class:`.Command`." + +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "The non decorator alternative to :meth:`.listen`." + +msgid "The function to call." +msgstr "The function to call." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "The name of the event to listen for. Defaults to ``func.__name__``." + +msgid "The ``func`` parameter is not a coroutine function." +msgstr "The ``func`` parameter is not a coroutine function." + +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "Registers a :class:`~discord.ui.View` for persistent listening." + +msgid "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." +msgstr "This method should be used for when a view is comprised of components that last longer than the lifecycle of the program." + +msgid "The view to register for dispatching." +msgstr "The view to register for dispatching." + +msgid "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." +msgstr "The message ID that the view is attached to. This is currently used to refresh the view's state during message update events. If not given then message update events are not propagated for the view." + +msgid "A view was not passed." +msgstr "A view was not passed." + +msgid "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." +msgstr "The view is not persistent. A persistent view has no timeout and all their components have an explicitly provided ``custom_id``." + +msgid "The allowed mention configuration." +msgstr "The allowed mention configuration." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`~.Bot.add_application_command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "The client's application flags." +msgstr "The client's application flags." + +msgid "The client's application ID." +msgstr "The client's application ID." + +msgid "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." +msgstr "If this is not passed via ``__init__`` then this is retrieved through the gateway when an event contains the data. Usually after :func:`~discord.on_connect` is called." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the bot's application information." +msgstr "Retrieves the bot's application information." + +msgid "The bot's application information." +msgstr "The bot's application information." + +msgid ":class:`.AppInfo`" +msgstr ":class:`.AppInfo`" + +msgid "Retrieving the information failed somehow." +msgstr "Retrieving the information failed somehow." + +msgid "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." +msgstr "A hook that is called before IDENTIFYing a session. This is useful if you wish to have more control over the synchronization of multiple IDENTIFYing clients." + +msgid "The default implementation sleeps for 5 seconds." +msgstr "The default implementation sleeps for 5 seconds." + +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "The shard ID that requested being IDENTIFY'd" + +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "Whether this IDENTIFY is the first initial IDENTIFY." + +msgid "Read-only list of messages the connected client has cached." +msgstr "Read-only list of messages the connected client has cached." + +msgid "Changes the client's presence." +msgstr "Changes the client's presence." + +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "The activity being done. ``None`` if no currently active activity is done." + +msgid "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." +msgstr "Indicates what status to change to. If ``None``, then :attr:`.Status.online` is used." + +msgid "If the ``activity`` parameter is not the proper type." +msgstr "If the ``activity`` parameter is not the proper type." + +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "Removed the ``afk`` keyword-only parameter." + +msgid "Clears the internal state of the bot." +msgstr "Clears the internal state of the bot." + +msgid "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." +msgstr "After this, the bot can be considered \"re-opened\", i.e. :meth:`is_closed` and :meth:`is_ready` both return ``False`` along with the bot's internal cache cleared." + +msgid "Closes the connection to Discord." +msgstr "Closes the connection to Discord." + +msgid "A read-only mapping of cog name to cog." +msgstr "A read-only mapping of cog name to cog." + +msgid "A unique set of commands without aliases that are registered." +msgstr "A unique set of commands without aliases that are registered." + +msgid "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." +msgstr "Creates a WebSocket connection and lets the WebSocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control is not resumed until the WebSocket connection is terminated." + +msgid "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." +msgstr "If we should attempt reconnecting, either due to internet failure or a specific failure on Discord's part. Certain disconnects that lead to bad state will not be handled (such as invalid sharding payloads or bad tokens)." + +msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." +msgstr "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." + +msgid "The WebSocket connection has been terminated." +msgstr "The WebSocket connection has been terminated." + +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "Creates a :class:`.DMChannel` with this user." + +msgid "This should be rarely called, as this is done transparently for most people." +msgstr "This should be rarely called, as this is done transparently for most people." + +msgid "The user to create a DM with." +msgstr "The user to create a DM with." + +msgid "The channel that was created." +msgstr "The channel that was created." + +msgid ":class:`.DMChannel`" +msgstr ":class:`.DMChannel`" + +msgid "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut method that creates a slash command group with no subcommands and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "Creates a :class:`.Guild`." +msgstr "Creates a :class:`.Guild`." + +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "Bot accounts in more than 10 guilds are not allowed to create guilds." + +msgid "The name of the guild." +msgstr "The name of the guild." + +msgid "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." +msgstr "The :term:`py:bytes-like object` representing the icon. See :meth:`.ClientUser.edit` for more details on what is expected." + +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "The code for a template to create the guild with. .. versionadded:: 1.4" + +msgid "The code for a template to create the guild with." +msgstr "The code for a template to create the guild with." + +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "The guild created. This is not the same guild that is added to cache." + +msgid ":class:`.Guild`" +msgstr ":class:`.Guild`" + +msgid "Guild creation failed." +msgstr "Guild creation failed." + +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "Invalid icon image format given. Must be PNG or JPG." + +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." + +msgid "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." +msgstr "You must have the :attr:`~.Permissions.manage_channels` permission in the associated guild to do this." + +msgid "The invite to revoke." +msgstr "The invite to revoke." + +msgid "You do not have permissions to revoke invites." +msgstr "You do not have permissions to revoke invites." + +msgid "The invite is invalid or expired." +msgstr "The invite is invalid or expired." + +msgid "Revoking the invite failed." +msgstr "Revoking the invite failed." + +msgid "The emojis that the connected client has." +msgstr "The emojis that the connected client has." + +msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." + +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "Limit the fetched entitlements to entitlements owned by this user." + +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "Limit the fetched entitlements to entitlements that are for these SKUs." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." +msgstr "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." + +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "Limit the fetched entitlements to entitlements owned by this guild." + +msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." +msgstr "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr ":class:`.Entitlement` -- The application's entitlements." + +msgid "Retrieving the entitlements failed." +msgstr "Retrieving the entitlements failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" + +msgid "Examples" +msgstr "Examples" + +msgid "Usage ::" +msgstr "Usage ::" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters are optional." +msgstr "All parameters are optional." + +msgid "A read-only mapping of extension name to extension." +msgstr "A read-only mapping of extension name to extension." + +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." + +msgid "The application ID to retrieve information from." +msgstr "The application ID to retrieve information from." + +msgid "The application information." +msgstr "The application information." + +msgid ":class:`.PartialAppInfo`" +msgstr ":class:`.PartialAppInfo`" + +msgid "An application with this ID does not exist." +msgstr "An application with this ID does not exist." + +msgid "Retrieving the application failed." +msgstr "Retrieving the application failed." + +msgid "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." +msgstr "Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or :class:`.Thread` with the specified ID." + +msgid "This method is an API call. For general usage, consider :meth:`get_channel` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_channel` instead." + +msgid "The channel from the ID." +msgstr "The channel from the ID." + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, :class:`.Thread`]" + +msgid "An unknown channel type was received from Discord." +msgstr "An unknown channel type was received from Discord." + +msgid "Retrieving the channel failed." +msgstr "Retrieving the channel failed." + +msgid "Invalid Channel ID." +msgstr "Invalid Channel ID." + +msgid "You do not have permission to fetch this channel." +msgstr "You do not have permission to fetch this channel." + +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "Retrieves a :class:`.Guild` from an ID." + +msgid "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." +msgstr "Using this, you will **not** receive :attr:`.Guild.channels`, :attr:`.Guild.members`, :attr:`.Member.activity` and :attr:`.Member.voice` per :class:`.Member`." + +msgid "This method is an API call. For general usage, consider :meth:`get_guild` instead." +msgstr "This method is an API call. For general usage, consider :meth:`get_guild` instead." + +msgid "The guild's ID to fetch from." +msgstr "The guild's ID to fetch from." + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. .. versionadded:: 2.0" + +msgid "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." +msgstr "Whether to include count information in the guild. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields." + +msgid "The guild from the ID." +msgstr "The guild from the ID." + +msgid "You do not have access to the guild." +msgstr "You do not have access to the guild." + +msgid "Getting the guild failed." +msgstr "Getting the guild failed." + +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." + +msgid "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." +msgstr "Using this, you will only receive :attr:`.Guild.owner`, :attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per :class:`.Guild`." + +msgid "This method is an API call. For general usage, consider :attr:`guilds` instead." +msgstr "This method is an API call. For general usage, consider :attr:`guilds` instead." + +msgid "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." +msgstr "The number of guilds to retrieve. If ``None``, it retrieves every guild you have access to. Note, however, that this would make it a slow operation. Defaults to ``100``." + +msgid "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieves guilds before this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve guilds after this date or object. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.Emoji`]" +msgstr "Optional[:class:`.Emoji`]" + +msgid "Returns a guild with the given ID." +msgstr "Returns a guild with the given ID." + +msgid "The guild or ``None`` if not found." +msgstr "The guild or ``None`` if not found." + +msgid "Optional[:class:`.Guild`]" +msgstr "Optional[:class:`.Guild`]" + +msgid "Returns a message the given ID." +msgstr "Returns a message the given ID." + +msgid "This is useful if you have a message_id but don't want to do an API call to access the message." +msgstr "This is useful if you have a message_id but don't want to do an API call to access the message." + +msgid "The returned message or ``None`` if not found." +msgstr "The returned message or ``None`` if not found." + +msgid "Optional[:class:`.Message`]" +msgstr "Optional[:class:`.Message`]" + +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "Looks up a user in the user cache or fetches if not found." + +msgid "The user or ``None`` if not found." +msgstr "The user or ``None`` if not found." + +msgid "Optional[:class:`~discord.User`]" +msgstr "Optional[:class:`~discord.User`]" + +msgid "Returns a partial messageable with the given channel ID." +msgstr "Returns a partial messageable with the given channel ID." + +msgid "This is useful if you have a channel_id but don't want to do an API call to send messages to it." +msgstr "This is useful if you have a channel_id but don't want to do an API call to send messages to it." + +msgid "The channel ID to create a partial messageable for." +msgstr "The channel ID to create a partial messageable for." + +msgid "The underlying channel type for the partial messageable." +msgstr "The underlying channel type for the partial messageable." + +msgid "The partial messageable" +msgstr "The partial messageable" + +msgid ":class:`.PartialMessageable`" +msgstr ":class:`.PartialMessageable`" + +msgid "Returns a poll attached to the given message ID." +msgstr "Returns a poll attached to the given message ID." + +msgid "The message ID of the poll to search for." +msgstr "The message ID of the poll to search for." + +msgid "The poll or ``None`` if not found." +msgstr "The poll or ``None`` if not found." + +msgid "Optional[:class:`.Poll`]" +msgstr "Optional[:class:`.Poll`]" + +msgid "Retrieves the prefix the bot is listening to with the message as a context." +msgstr "Retrieves the prefix the bot is listening to with the message as a context." + +msgid "The message context to get the prefix of." +msgstr "The message context to get the prefix of." + +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "A list of prefixes or a single prefix that the bot is listening for." + +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "Union[List[:class:`str`], :class:`str`]" + +msgid "Returns a stage instance with the given stage channel ID." +msgstr "Returns a stage instance with the given stage channel ID." + +msgid "The stage instance or ``None`` if not found." +msgstr "The stage instance or ``None`` if not found." + +msgid "Optional[:class:`.StageInstance`]" +msgstr "Optional[:class:`.StageInstance`]" + +msgid "Returns a guild sticker with the given ID." +msgstr "Returns a guild sticker with the given ID." + +msgid "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." +msgstr "To retrieve standard stickers, use :meth:`.fetch_sticker`. or :meth:`.fetch_premium_sticker_packs`." + +msgid "The sticker or ``None`` if not found." +msgstr "The sticker or ``None`` if not found." + +msgid "Optional[:class:`.GuildSticker`]" +msgstr "Optional[:class:`.GuildSticker`]" + +msgid "Returns a user with the given ID." +msgstr "Returns a user with the given ID." + +msgid "The guilds that the connected client is a member of." +msgstr "The guilds that the connected client is a member of." + +msgid "The intents configured for this connection." +msgstr "The intents configured for this connection." + +msgid "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "The invocation context to invoke." +msgstr "The invocation context to invoke." + +msgid "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." +msgstr "Invokes the application command given under the invocation context and handles all the internal event dispatch mechanisms." + +msgid "Indicates if the WebSocket connection is closed." +msgstr "Indicates if the WebSocket connection is closed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." +msgstr "Checks if a :class:`~discord.User` or :class:`~discord.Member` is the owner of this bot." + +msgid "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." +msgstr "If an :attr:`owner_id` is not set, it is fetched automatically through the use of :meth:`~.Bot.application_info`." + +msgid "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." +msgstr "The function also checks if the application is team-owned if :attr:`owner_ids` is not set." + +msgid "The user to check for." +msgstr "The user to check for." + +msgid "Whether the user is the owner." +msgstr "Whether the user is the owner." + +msgid "Specifies if the client's internal cache is ready for use." +msgstr "Specifies if the client's internal cache is ready for use." + +msgid "Whether the WebSocket is currently rate limited." +msgstr "Whether the WebSocket is currently rate limited." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "This can be useful to know when deciding whether you should query members using HTTP or via the gateway. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "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:" +msgstr "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:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A list of commands that passed the filter." +msgstr "A list of commands that passed the filter." + +msgid "List[:class:`Command`]" +msgstr "List[:class:`Command`]" + +msgid "Returns the largest name length of the specified command list." +msgstr "Returns the largest name length of the specified command list." + +msgid "A sequence of commands to check for the largest size." +msgstr "A sequence of commands to check for the largest size." + +msgid "The maximum width of the commands." +msgstr "The maximum width of the commands." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Returns the :class:`~discord.abc.Messageable` where the help command will be output." +msgstr "Returns the :class:`~discord.abc.Messageable` where the help command will be output." + +msgid "You can override this method to customise the behaviour." +msgstr "You can override this method to customise the behaviour." + +msgid "By default, this returns the context's channel." +msgstr "By default, this returns the context's channel." + +msgid "The destination where the help command will be output." +msgstr "The destination where the help command will be output." + +msgid ":class:`.abc.Messageable`" +msgstr ":class:`.abc.Messageable`" + +msgid "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." +msgstr "Handles the implementation when an error happens in the help command. For example, the result of :meth:`command_not_found` will be passed here." + +msgid "By default, this sends the error message to the destination specified by :meth:`get_destination`." +msgstr "By default, this sends the error message to the destination specified by :meth:`get_destination`." + +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "You can access the invocation context with :attr:`HelpCommand.context`." + +msgid "The error message to display to the user. Note that this has had mentions removed to prevent abuse." +msgstr "The error message to display to the user. Note that this has had mentions removed to prevent abuse." + +msgid "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." +msgstr "The help command's error handler, as specified by :ref:`ext_commands_error_handler`." + +msgid "Useful to override if you need some specific behaviour when the error handler is called." +msgstr "Useful to override if you need some specific behaviour when the error handler is called." + +msgid "By default, this method does nothing and just propagates to the default error handlers." +msgstr "By default, this method does nothing and just propagates to the default error handlers." + +msgid "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." +msgstr "Handles the implementation of the bot command page in the help command. This function is called when the help command is called with no arguments." + +msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." +msgstr "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." + +msgid "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "Also, the commands in the mapping are not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." +msgstr "A mapping of cogs to commands that have been requested by the user for help. The key of the mapping is the :class:`~.commands.Cog` that the command belongs to, or ``None`` if there isn't one, and the value is a list of commands that belongs to that cog." + +msgid "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." +msgstr "Handles the implementation of the cog page in the help command. This function is called when the help command is called with a cog as the argument." + +msgid "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this cog see :meth:`Cog.get_commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The cog that was requested for help." +msgstr "The cog that was requested for help." + +msgid "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." +msgstr "Handles the implementation of the group page in the help command. This function is called when the help command is called with a group as the argument." + +msgid "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." +msgstr "To get the commands that belong to this group without aliases see :attr:`Group.commands`. The commands returned not filtered. To do the filtering you will have to call :meth:`filter_commands` yourself." + +msgid "The group that was requested for help." +msgstr "The group that was requested for help." + +msgid "Handles the implementation of the single command page in the help command." +msgstr "Handles the implementation of the single command page in the help command." + +msgid "Showing Help" +msgstr "Showing Help" + +msgid "There are certain attributes and methods that are helpful for a help command to show such as the following:" +msgstr "There are certain attributes and methods that are helpful for a help command to show such as the following:" + +msgid ":attr:`Command.help`" +msgstr ":attr:`Command.help`" + +msgid ":attr:`Command.brief`" +msgstr ":attr:`Command.brief`" + +msgid ":attr:`Command.short_doc`" +msgstr ":attr:`Command.short_doc`" + +msgid ":attr:`Command.description`" +msgstr ":attr:`Command.description`" + +msgid ":meth:`get_command_signature`" +msgstr ":meth:`get_command_signature`" + +msgid "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." +msgstr "There are more than just these attributes but feel free to play around with these to help you get started to get the output that you want." + +msgid "The command that was requested for help." +msgstr "The command that was requested for help." + +msgid "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." +msgstr "A low level method that can be used to prepare the help command before it does anything. For example, if you need to prepare some state in your subclass before the command does its processing then this would be the place to do it." + +msgid "The default implementation does nothing." +msgstr "The default implementation does nothing." + +msgid "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." +msgstr "This is called *inside* the help command callback body. So all the usual rules that happen inside apply here as well." + +msgid "The argument passed to the help command." +msgstr "The argument passed to the help command." + +msgid "The actual implementation of the help command." +msgstr "The actual implementation of the help command." + +msgid "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." +msgstr "It is not recommended to override this method and instead change the behaviour through the methods that actually get dispatched." + +msgid ":meth:`send_bot_help`" +msgstr ":meth:`send_bot_help`" + +msgid ":meth:`send_cog_help`" +msgstr ":meth:`send_cog_help`" + +msgid ":meth:`send_group_help`" +msgstr ":meth:`send_group_help`" + +msgid ":meth:`send_command_help`" +msgstr ":meth:`send_command_help`" + +msgid ":meth:`get_destination`" +msgstr ":meth:`get_destination`" + +msgid ":meth:`command_not_found`" +msgstr ":meth:`command_not_found`" + +msgid ":meth:`subcommand_not_found`" +msgstr ":meth:`subcommand_not_found`" + +msgid ":meth:`send_error_message`" +msgstr ":meth:`send_error_message`" + +msgid ":meth:`on_help_command_error`" +msgstr ":meth:`on_help_command_error`" + +msgid ":meth:`prepare_help_command`" +msgstr ":meth:`prepare_help_command`" + +msgid "DefaultHelpCommand" +msgstr "DefaultHelpCommand" + +msgid "The implementation of the default help command." +msgstr "The implementation of the default help command." + +msgid "This inherits from :class:`HelpCommand`." +msgstr "This inherits from :class:`HelpCommand`." + +msgid "It extends it with the following attributes." +msgstr "It extends it with the following attributes." + +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "The maximum number of characters that fit in a line. Defaults to 80." + +msgid "Whether to sort the commands in the output alphabetically. Defaults to ``True``." +msgstr "Whether to sort the commands in the output alphabetically. Defaults to ``True``." + +msgid "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." +msgstr "A tribool that indicates if the help command should DM the user instead of sending it to the channel it received it from. If the boolean is set to ``True``, then all help output is DM'd. If ``False``, none of the help output is DM'd. If ``None``, then the bot will only DM when the help message becomes too long (dictated by more than :attr:`dm_help_threshold` characters). Defaults to ``False``." + +msgid "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." +msgstr "The number of characters the paginator must accumulate before getting DM'd to the user if :attr:`dm_help` is set to ``None``. Defaults to 1000." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "How much to indent the commands from a heading. Defaults to ``2``." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands:\"``" + +msgid "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" +msgstr "The string used when there is a command which does not belong to any category(cog). Useful for i18n. Defaults to ``\"No Category\"``" + +msgid "The paginator used to paginate the help command output." +msgstr "The paginator used to paginate the help command output." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "Shortens text to fit into the :attr:`width`." +msgstr "Shortens text to fit into the :attr:`width`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" + +msgid "Returns help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "Indents a list of commands after the specified heading." +msgstr "Indents a list of commands after the specified heading." + +msgid "The formatting is added to the :attr:`paginator`." +msgstr "The formatting is added to the :attr:`paginator`." + +msgid "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." +msgstr "The default implementation is the command name indented by :attr:`indent` spaces, padded to ``max_size`` followed by the command's :attr:`Command.short_doc` and then shortened to fit into the :attr:`width`." + +msgid "A list of commands to indent for output." +msgstr "A list of commands to indent for output." + +msgid "The heading to add to the output. This is only added if the list of commands is greater than 0." +msgstr "The heading to add to the output. This is only added if the list of commands is greater than 0." + +msgid "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "The max size to use for the gap between indents. If unspecified, calls :meth:`~HelpCommand.get_max_size` on the commands parameter." + +msgid "A helper utility to send the page output from :attr:`paginator` to the destination." +msgstr "A helper utility to send the page output from :attr:`paginator` to the destination." + +msgid "A utility function to format the non-indented block of commands and groups." +msgstr "A utility function to format the non-indented block of commands and groups." + +msgid "The command to format." +msgstr "The command to format." + +msgid "MinimalHelpCommand" +msgstr "MinimalHelpCommand" + +msgid "An implementation of a help command with minimal output." +msgstr "An implementation of a help command with minimal output." + +msgid "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" +msgstr "The command list's heading string used when the help command is invoked with a category name. Useful for i18n. Defaults to ``\"Commands\"``" + +msgid "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "The alias list's heading string used to list the aliases of the command. Useful for i18n. Defaults to ``\"Aliases:\"``." + +msgid "Returns help command's opening note. This is mainly useful to override for i18n purposes." +msgstr "Returns help command's opening note. This is mainly useful to override for i18n purposes." + +msgid "The default implementation returns ::" +msgstr "The default implementation returns ::" + +msgid "The help command opening note." +msgstr "The help command opening note." + +msgid "Return the help command's ending note. This is mainly useful to override for i18n purposes." +msgstr "Return the help command's ending note. This is mainly useful to override for i18n purposes." + +msgid "The help command ending note." +msgstr "The help command ending note." + +msgid "Adds the minified bot heading with commands to the output." +msgstr "Adds the minified bot heading with commands to the output." + +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "The formatting should be added to the :attr:`paginator`." + +msgid "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." +msgstr "The default implementation is a bold underline heading followed by commands separated by an EN SPACE (U+2002) in the next line." + +msgid "A list of commands that belong to the heading." +msgstr "A list of commands that belong to the heading." + +msgid "The heading to add to the line." +msgstr "The heading to add to the line." + +msgid "Adds formatting information on a subcommand." +msgstr "Adds formatting information on a subcommand." + +msgid "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." +msgstr "The default implementation is the prefix and the :attr:`Command.qualified_name` optionally followed by an En dash and the command's :attr:`Command.short_doc`." + +msgid "The command to show information of." +msgstr "The command to show information of." + +msgid "Adds the formatting information on a command's aliases." +msgstr "Adds the formatting information on a command's aliases." + +msgid "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." +msgstr "The default implementation is the :attr:`aliases_heading` bolded followed by a comma separated list of aliases." + +msgid "This is not called if there are no aliases to format." +msgstr "This is not called if there are no aliases to format." + +msgid "A list of aliases to format." +msgstr "A list of aliases to format." + +msgid "A utility function to format commands and groups." +msgstr "A utility function to format commands and groups." + +msgid "Paginator" +msgstr "Paginator" + +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "A class that aids in paginating code blocks for Discord messages." + +msgid "Returns the total number of characters in the paginator." +msgstr "Returns the total number of characters in the paginator." + +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "The prefix inserted to every page. e.g. three backticks." + +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "The suffix appended at the end of every page. e.g. three backticks." + +msgid "The maximum amount of codepoints allowed in a page." +msgstr "The maximum amount of codepoints allowed in a page." + +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "The character string inserted between lines. e.g. a newline character." + +msgid "Clears the paginator to have no pages." +msgstr "Clears the paginator to have no pages." + +msgid "Adds a line to the current page." +msgstr "Adds a line to the current page." + +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "If the line exceeds the :attr:`max_size` then an exception is raised." + +msgid "The line to add." +msgstr "The line to add." + +msgid "Indicates if another empty line should be added." +msgstr "Indicates if another empty line should be added." + +msgid "The line was too big for the current :attr:`max_size`." +msgstr "The line was too big for the current :attr:`max_size`." + +msgid "Prematurely terminate a page." +msgstr "Prematurely terminate a page." + +msgid "Returns the rendered list of pages." +msgstr "Returns the rendered list of pages." + +msgid "Enums" +msgstr "Enums" + +msgid "Specifies a type of bucket for, e.g. a cooldown." +msgstr "Specifies a type of bucket for, e.g. a cooldown." + +msgid "The default bucket operates on a global basis." +msgstr "The default bucket operates on a global basis." + +msgid "The user bucket operates on a per-user basis." +msgstr "The user bucket operates on a per-user basis." + +msgid "The guild bucket operates on a per-guild basis." +msgstr "The guild bucket operates on a per-guild basis." + +msgid "The channel bucket operates on a per-channel basis." +msgstr "The channel bucket operates on a per-channel basis." + +msgid "The member bucket operates on a per-member basis." +msgstr "The member bucket operates on a per-member basis." + +msgid "The category bucket operates on a per-category basis." +msgstr "The category bucket operates on a per-category basis." + +msgid "The role bucket operates on a per-role basis." +msgstr "The role bucket operates on a per-role basis." + +msgid "Checks" +msgstr "Checks" + +msgid "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." +msgstr "A decorator that adds a check to the :class:`.Command` or its subclasses. These checks could be accessed via :attr:`.Command.checks`." + +msgid "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." +msgstr "These checks should be predicates that take in a single parameter taking a :class:`.Context`. If the check returns a ``False``\\-like value then during invocation a :exc:`.CheckFailure` exception is raised and sent to the :func:`.on_command_error` event." + +msgid "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." +msgstr "If an exception should be thrown in the predicate then it should be a subclass of :exc:`.CommandError`. Any exception not subclassed from it will be propagated while those subclassed will be sent to :func:`.on_command_error`." + +msgid "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" +msgstr "A special attribute named ``predicate`` is bound to the value returned by this decorator to retrieve the predicate passed to the decorator. This allows the following introspection and chaining to be done:" + +msgid "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." +msgstr "The function returned by ``predicate`` is **always** a coroutine, even if the original function was not a coroutine." + +msgid "The ``predicate`` attribute was added." +msgstr "The ``predicate`` attribute was added." + +msgid "Creating a basic check to see if the command invoker is you." +msgstr "Creating a basic check to see if the command invoker is you." + +msgid "Transforming common checks into its own decorator:" +msgstr "Transforming common checks into its own decorator:" + +msgid "The predicate to check if the command should be invoked." +msgstr "The predicate to check if the command should be invoked." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." +msgstr "A :func:`check` that is added that checks if any of the checks passed will pass, i.e. using logical OR." + +msgid "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." +msgstr "If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the failure. It inherits from :exc:`.CheckFailure`." + +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "The ``predicate`` attribute for this function **is** a coroutine." + +msgid "An argument list of checks that have been decorated with the :func:`check` decorator." +msgstr "An argument list of checks that have been decorated with the :func:`check` decorator." + +msgid "A check passed has not been decorated with the :func:`check` decorator." +msgstr "A check passed has not been decorated with the :func:`check` decorator." + +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "Creating a basic check to see if it's the bot owner or the server owner:" + +msgid "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has the role specified via the name or ID specified." + +msgid "If a string is specified, you must give the exact name of the role, including caps and spelling." +msgstr "If a string is specified, you must give the exact name of the role, including caps and spelling." + +msgid "If an integer is specified, you must give the exact snowflake ID of the role." +msgstr "If an integer is specified, you must give the exact snowflake ID of the role." + +msgid "If the message is invoked in a private message context then the check will return ``False``." +msgstr "If the message is invoked in a private message context then the check will return ``False``." + +msgid "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingRole` if the user is missing a role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "The name or ID of the role to check." +msgstr "The name or ID of the role to check." + +msgid "A :func:`.check` that is added that checks if the member has all of the permissions necessary." +msgstr "A :func:`.check` that is added that checks if the member has all of the permissions necessary." + +msgid "Note that this check operates on the current channel permissions, not the guild wide permissions." +msgstr "Note that this check operates on the current channel permissions, not the guild wide permissions." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." + +msgid "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.MissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "If the command is executed within a DM, it returns ``True``." + +msgid "An argument list of permissions to check for." +msgstr "An argument list of permissions to check for." + +msgid "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." +msgstr "Similar to :func:`.has_permissions`, but operates on guild wide permissions instead of the current channel permissions." + +msgid "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." +msgstr "If this check is called in a DM context, it will raise an exception, :exc:`.NoPrivateMessage`." + +msgid "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." +msgstr "A :func:`.check` that is added that checks if the member invoking the command has **any** of the roles specified. This means that if they have one out of the three roles specified, then this check will return `True`." + +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." + +msgid "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.MissingAnyRole` if the user is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "An argument list of names or IDs to check that the member has roles wise." + +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "Similar to :func:`.has_role` except checks if the bot itself has the role." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingRole` if the bot is missing the role, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" +msgstr "Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`" + +msgid "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." +msgstr "Similar to :func:`.has_permissions` except checks if the bot itself has the permissions listed." + +msgid "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.BotMissingPermissions` that is inherited from :exc:`.CheckFailure`." + +msgid "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." +msgstr "Similar to :func:`.has_guild_permissions`, but checks the bot members guild permissions." + +msgid "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." +msgstr "Similar to :func:`.has_any_role` except checks if the bot itself has any of the roles listed." + +msgid "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." +msgstr "This check raises one of two special exceptions, :exc:`.BotMissingAnyRole` if the bot is missing all roles, or :exc:`.NoPrivateMessage` if it is used in a private message. Both inherit from :exc:`.CheckFailure`." + +msgid "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." +msgstr "Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of generic :exc:`.CheckFailure`." + +msgid "A decorator that adds a cooldown to a command" +msgstr "A decorator that adds a cooldown to a command" + +msgid "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." +msgstr "A cooldown allows a command to only be used a specific amount of times in a specific time frame. These cooldowns can be based either on a per-guild, per-channel, per-user, per-role or global basis. Denoted by the third argument of ``type`` which must be of enum type :class:`.BucketType`." + +msgid "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." +msgstr "If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered in :func:`.on_command_error` and the local error handler." + +msgid "A command can only have a single cooldown." +msgstr "A command can only have a single cooldown." + +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "The number of times a command can be used before triggering a cooldown." + +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "The amount of seconds to wait for a cooldown when it's been triggered." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping. .. versionchanged:: 1.7 Callables are now supported for custom bucket types." + +msgid "The type of cooldown to have. If callable, should return a key for the mapping." +msgstr "The type of cooldown to have. If callable, should return a key for the mapping." + +msgid "Callables are now supported for custom bucket types." +msgstr "Callables are now supported for custom bucket types." + +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "A decorator that adds a dynamic cooldown to a command" + +msgid "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." +msgstr "This differs from :func:`.cooldown` in that it takes a function that accepts a single parameter of type :class:`.discord.Message` and must return a :class:`.Cooldown` or ``None``. If ``None`` is returned then that cooldown is effectively bypassed." + +msgid "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." +msgstr "A function that takes a message and returns a cooldown that will apply to this invocation or ``None`` if the cooldown should be bypassed." + +msgid "The type of cooldown to have." +msgstr "The type of cooldown to have." + +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "A decorator that adds a maximum concurrency to a command" + +msgid "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." +msgstr "This enables you to only allow a certain number of command invocations at the same time, for example if a command takes too long or if only one user can use it at a time. This differs from a cooldown in that there is no set waiting period or token bucket -- only a set number of people can run the command." + +msgid "The maximum number of invocations of this command that can be running at the same time." +msgstr "The maximum number of invocations of this command that can be running at the same time." + +msgid "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." +msgstr "The bucket that this concurrency is based on, e.g. ``BucketType.guild`` would allow it to be used up to ``number`` times per guild." + +msgid "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." +msgstr "Whether the command should wait for the queue to be over. If this is set to ``False`` then instead of waiting until the command can run again, the command raises :exc:`.MaxConcurrencyReached` to its error handler. If this is set to ``True`` then the command waits until it can be executed." + +msgid "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one before invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This allows you to refer to one after invoke hook for several commands that do not have to be within the same cog. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a guild context only. Basically, no private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NoPrivateMessage` that is inherited from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." +msgstr "A :func:`.check` that indicates this command must only be used in a DM context. Only private messages are allowed when using the command." + +msgid "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.PrivateMessageOnly` that is inherited from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "A :func:`.check` that checks if the person invoking this command is the owner of the bot." +msgstr "A :func:`.check` that checks if the person invoking this command is the owner of the bot." + +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "This is powered by :meth:`.Bot.is_owner`." + +msgid "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." +msgstr "This check raises a special exception, :exc:`.NotOwner` that is derived from :exc:`.CheckFailure`." + +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "A :func:`.check` that checks if the channel is a NSFW channel." + +msgid "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "This check raises a special exception, :exc:`.NSFWChannelRequired` that is derived from :exc:`.CheckFailure`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" + +msgid "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." +msgstr "Raise :exc:`.NSFWChannelRequired` instead of generic :exc:`.CheckFailure`. DM channels will also now pass this check." + +msgid "Cooldown" +msgstr "Cooldown" + +msgid "Represents a cooldown for a command." +msgstr "Represents a cooldown for a command." + +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "The total number of tokens available per :attr:`per` seconds." + +msgid "The length of the cooldown period in seconds." +msgstr "The length of the cooldown period in seconds." + +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "Returns the number of available tokens before rate limiting is applied." + +msgid "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to calculate tokens at. If not supplied then :func:`time.time()` is used." + +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "The number of tokens available before the cooldown is to be applied." + +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "Returns the time in seconds until the cooldown will be reset." + +msgid "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." +msgstr "The current time in seconds since Unix epoch. If not supplied, then :func:`time.time()` is used." + +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "The number of seconds to wait before this cooldown will be reset." + +msgid "Updates the cooldown rate limit." +msgstr "Updates the cooldown rate limit." + +msgid "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." +msgstr "The time in seconds since Unix epoch to update the rate limit at. If not supplied, then :func:`time.time()` is used." + +msgid "The retry-after time in seconds if rate limited." +msgstr "The retry-after time in seconds if rate limited." + +msgid "Optional[:class:`float`]" +msgstr "Optional[:class:`float`]" + +msgid "Reset the cooldown to its initial state." +msgstr "Reset the cooldown to its initial state." + +msgid "Creates a copy of this cooldown." +msgstr "Creates a copy of this cooldown." + +msgid "A new instance of this cooldown." +msgstr "A new instance of this cooldown." + +msgid ":class:`Cooldown`" +msgstr ":class:`Cooldown`" + +msgid "Context" +msgstr "Context" + +msgid "Represents the context in which a command is being invoked under." +msgstr "Represents the context in which a command is being invoked under." + +msgid "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." +msgstr "This class contains a lot of metadata to help you understand more about the invocation context. This class is not created manually and is instead passed around to commands as the first parameter." + +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "This class implements the :class:`~discord.abc.Messageable` ABC." + +msgid "The message that triggered the command being executed." +msgstr "The message that triggered the command being executed." + +msgid ":class:`.Message`" +msgstr ":class:`.Message`" + +msgid "The bot that contains the command being executed." +msgstr "The bot that contains the command being executed." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." +msgstr "The list of transformed arguments that were passed into the command. If this is accessed during the :func:`.on_command_error` event then this list could be incomplete." + +msgid ":class:`list`" +msgstr ":class:`list`" + +msgid "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." +msgstr "A dictionary of transformed arguments that were passed into the command. Similar to :attr:`args`\\, if this is accessed in the :func:`.on_command_error` event then this dict could be incomplete." + +msgid "The parameter that is currently being inspected and converted. This is only of use for within converters." +msgstr "The parameter that is currently being inspected and converted. This is only of use for within converters." + +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "Optional[:class:`inspect.Parameter`]" + +msgid "The prefix that was used to invoke the command." +msgstr "The prefix that was used to invoke the command." + +msgid "The command that is being invoked currently." +msgstr "The command that is being invoked currently." + +msgid "The command name that triggered this invocation. Useful for finding out which alias called the command." +msgstr "The command name that triggered this invocation. Useful for finding out which alias called the command." + +msgid "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." +msgstr "The command names of the parents that triggered this invocation. Useful for finding out which aliases called the command." + +msgid "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." +msgstr "For example in commands ``?a b c test``, the invoked parents are ``['a', 'b', 'c']``." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." +msgstr "The subcommand that was invoked. If no valid subcommand was invoked then this is equal to ``None``." + +msgid "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." +msgstr "The string that was attempted to call a subcommand. This does not have to point to a valid registered subcommand and could just point to a nonsense string. If nothing was passed to attempt a call to a subcommand then this is set to ``None``." + +msgid "A boolean that indicates if the command failed to be parsed, checked, or invoked." +msgstr "A boolean that indicates if the command failed to be parsed, checked, or invoked." + +msgid "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." +msgstr "Returns an :class:`~discord.AsyncIterator` that enables receiving the destination's message history." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." + +msgid "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." +msgstr "The number of messages to retrieve. If ``None``, retrieves every message in the channel. Note, however, that this would make it a slow operation." + +msgid "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages before this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve messages after this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time." + +msgid "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." +msgstr "Retrieve messages around this date or message. If a datetime is provided, it is recommended to use a UTC aware datetime. If the datetime is naive, it is assumed to be local time. When using this argument, the maximum limit is 101. Note that if the limit is an even number, then this will return at most limit + 1 messages." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- The message with the message data parsed." + +msgid "You do not have permissions to get channel message history." +msgstr "You do not have permissions to get channel message history." + +msgid "The request to get message history failed." +msgstr "The request to get message history failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Returns a context manager that allows you to type for an indefinite period of time." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" + +msgid "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." +msgstr "This is both a regular context manager and an async context manager. This means that both ``with`` and ``async with`` work with this." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Calls a command with the arguments given." +msgstr "Calls a command with the arguments given." + +msgid "This is useful if you want to just call the callback that a :class:`.Command` holds internally." +msgstr "This is useful if you want to just call the callback that a :class:`.Command` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function." + +msgid "You must take care in passing the proper arguments when using this function." +msgstr "You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid "Calls the command again." +msgstr "Calls the command again." + +msgid "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." +msgstr "This is similar to :meth:`~.Context.invoke` except that it bypasses checks, cooldowns, and error handlers." + +msgid "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." +msgstr "If you want to bypass :exc:`.UserInputError` derived exceptions, it is recommended to use the regular :meth:`~.Context.invoke` as it will work more naturally. After all, this will end up using the old arguments the user has used and will thus just fail again." + +msgid "Whether to call the before and after invoke hooks." +msgstr "Whether to call the before and after invoke hooks." + +msgid "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." +msgstr "Whether to start the call chain from the very beginning or where we left off (i.e. the command that caused the error). The default is to start where we left off." + +msgid "The context to reinvoke is not valid." +msgstr "The context to reinvoke is not valid." + +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "Checks if the invocation context is valid to be invoked with." + +msgid "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." +msgstr "The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of ``<@id>``." + +msgid "Returns the cog associated with this context's command. None if it does not exist." +msgstr "Returns the cog associated with this context's command. None if it does not exist." + +msgid "Returns the guild associated with this context's command. None if not available." +msgstr "Returns the guild associated with this context's command. None if not available." + +msgid "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." +msgstr "Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`." + +msgid "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" +msgstr "Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author`" + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." + +msgid "Shows the help command for the specified entity if given. The entity can be a command or a cog." +msgstr "Shows the help command for the specified entity if given. The entity can be a command or a cog." + +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "If no entity is given, then it'll show help for the entire bot." + +msgid "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." +msgstr "If the entity is a string, then it looks up whether it's a :class:`Cog` or a :class:`Command`." + +msgid "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." +msgstr "Due to the way this function works, instead of returning something similar to :meth:`~.commands.HelpCommand.command_not_found` this returns :class:`None` on bad input or no help command." + +msgid "The entity to show help for." +msgstr "The entity to show help for." + +msgid "The result of the help command, if any." +msgstr "The result of the help command, if any." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indicates whether you have the permissions to send the object(s)." + +msgid "An invalid type has been passed." +msgstr "An invalid type has been passed." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Retrieves a single :class:`~discord.Message` from the destination." + +msgid "The message ID to look for." +msgstr "The message ID to look for." + +msgid "The message asked for." +msgstr "The message asked for." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "The specified message was not found." +msgstr "The specified message was not found." + +msgid "You do not have the permissions required to get a message." +msgstr "You do not have the permissions required to get a message." + +msgid "Retrieving the message failed." +msgstr "Retrieving the message failed." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Retrieves all messages that are currently pinned in the channel." + +msgid "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." +msgstr "Due to a limitation with the Discord API, the :class:`.Message` objects returned by this method do not contain complete :attr:`.Message.reactions` data." + +msgid "The messages that are currently pinned." +msgstr "The messages that are currently pinned." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Retrieving the pinned messages failed." + +msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." +msgstr "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." + +msgid "The message that was sent." +msgstr "The message that was sent." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You do not have the proper permissions to send the message." +msgstr "You do not have the proper permissions to send the message." + +msgid "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." +msgstr "The ``files`` list is not of the appropriate size, or you specified both ``file`` and ``files``." + +msgid "Sends a message to the destination with the content given." +msgstr "Sends a message to the destination with the content given." + +msgid "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." +msgstr "The content must be a type that can convert to a string through ``str(content)``. If the content is set to ``None`` (the default), then the ``embed`` parameter must be provided." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`~discord.File` object. To upload multiple files, the ``files`` parameter should be used with a :class:`list` of :class:`~discord.File` objects. **Specifying both parameters will lead to an exception**." + +msgid "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." +msgstr "To upload a single embed, the ``embed`` parameter should be used with a single :class:`~discord.Embed` object. To upload multiple embeds, the ``embeds`` parameter should be used with a :class:`list` of :class:`~discord.Embed` objects. **Specifying both parameters will lead to an exception**." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." +msgstr "The nonce to use for sending this message. If the message was successfully sent, then the message will have a nonce with this value." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Whether :attr:`nonce` is enforced to be validated." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent. If the deletion fails, then it is silently ignored." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. .. versionadded:: 1.6" + +msgid "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying, this can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "A Discord UI View to add to the message." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "A list of embeds to upload. Must be a maximum of 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "A list of stickers to upload. Must be a maximum of 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Whether to suppress push and desktop notifications for the message." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." +msgstr "The ``files`` list is not of the appropriate size, you specified both ``file`` and ``files``, or you specified both ``embed`` and ``embeds``, or the ``reference`` object is not a :class:`~discord.Message`, :class:`~discord.MessageReference` or :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Triggers a *typing* indicator to the destination." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "*Typing* indicator will go away after 10 seconds, or after a message is sent." + +msgid "Converters" +msgstr "Converters" + +msgid "The base class of custom converters that require the :class:`.Context` to be passed to be useful." +msgstr "The base class of custom converters that require the :class:`.Context` to be passed to be useful." + +msgid "This allows you to implement converters that function similar to the special cased ``discord`` classes." +msgstr "This allows you to implement converters that function similar to the special cased ``discord`` classes." + +msgid "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." +msgstr "Classes that derive from this should override the :meth:`~.Converter.convert` method to do its conversion logic. This method must be a :ref:`coroutine `." + +msgid "The method to override to do conversion logic." +msgstr "The method to override to do conversion logic." + +msgid "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." +msgstr "If an error is found while converting, it is recommended to raise a :exc:`.CommandError` derived exception as it will properly propagate to the error handlers." + +msgid "The invocation context that the argument is being used in." +msgstr "The invocation context that the argument is being used in." + +msgid "The argument that is being converted." +msgstr "The argument that is being converted." + +msgid "A generic exception occurred when converting the argument." +msgstr "A generic exception occurred when converting the argument." + +msgid "The converter failed to convert the argument." +msgstr "The converter failed to convert the argument." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" + +msgid "Converts to a :class:`~discord.Object`." +msgstr "Converts to a :class:`~discord.Object`." + +msgid "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." +msgstr "The argument must follow the valid ID or mention formats (e.g. `<@80088516616269824>`)." + +msgid "The lookup strategy is as follows (in order):" +msgstr "The lookup strategy is as follows (in order):" + +msgid "Lookup by ID." +msgstr "Lookup by ID." + +msgid "Lookup by member, role, or channel mention." +msgstr "Lookup by member, role, or channel mention." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" + +msgid "Converts to a :class:`~discord.Member`." +msgstr "Converts to a :class:`~discord.Member`." + +msgid "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." +msgstr "All lookups are via the local guild. If in a DM context, then the lookup is done by the global cache." + +msgid "Lookup by mention." +msgstr "Lookup by mention." + +msgid "Lookup by name#discrim" +msgstr "Lookup by name#discrim" + +msgid "Lookup by name" +msgstr "Lookup by name" + +msgid "Lookup by nickname" +msgstr "Lookup by nickname" + +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." +msgstr "This converter now lazily fetches members from the gateway and HTTP APIs, optionally caching the result if :attr:`.MemberCacheFlags.joined` is enabled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" + +msgid "Converts to a :class:`~discord.User`." +msgstr "Converts to a :class:`~discord.User`." + +msgid "All lookups are via the global user cache." +msgstr "All lookups are via the global user cache." + +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" + +msgid "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." +msgstr "This converter now lazily fetches users from the HTTP APIs if an ID is passed, and it's not available in cache." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" + +msgid "Converts to a :class:`discord.Message`." +msgstr "Converts to a :class:`discord.Message`." + +msgid "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "Lookup by message ID (the message **must** be in the context channel)" + +msgid "Lookup by message URL" +msgstr "Lookup by message URL" + +msgid "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or :exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" + +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "Converts to a :class:`discord.PartialMessage`." + +msgid "The creation strategy is as follows (in order):" +msgstr "The creation strategy is as follows (in order):" + +msgid "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" +msgstr "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy ID\")" + +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "By message ID (The message is assumed to be in the context channel.)" + +msgid "By message URL" +msgstr "By message URL" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" + +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "Converts to a :class:`~discord.abc.GuildChannel`." + +msgid "Lookup by name." +msgstr "Lookup by name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" + +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "Converts to a :class:`~discord.TextChannel`." + +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" + +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "Converts to a :class:`~discord.VoiceChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" + +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "Converts to a :class:`~discord.StageChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" + +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "Converts to a :class:`~discord.CategoryChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" + +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "Converts to a :class:`~discord.ForumChannel`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" + +msgid "Converts to a :class:`~discord.Invite`." +msgstr "Converts to a :class:`~discord.Invite`." + +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." + +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" + +msgid "Converts to a :class:`~discord.Guild`." +msgstr "Converts to a :class:`~discord.Guild`." + +msgid "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." +msgstr "Lookup by name. (There is no disambiguation for Guilds with multiple matching names)." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" + +msgid "Converts to a :class:`~discord.Role`." +msgstr "Converts to a :class:`~discord.Role`." + +msgid "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." +msgstr "All lookups are via the local guild. If in a DM context, the converter raises :exc:`.NoPrivateMessage` exception." + +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" + +msgid "Converts to :class:`~discord.Game`." +msgstr "Converts to :class:`~discord.Game`." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" + +msgid "Converts to a :class:`~discord.Colour`." +msgstr "Converts to a :class:`~discord.Colour`." + +msgid "Add an alias named ColorConverter" +msgstr "Add an alias named ColorConverter" + +msgid "The following formats are accepted:" +msgstr "The following formats are accepted:" + +msgid "``0x``" +msgstr "``0x``" + +msgid "``#``" +msgstr "``#``" + +msgid "``0x#``" +msgstr "``0x#``" + +msgid "``rgb(, , )``" +msgstr "``rgb(, , )``" + +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "Any of the ``classmethod`` in :class:`~discord.Colour`" + +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "The ``_`` in the name can be optionally replaced with spaces." + +msgid "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." +msgstr "Like CSS, ```` can be either 0-255 or 0-100% and ```` can be either a 6 digit hex number or a 3 digit hex shortcut (e.g. #fff)." + +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" + +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "Added support for ``rgb`` function and 3-digit hex shortcuts" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" + +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "Converts to a :class:`~discord.Emoji`." + +msgid "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." +msgstr "All lookups are done for the local guild first, if available. If that lookup fails, then it checks the client's global cache." + +msgid "Lookup by extracting ID from the emoji." +msgstr "Lookup by extracting ID from the emoji." + +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" + +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "Converts to a :class:`~discord.PartialEmoji`." + +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "This is done by extracting the animated flag, name and ID from the emoji." + +msgid "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" +msgstr "Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument`" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" + +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "Coverts to a :class:`~discord.Thread`." + +msgid "All lookups are via the local guild." +msgstr "All lookups are via the local guild." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" + +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "Converts to a :class:`~discord.GuildSticker`." + +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "1. Lookup by ID. 3. Lookup by name" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" + +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "Converts the argument to mention scrubbed version of said content." + +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "This behaves similarly to :attr:`~discord.Message.clean_content`." + +msgid "Whether to clean channel mentions." +msgstr "Whether to clean channel mentions." + +msgid "Whether to use nicknames when transforming mentions." +msgstr "Whether to use nicknames when transforming mentions." + +msgid "Whether to also escape special markdown characters." +msgstr "Whether to also escape special markdown characters." + +msgid "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" +msgstr "Whether to also remove special markdown characters. This option is not supported with ``escape_markdown``" + +msgid "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." +msgstr "A special converter that greedily consumes arguments until it can't. As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing." + +msgid "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." +msgstr "When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly." + +msgid "For example, in the following code:" +msgstr "For example, in the following code:" + +msgid "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." +msgstr "An invocation of ``[p]test 1 2 3 4 5 6 hello`` would pass ``numbers`` with ``[1, 2, 3, 4, 5, 6]`` and ``reason`` with ``hello``\\." + +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "For more information, check :ref:`ext_commands_special_converters`." + +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "Runs converters for a given converter, argument, and parameter." + +msgid "This function does the same work that the library does under the hood." +msgstr "This function does the same work that the library does under the hood." + +msgid "The invocation context to run the converters under." +msgstr "The invocation context to run the converters under." + +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "The converter to run, this corresponds to the annotation in the function." + +msgid "The argument to convert to." +msgstr "The argument to convert to." + +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "The parameter being converted. This is mainly for error reporting." + +msgid "The resulting conversion." +msgstr "The resulting conversion." + +msgid "The converter failed to convert." +msgstr "The converter failed to convert." + +msgid "Flag Converter" +msgstr "Flag Converter" + +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "A converter that allows for a user-friendly flag syntax." + +msgid "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." +msgstr "The flags are defined using :pep:`526` type annotations similar to the :mod:`dataclasses` Python module. For more information on how this converter works, check the appropriate :ref:`documentation `." + +msgid "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." +msgstr "Returns an iterator of ``(flag_name, flag_value)`` pairs. This allows it to be, for example, constructed as a dict or a list of pairs. Note that aliases are not shown." + +msgid "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." +msgstr "A class parameter to toggle case insensitivity of the flag parsing. If ``True`` then flags are parsed in a case-insensitive manner. Defaults to ``False``." + +msgid "The prefix that all flags must be prefixed with. By default, there is no prefix." +msgstr "The prefix that all flags must be prefixed with. By default, there is no prefix." + +msgid "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." +msgstr "The delimiter that separates a flag's argument from the flag's name. By default, this is ``:``." + +msgid "A mapping of flag name to flag object this converter has." +msgstr "A mapping of flag name to flag object this converter has." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\, \\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" + +msgid "The method that actually converters an argument to the flag mapping." +msgstr "The method that actually converters an argument to the flag mapping." + +msgid "The flag converter class." +msgstr "The flag converter class." + +msgid "The argument to convert from." +msgstr "The argument to convert from." + +msgid "The flag converter instance with all flags parsed." +msgstr "The flag converter instance with all flags parsed." + +msgid ":class:`FlagConverter`" +msgstr ":class:`FlagConverter`" + +msgid "A flag related parsing error." +msgstr "A flag related parsing error." + +msgid "A command related error." +msgstr "A command related error." + +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "Represents a flag parameter for :class:`FlagConverter`." + +msgid "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." +msgstr "The :func:`~discord.ext.commands.flag` function helps create these flag objects, but it is not necessary to do so. These cannot be constructed manually." + +msgid "The name of the flag." +msgstr "The name of the flag." + +msgid "The aliases of the flag name." +msgstr "The aliases of the flag name." + +msgid "The attribute in the class that corresponds to this flag." +msgstr "The attribute in the class that corresponds to this flag." + +msgid "The default value of the flag, if available." +msgstr "The default value of the flag, if available." + +msgid "Any" +msgstr "Any" + +msgid "The underlying evaluated annotation of the flag." +msgstr "The underlying evaluated annotation of the flag." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments." + +msgid "Whether multiple given values overrides the previous value." +msgstr "Whether multiple given values overrides the previous value." + +msgid "Whether the flag is required." +msgstr "Whether the flag is required." + +msgid "A required flag has no default value." +msgstr "A required flag has no default value." + +msgid "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." +msgstr "Override default functionality and parameters of the underlying :class:`FlagConverter` class attributes." + +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "The flag name. If not given, defaults to the attribute name." + +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "Aliases to the flag name. If not given, no aliases are set." + +msgid "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." +msgstr "The default parameter. This could be either a value or a callable that takes :class:`Context` as its sole parameter. If not given then it defaults to the default value given to the attribute." + +msgid "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." +msgstr "The maximum number of arguments the flag can accept. A negative value indicates an unlimited amount of arguments. The default value depends on the annotation given." + +msgid "Whether multiple given values overrides the previous value. The default value depends on the annotation given." +msgstr "Whether multiple given values overrides the previous value. The default value depends on the annotation given." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Exceptions" +msgstr "Exceptions" + +msgid "The base exception type for all command related errors." +msgstr "The base exception type for all command related errors." + +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "This inherits from :exc:`discord.DiscordException`." + +msgid "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." +msgstr "This exception and exceptions inherited from it are handled in a special way as they are caught and passed into a special event from :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "Exception raised when a Converter class raises non-CommandError." + +msgid "This inherits from :exc:`CommandError`." +msgstr "This inherits from :exc:`CommandError`." + +msgid "The converter that failed." +msgstr "The converter that failed." + +msgid ":class:`discord.ext.commands.Converter`" +msgstr ":class:`discord.ext.commands.Converter`" + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "The original exception that was raised. You can also get this via the ``__cause__`` attribute." + +msgid ":exc:`Exception`" +msgstr ":exc:`Exception`" + +msgid "Exception raised when parsing a command and a parameter that is required is not encountered." +msgstr "Exception raised when parsing a command and a parameter that is required is not encountered." + +msgid "This inherits from :exc:`UserInputError`" +msgstr "This inherits from :exc:`UserInputError`" + +msgid "The argument that is missing." +msgstr "The argument that is missing." + +msgid ":class:`inspect.Parameter`" +msgstr ":class:`inspect.Parameter`" + +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "An exception raised when the parser fails to parse a user's input." + +msgid "This inherits from :exc:`UserInputError`." +msgstr "This inherits from :exc:`UserInputError`." + +msgid "There are child classes that implement more granular parsing errors for i18n purposes." +msgstr "There are child classes that implement more granular parsing errors for i18n purposes." + +msgid "An exception raised when the parser encounters a quote mark inside a non-quoted string." +msgstr "An exception raised when the parser encounters a quote mark inside a non-quoted string." + +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "This inherits from :exc:`ArgumentParsingError`." + +msgid "The quote mark that was found inside the non-quoted string." +msgstr "The quote mark that was found inside the non-quoted string." + +msgid "An exception raised when a space is expected after the closing quote in a string but a different character is found." +msgstr "An exception raised when a space is expected after the closing quote in a string but a different character is found." + +msgid "The character found instead of the expected string." +msgstr "The character found instead of the expected string." + +msgid "An exception raised when a quote character is expected but not found." +msgstr "An exception raised when a quote character is expected but not found." + +msgid "The quote character expected." +msgstr "The quote character expected." + +msgid "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." +msgstr "Exception raised when a parsing or conversion failure is encountered on an argument to pass into a command." + +msgid "Exception raised when a :data:`typing.Union` converter fails for all its associated types." +msgstr "Exception raised when a :data:`typing.Union` converter fails for all its associated types." + +msgid "The parameter that failed being converted." +msgstr "The parameter that failed being converted." + +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "A tuple of converters attempted in conversion, in order of failure." + +msgid "Tuple[Type, ``...``]" +msgstr "Tuple[Type, ``...``]" + +msgid "A list of errors that were caught from failing the conversion." +msgstr "A list of errors that were caught from failing the conversion." + +msgid "List[:class:`CommandError`]" +msgstr "List[:class:`CommandError`]" + +msgid "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." +msgstr "Exception raised when a :data:`typing.Literal` converter fails for all its associated values." + +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "A tuple of values compared against in conversion, in order of failure." + +msgid "Tuple[Any, ``...``]" +msgstr "Tuple[Any, ``...``]" + +msgid "Exception raised when an operation does not work outside of private message contexts." +msgstr "Exception raised when an operation does not work outside of private message contexts." + +msgid "This inherits from :exc:`CheckFailure`" +msgstr "This inherits from :exc:`CheckFailure`" + +msgid "Exception raised when an operation does not work in private message contexts." +msgstr "Exception raised when an operation does not work in private message contexts." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Exception raised when the predicates in :attr:`.Command.checks` have failed." + +msgid "This inherits from :exc:`CommandError`" +msgstr "This inherits from :exc:`CommandError`" + +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "Exception raised when all predicates in :func:`check_any` fail." + +msgid "This inherits from :exc:`CheckFailure`." +msgstr "This inherits from :exc:`CheckFailure`." + +msgid "A list of errors that were caught during execution." +msgstr "A list of errors that were caught during execution." + +msgid "List[:class:`CheckFailure`]" +msgstr "List[:class:`CheckFailure`]" + +msgid "A list of check predicates that failed." +msgstr "A list of check predicates that failed." + +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`Context`], :class:`bool`]]" + +msgid "Exception raised when a command is attempted to be invoked but no command under that name is found." +msgstr "Exception raised when a command is attempted to be invoked but no command under that name is found." + +msgid "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." +msgstr "This is not raised for invalid subcommands, rather just the initial main command that is attempted to be invoked." + +msgid "Exception raised when the command being invoked is disabled." +msgstr "Exception raised when the command being invoked is disabled." + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Exception raised when the command being invoked raised an exception." + +msgid "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "Exception raised when the command was passed too many arguments and its :attr:`.Command.ignore_extra` attribute was not set to ``True``." + +msgid "The base exception type for errors that involve errors regarding user input." +msgstr "The base exception type for errors that involve errors regarding user input." + +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "Exception raised when the command being invoked is on cooldown." + +msgid "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." +msgstr "A class with attributes ``rate`` and ``per`` similar to the :func:`.cooldown` decorator." + +msgid ":class:`.Cooldown`" +msgstr ":class:`.Cooldown`" + +msgid "The type associated with the cooldown." +msgstr "The type associated with the cooldown." + +msgid ":class:`BucketType`" +msgstr ":class:`BucketType`" + +msgid "The amount of seconds to wait before you can retry again." +msgstr "The amount of seconds to wait before you can retry again." + +msgid "Exception raised when the command being invoked has reached its maximum concurrency." +msgstr "Exception raised when the command being invoked has reached its maximum concurrency." + +msgid "The maximum number of concurrent invokers allowed." +msgstr "The maximum number of concurrent invokers allowed." + +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "The bucket type passed to the :func:`.max_concurrency` decorator." + +msgid ":class:`.BucketType`" +msgstr ":class:`.BucketType`" + +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "Exception raised when the message author is not the owner of the bot." + +msgid "Exception raised when the message provided was not found in the channel." +msgstr "Exception raised when the message provided was not found in the channel." + +msgid "This inherits from :exc:`BadArgument`" +msgstr "This inherits from :exc:`BadArgument`" + +msgid "The message supplied by the caller that was not found" +msgstr "The message supplied by the caller that was not found" + +msgid "Exception raised when the member provided was not found in the bot's cache." +msgstr "Exception raised when the member provided was not found in the bot's cache." + +msgid "The member supplied by the caller that was not found" +msgstr "The member supplied by the caller that was not found" + +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "Exception raised when the guild provided was not found in the bot's cache." + +msgid "The guild supplied by the called that was not found" +msgstr "The guild supplied by the called that was not found" + +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "Exception raised when the user provided was not found in the bot's cache." + +msgid "The user supplied by the caller that was not found" +msgstr "The user supplied by the caller that was not found" + +msgid "Exception raised when the bot can not find the channel." +msgstr "Exception raised when the bot can not find the channel." + +msgid "The channel supplied by the caller that was not found" +msgstr "The channel supplied by the caller that was not found" + +msgid "Exception raised when the bot does not have permission to read messages in the channel." +msgstr "Exception raised when the bot does not have permission to read messages in the channel." + +msgid "The channel supplied by the caller that was not readable" +msgstr "The channel supplied by the caller that was not readable" + +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" + +msgid "Exception raised when the bot can not find the thread." +msgstr "Exception raised when the bot can not find the thread." + +msgid "The thread supplied by the caller that was not found" +msgstr "The thread supplied by the caller that was not found" + +msgid "Exception raised when the colour is not valid." +msgstr "Exception raised when the colour is not valid." + +msgid "The colour supplied by the caller that was not valid" +msgstr "The colour supplied by the caller that was not valid" + +msgid "Exception raised when the bot can not find the role." +msgstr "Exception raised when the bot can not find the role." + +msgid "The role supplied by the caller that was not found" +msgstr "The role supplied by the caller that was not found" + +msgid "Exception raised when the invite is invalid or expired." +msgstr "Exception raised when the invite is invalid or expired." + +msgid "Exception raised when the bot can not find the emoji." +msgstr "Exception raised when the bot can not find the emoji." + +msgid "The emoji supplied by the caller that was not found" +msgstr "The emoji supplied by the caller that was not found" + +msgid "Exception raised when the emoji provided does not match the correct format." +msgstr "Exception raised when the emoji provided does not match the correct format." + +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "The emoji supplied by the caller that did not match the regex" + +msgid "Exception raised when the bot can not find the sticker." +msgstr "Exception raised when the bot can not find the sticker." + +msgid "The sticker supplied by the caller that was not found" +msgstr "The sticker supplied by the caller that was not found" + +msgid "Exception raised when a boolean argument was not convertible." +msgstr "Exception raised when a boolean argument was not convertible." + +msgid "The boolean argument supplied by the caller that is not in the predefined list" +msgstr "The boolean argument supplied by the caller that is not in the predefined list" + +msgid "Exception raised when the command invoker lacks permissions to run a command." +msgstr "Exception raised when the command invoker lacks permissions to run a command." + +msgid "The required permissions that are missing." +msgstr "The required permissions that are missing." + +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "Exception raised when the bot's member lacks permissions to run a command." + +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "Exception raised when the command invoker lacks a role to run a command." + +msgid "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." +msgstr "The required role that is missing. This is the parameter passed to :func:`~.commands.has_role`." + +msgid "Union[:class:`str`, :class:`int`]" +msgstr "Union[:class:`str`, :class:`int`]" + +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "Exception raised when the bot's member lacks a role to run a command." + +msgid "Exception raised when the command invoker lacks any of the roles specified to run a command." +msgstr "Exception raised when the command invoker lacks any of the roles specified to run a command." + +msgid "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the invoker is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "List[Union[:class:`str`, :class:`int`]]" + +msgid "Exception raised when the bot's member lacks any of the roles specified to run a command." +msgstr "Exception raised when the bot's member lacks any of the roles specified to run a command." + +msgid "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." +msgstr "The roles that the bot's member is missing. These are the parameters passed to :func:`~.commands.has_any_role`." + +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "Exception raised when a channel does not have the required NSFW setting." + +msgid "The channel that does not have NSFW enabled." +msgstr "The channel that does not have NSFW enabled." + +msgid "The base exception type for all flag parsing related errors." +msgstr "The base exception type for all flag parsing related errors." + +msgid "This inherits from :exc:`BadArgument`." +msgstr "This inherits from :exc:`BadArgument`." + +msgid "An exception raised when a flag failed to convert a value." +msgstr "An exception raised when a flag failed to convert a value." + +msgid "This inherits from :exc:`FlagError`" +msgstr "This inherits from :exc:`FlagError`" + +msgid "The flag that failed to convert." +msgstr "The flag that failed to convert." + +msgid ":class:`~discord.ext.commands.Flag`" +msgstr ":class:`~discord.ext.commands.Flag`" + +msgid "An exception raised when a flag did not get a value." +msgstr "An exception raised when a flag did not get a value." + +msgid "The flag that did not get a value." +msgstr "The flag that did not get a value." + +msgid "An exception raised when a flag has received too many values." +msgstr "An exception raised when a flag has received too many values." + +msgid "This inherits from :exc:`FlagError`." +msgstr "This inherits from :exc:`FlagError`." + +msgid "The flag that received too many values." +msgstr "The flag that received too many values." + +msgid "The values that were passed." +msgstr "The values that were passed." + +msgid "An exception raised when a required flag was not given." +msgstr "An exception raised when a required flag was not given." + +msgid "The required flag that was not found." +msgstr "The required flag that was not found." + +msgid "An exception raised when the command can't be added because the name is already taken by a different command." +msgstr "An exception raised when the command can't be added because the name is already taken by a different command." + +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "This inherits from :exc:`discord.ClientException`" + +msgid "The command name that had the error." +msgstr "The command name that had the error." + +msgid "Whether the name that conflicts is an alias of the command we try to add." +msgstr "Whether the name that conflicts is an alias of the command we try to add." + +msgid "Exception Hierarchy" +msgstr "Exception Hierarchy" + +msgid ":exc:`~.DiscordException`" +msgstr ":exc:`~.DiscordException`" + +msgid ":exc:`~.commands.CommandError`" +msgstr ":exc:`~.commands.CommandError`" + +msgid ":exc:`~.commands.ConversionError`" +msgstr ":exc:`~.commands.ConversionError`" + +msgid ":exc:`~.commands.UserInputError`" +msgstr ":exc:`~.commands.UserInputError`" + +msgid ":exc:`~.commands.MissingRequiredArgument`" +msgstr ":exc:`~.commands.MissingRequiredArgument`" + +msgid ":exc:`~.commands.TooManyArguments`" +msgstr ":exc:`~.commands.TooManyArguments`" + +msgid ":exc:`~.commands.BadArgument`" +msgstr ":exc:`~.commands.BadArgument`" + +msgid ":exc:`~.commands.MessageNotFound`" +msgstr ":exc:`~.commands.MessageNotFound`" + +msgid ":exc:`~.commands.MemberNotFound`" +msgstr ":exc:`~.commands.MemberNotFound`" + +msgid ":exc:`~.commands.GuildNotFound`" +msgstr ":exc:`~.commands.GuildNotFound`" + +msgid ":exc:`~.commands.UserNotFound`" +msgstr ":exc:`~.commands.UserNotFound`" + +msgid ":exc:`~.commands.ChannelNotFound`" +msgstr ":exc:`~.commands.ChannelNotFound`" + +msgid ":exc:`~.commands.ChannelNotReadable`" +msgstr ":exc:`~.commands.ChannelNotReadable`" + +msgid ":exc:`~.commands.BadColourArgument`" +msgstr ":exc:`~.commands.BadColourArgument`" + +msgid ":exc:`~.commands.RoleNotFound`" +msgstr ":exc:`~.commands.RoleNotFound`" + +msgid ":exc:`~.commands.BadInviteArgument`" +msgstr ":exc:`~.commands.BadInviteArgument`" + +msgid ":exc:`~.commands.EmojiNotFound`" +msgstr ":exc:`~.commands.EmojiNotFound`" + +msgid ":exc:`~.commands.GuildStickerNotFound`" +msgstr ":exc:`~.commands.GuildStickerNotFound`" + +msgid ":exc:`~.commands.PartialEmojiConversionFailure`" +msgstr ":exc:`~.commands.PartialEmojiConversionFailure`" + +msgid ":exc:`~.commands.BadBoolArgument`" +msgstr ":exc:`~.commands.BadBoolArgument`" + +msgid ":exc:`~.commands.ThreadNotFound`" +msgstr ":exc:`~.commands.ThreadNotFound`" + +msgid ":exc:`~.commands.FlagError`" +msgstr ":exc:`~.commands.FlagError`" + +msgid ":exc:`~.commands.BadFlagArgument`" +msgstr ":exc:`~.commands.BadFlagArgument`" + +msgid ":exc:`~.commands.MissingFlagArgument`" +msgstr ":exc:`~.commands.MissingFlagArgument`" + +msgid ":exc:`~.commands.TooManyFlags`" +msgstr ":exc:`~.commands.TooManyFlags`" + +msgid ":exc:`~.commands.MissingRequiredFlag`" +msgstr ":exc:`~.commands.MissingRequiredFlag`" + +msgid ":exc:`~.commands.BadUnionArgument`" +msgstr ":exc:`~.commands.BadUnionArgument`" + +msgid ":exc:`~.commands.BadLiteralArgument`" +msgstr ":exc:`~.commands.BadLiteralArgument`" + +msgid ":exc:`~.commands.ArgumentParsingError`" +msgstr ":exc:`~.commands.ArgumentParsingError`" + +msgid ":exc:`~.commands.UnexpectedQuoteError`" +msgstr ":exc:`~.commands.UnexpectedQuoteError`" + +msgid ":exc:`~.commands.InvalidEndOfQuotedStringError`" +msgstr ":exc:`~.commands.InvalidEndOfQuotedStringError`" + +msgid ":exc:`~.commands.ExpectedClosingQuoteError`" +msgstr ":exc:`~.commands.ExpectedClosingQuoteError`" + +msgid ":exc:`~.commands.CommandNotFound`" +msgstr ":exc:`~.commands.CommandNotFound`" + +msgid ":exc:`~.commands.CheckFailure`" +msgstr ":exc:`~.commands.CheckFailure`" + +msgid ":exc:`~.commands.CheckAnyFailure`" +msgstr ":exc:`~.commands.CheckAnyFailure`" + +msgid ":exc:`~.commands.PrivateMessageOnly`" +msgstr ":exc:`~.commands.PrivateMessageOnly`" + +msgid ":exc:`~.commands.NoPrivateMessage`" +msgstr ":exc:`~.commands.NoPrivateMessage`" + +msgid ":exc:`~.commands.NotOwner`" +msgstr ":exc:`~.commands.NotOwner`" + +msgid ":exc:`~.commands.MissingPermissions`" +msgstr ":exc:`~.commands.MissingPermissions`" + +msgid ":exc:`~.commands.BotMissingPermissions`" +msgstr ":exc:`~.commands.BotMissingPermissions`" + +msgid ":exc:`~.commands.MissingRole`" +msgstr ":exc:`~.commands.MissingRole`" + +msgid ":exc:`~.commands.BotMissingRole`" +msgstr ":exc:`~.commands.BotMissingRole`" + +msgid ":exc:`~.commands.MissingAnyRole`" +msgstr ":exc:`~.commands.MissingAnyRole`" + +msgid ":exc:`~.commands.BotMissingAnyRole`" +msgstr ":exc:`~.commands.BotMissingAnyRole`" + +msgid ":exc:`~.commands.NSFWChannelRequired`" +msgstr ":exc:`~.commands.NSFWChannelRequired`" + +msgid ":exc:`~.commands.DisabledCommand`" +msgstr ":exc:`~.commands.DisabledCommand`" + +msgid ":exc:`~.commands.CommandInvokeError`" +msgstr ":exc:`~.commands.CommandInvokeError`" + +msgid ":exc:`~.commands.CommandOnCooldown`" +msgstr ":exc:`~.commands.CommandOnCooldown`" + +msgid ":exc:`~.commands.MaxConcurrencyReached`" +msgstr ":exc:`~.commands.MaxConcurrencyReached`" + +msgid ":exc:`~.ClientException`" +msgstr ":exc:`~.ClientException`" + +msgid ":exc:`~.commands.CommandRegistrationError`" +msgstr ":exc:`~.commands.CommandRegistrationError`" + diff --git a/docs/locales/zh/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/zh/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..324861b347 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." +msgstr "There comes a point in your bot's development when you want to organize a collection of commands, listeners, and some state into one class. Cogs allow you to do just that." + +msgid "The gist:" +msgstr "The gist:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Each cog is a Python class that subclasses :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Every command is marked with the :func:`.commands.command` decorator." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Cogs are then registered with the :meth:`.Bot.add_cog` call." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Quick Example" + +msgid "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." +msgstr "This example cog defines a ``Greetings`` category for your commands, with a single :ref:`command ` named ``hello`` as well as a listener to listen to an :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "A couple of technical notes to take into consideration:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." +msgstr "The name of the cog is automatically derived from the class name but can be overridden. See :ref:`ext_commands_cogs_meta_options`." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." + +msgid "Cog Registration" +msgstr "Cog Registration" + +msgid "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." +msgstr "Once you have defined your cogs, you need to tell the bot to register the cogs to be used. We do this via the :meth:`~.commands.Bot.add_cog` method." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "This binds the cog to the bot, adding all commands and listeners to the bot automatically." + +msgid "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." +msgstr "Note that we reference the cog by name, which we can override through :ref:`ext_commands_cogs_meta_options`. So if we ever want to remove the cog eventually, we would have to do the following." + +msgid "Using Cogs" +msgstr "Using Cogs" + +msgid "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" +msgstr "Just as we remove a cog by its name, we can also retrieve it by its name as well. This allows us to use a cog as an inter-command communication protocol to share data. For example:" + +msgid "Special Methods" +msgstr "Special Methods" + +msgid "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." +msgstr "As cogs get more complicated and have more commands, there comes a point where we want to customise the behaviour of the entire cog or bot." + +msgid "They are as follows:" +msgstr "They are as follows:" + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid ":meth:`.Cog.cog_before_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke`" + +msgid ":meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_after_invoke`" + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "You can visit the reference to get more detail." +msgstr "You can visit the reference to get more detail." + +msgid "Meta Options" +msgstr "Meta Options" + +msgid "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" +msgstr "At the heart of a cog resides a metaclass, :class:`.commands.CogMeta`, which can take various options to customise some of the behaviour. To do this, we pass keyword arguments to the class definition line. For example, to change the cog name we can pass the ``name`` keyword argument as follows:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Inspection" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" + +msgid "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" +msgstr "To do the same with listeners, we can query them with :meth:`.Cog.get_listeners`. This returns a list of tuples -- the first element being the listener name and the second one being the actual function itself. ::" + diff --git a/docs/locales/zh/LC_MESSAGES/ext/commands/commands.po b/docs/locales/zh/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..85b41501d1 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Commands" +msgstr "Commands" + +msgid "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." +msgstr "One of the most appealing aspects of the command extension is how easy it is to define commands and how you can arbitrarily nest groups and commands to have a rich sub-command system." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." + +msgid "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." +msgstr "Commands are defined by attaching it to a regular Python function. The command is then invoked by the user using a similar signature to the Python function." + +msgid "For example, in the given command definition:" +msgstr "For example, in the given command definition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "With the following prefix (``$``), it would be invoked by the user via:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." + +msgid "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." +msgstr "There are two ways of registering a command. The first one is by using :meth:`.Bot.command` decorator, as seen in the example above. The second is using the :func:`~ext.commands.command` decorator followed by :meth:`.Bot.add_command` on the instance." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Essentially, these two are equivalent: ::" + +msgid "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." +msgstr "Since the :meth:`.Bot.command` decorator is shorter and easier to comprehend, it will be the one used throughout the documentation here." + +msgid "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" +msgstr "Any parameter that is accepted by the :class:`.Command` constructor can be passed into the decorator. For example, to change the name to something other than the function would be as simple as doing this:" + +msgid "Parameters" +msgstr "Parameters" + +msgid "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." +msgstr "Since we define commands by making Python functions, we also define the argument passing behaviour by the function parameters." + +msgid "Certain parameter types do different things in the user side and most forms of parameter types are supported." +msgstr "Certain parameter types do different things in the user side and most forms of parameter types are supported." + +msgid "Positional" +msgstr "Positional" + +msgid "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" +msgstr "The most basic form of parameter passing is the positional parameter. This is where we pass a parameter as-is:" + +msgid "On the bot using side, you can provide positional arguments by just passing a regular string:" +msgstr "On the bot using side, you can provide positional arguments by just passing a regular string:" + +msgid "To make use of a word with spaces in between, you should quote it:" +msgstr "To make use of a word with spaces in between, you should quote it:" + +msgid "As a note of warning, if you omit the quotes, you will only get the first word:" +msgstr "As a note of warning, if you omit the quotes, you will only get the first word:" + +msgid "Since positional arguments are just regular Python arguments, you can have as many as you want:" +msgstr "Since positional arguments are just regular Python arguments, you can have as many as you want:" + +msgid "Variable" +msgstr "Variable" + +msgid "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" +msgstr "Sometimes you want users to pass in an undetermined number of parameters. The library supports this similar to how variable list parameters are done in Python:" + +msgid "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." +msgstr "This allows our user to accept either one or many arguments as they please. This works similar to positional arguments, so multi-word parameters should be quoted." + +msgid "For example, on the bot side:" +msgstr "For example, on the bot side:" + +msgid "If the user wants to input a multi-word argument, they have to quote it like earlier:" +msgstr "If the user wants to input a multi-word argument, they have to quote it like earlier:" + +msgid "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" +msgstr "Do note that similar to the Python function behaviour, a user can technically pass no arguments at all:" + +msgid "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." +msgstr "Since the ``args`` variable is a :class:`py:tuple`, you can do anything you would usually do with one." + +msgid "Keyword-Only Arguments" +msgstr "Keyword-Only Arguments" + +msgid "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" +msgstr "When you want to handle parsing of the argument yourself or do not feel like you want to wrap multi-word user input into quotes, you can ask the library to give you the rest as a single argument. We do this by using a **keyword-only argument**, seen below:" + +msgid "You can only have one keyword-only argument due to parsing ambiguities." +msgstr "You can only have one keyword-only argument due to parsing ambiguities." + +msgid "On the bot side, we do not need to quote input with spaces:" +msgstr "On the bot side, we do not need to quote input with spaces:" + +msgid "Do keep in mind that wrapping it in quotes leaves it as-is:" +msgstr "Do keep in mind that wrapping it in quotes leaves it as-is:" + +msgid "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." +msgstr "By default, the keyword-only arguments are stripped of white space to make it easier to work with. This behaviour can be toggled by the :attr:`.Command.rest_is_raw` argument in the decorator." + +msgid "Invocation Context" +msgstr "Invocation Context" + +msgid "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." +msgstr "As seen earlier, every command must take at least a single parameter, called the :class:`~ext.commands.Context`." + +msgid "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" +msgstr "This parameter gives you access to something called the \"invocation context\". Essentially all the information you need to know how the command was executed. It contains a lot of useful information:" + +msgid ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." +msgstr ":attr:`.Context.guild` to fetch the :class:`Guild` of the command, if any." + +msgid ":attr:`.Context.message` to fetch the :class:`Message` of the command." +msgstr ":attr:`.Context.message` to fetch the :class:`Message` of the command." + +msgid ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." +msgstr ":attr:`.Context.author` to fetch the :class:`Member` or :class:`User` that called the command." + +msgid ":meth:`.Context.send` to send a message to the channel the command was used in." +msgstr ":meth:`.Context.send` to send a message to the channel the command was used in." + +msgid "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." +msgstr "The context implements the :class:`abc.Messageable` interface, so anything you can do on a :class:`abc.Messageable` you can do on the :class:`~ext.commands.Context`." + +msgid "Converters" +msgstr "Converters" + +msgid "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." +msgstr "Adding bot arguments with function parameters is only the first step in defining your bot's command interface. To actually make use of the arguments, we usually want to convert the data into a target type. We call these :ref:`ext_commands_api_converters`." + +msgid "Converters come in a few flavours:" +msgstr "Converters come in a few flavours:" + +msgid "A regular callable object that takes an argument as a sole parameter and returns a different type." +msgstr "A regular callable object that takes an argument as a sole parameter and returns a different type." + +msgid "These range from your own function, to something like :class:`bool` or :class:`int`." +msgstr "These range from your own function, to something like :class:`bool` or :class:`int`." + +msgid "A custom class that inherits from :class:`~ext.commands.Converter`." +msgstr "A custom class that inherits from :class:`~ext.commands.Converter`." + +msgid "Basic Converters" +msgstr "Basic Converters" + +msgid "At its core, a basic converter is a callable that takes in an argument and turns it into something else." +msgstr "At its core, a basic converter is a callable that takes in an argument and turns it into something else." + +msgid "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" +msgstr "For example, if we wanted to add two numbers together, we could request that they are turned into integers for us by specifying the converter:" + +msgid "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." +msgstr "We specify converters by using something called a **function annotation**. This is a Python 3 exclusive feature that was introduced in :pep:`3107`." + +msgid "This works with any callable, such as a function that would convert a string to all upper-case:" +msgstr "This works with any callable, such as a function that would convert a string to all upper-case:" + +msgid "bool" +msgstr "bool" + +msgid "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" +msgstr "Unlike the other basic converters, the :class:`bool` converter is treated slightly different. Instead of casting directly to the :class:`bool` type, which would result in any non-empty argument returning ``True``, it instead evaluates the argument as ``True`` or ``False`` based on its given content:" + +msgid "Advanced Converters" +msgstr "Advanced Converters" + +msgid "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." +msgstr "Sometimes a basic converter doesn't have enough information that we need. For example, sometimes we want to get some information from the :class:`Message` that called the command or we want to do some asynchronous processing." + +msgid "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." +msgstr "For this, the library provides the :class:`~ext.commands.Converter` interface. This allows you to have access to the :class:`.Context` and have the callable be asynchronous. Defining a custom converter using this interface requires overriding a single method, :meth:`.Converter.convert`." + +msgid "An example converter:" +msgstr "An example converter:" + +msgid "The converter provided can either be constructed or not. Essentially these two are equivalent:" +msgstr "The converter provided can either be constructed or not. Essentially these two are equivalent:" + +msgid "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." +msgstr "Having the possibility of the converter be constructed allows you to set up some state in the converter's ``__init__`` for fine tuning the converter. An example of this is actually in the library, :class:`~ext.commands.clean_content`." + +msgid "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." +msgstr "If a converter fails to convert an argument to its designated target type, the :exc:`.BadArgument` exception must be raised." + +msgid "Inline Advanced Converters" +msgstr "Inline Advanced Converters" + +msgid "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." +msgstr "If we don't want to inherit from :class:`~ext.commands.Converter`, we can still provide a converter that has the advanced functionalities of an advanced converter and save us from specifying two types." + +msgid "For example, a common idiom would be to have a class and a converter for that class:" +msgstr "For example, a common idiom would be to have a class and a converter for that class:" + +msgid "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" +msgstr "This can get tedious, so an inline advanced converter is possible through a :func:`classmethod` inside the type:" + +msgid "Discord Converters" +msgstr "Discord Converters" + +msgid "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." +msgstr "Working with :ref:`discord_api_models` is a fairly common thing when defining commands, as a result the library makes working with them easy." + +msgid "For example, to receive a :class:`Member` you can just pass it as a converter:" +msgstr "For example, to receive a :class:`Member` you can just pass it as a converter:" + +msgid "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." +msgstr "When this command is executed, it attempts to convert the string given into a :class:`Member` and then passes it as a parameter for the function. This works by checking if the string is a mention, an ID, a nickname, a username + discriminator, or just a regular username. The default set of converters have been written to be as easy to use as possible." + +msgid "A lot of discord models work out of the gate as a parameter:" +msgstr "A lot of discord models work out of the gate as a parameter:" + +msgid ":class:`Object` (since v2.0)" +msgstr ":class:`Object` (since v2.0)" + +msgid ":class:`Member`" +msgstr ":class:`Member`" + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid ":class:`Message` (since v1.1)" +msgstr ":class:`Message` (since v1.1)" + +msgid ":class:`PartialMessage` (since v1.7)" +msgstr ":class:`PartialMessage` (since v1.7)" + +msgid ":class:`abc.GuildChannel` (since 2.0)" +msgstr ":class:`abc.GuildChannel` (since 2.0)" + +msgid ":class:`TextChannel`" +msgstr ":class:`TextChannel`" + +msgid ":class:`VoiceChannel`" +msgstr ":class:`VoiceChannel`" + +msgid ":class:`StageChannel` (since v1.7)" +msgstr ":class:`StageChannel` (since v1.7)" + +msgid ":class:`CategoryChannel`" +msgstr ":class:`CategoryChannel`" + +msgid ":class:`Invite`" +msgstr ":class:`Invite`" + +msgid ":class:`Guild` (since v1.7)" +msgstr ":class:`Guild` (since v1.7)" + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Colour`" +msgstr ":class:`Colour`" + +msgid ":class:`Emoji`" +msgstr ":class:`Emoji`" + +msgid ":class:`PartialEmoji`" +msgstr ":class:`PartialEmoji`" + +msgid ":class:`Thread` (since v2.0)" +msgstr ":class:`Thread` (since v2.0)" + +msgid "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." +msgstr "Having any of these set as the converter will intelligently convert the argument to the appropriate target type you specify." + +msgid "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" +msgstr "Under the hood, these are implemented by the :ref:`ext_commands_adv_converters` interface. A table of the equivalent converter is given below:" + +msgid "Discord Class" +msgstr "Discord Class" + +msgid "Converter" +msgstr "Converter" + +msgid ":class:`Object`" +msgstr ":class:`Object`" + +msgid ":class:`~ext.commands.ObjectConverter`" +msgstr ":class:`~ext.commands.ObjectConverter`" + +msgid ":class:`~ext.commands.MemberConverter`" +msgstr ":class:`~ext.commands.MemberConverter`" + +msgid ":class:`~ext.commands.UserConverter`" +msgstr ":class:`~ext.commands.UserConverter`" + +msgid ":class:`Message`" +msgstr ":class:`Message`" + +msgid ":class:`~ext.commands.MessageConverter`" +msgstr ":class:`~ext.commands.MessageConverter`" + +msgid ":class:`PartialMessage`" +msgstr ":class:`PartialMessage`" + +msgid ":class:`~ext.commands.PartialMessageConverter`" +msgstr ":class:`~ext.commands.PartialMessageConverter`" + +msgid ":class:`.GuildChannel`" +msgstr ":class:`.GuildChannel`" + +msgid ":class:`~ext.commands.GuildChannelConverter`" +msgstr ":class:`~ext.commands.GuildChannelConverter`" + +msgid ":class:`~ext.commands.TextChannelConverter`" +msgstr ":class:`~ext.commands.TextChannelConverter`" + +msgid ":class:`~ext.commands.VoiceChannelConverter`" +msgstr ":class:`~ext.commands.VoiceChannelConverter`" + +msgid ":class:`StageChannel`" +msgstr ":class:`StageChannel`" + +msgid ":class:`~ext.commands.StageChannelConverter`" +msgstr ":class:`~ext.commands.StageChannelConverter`" + +msgid ":class:`~ext.commands.CategoryChannelConverter`" +msgstr ":class:`~ext.commands.CategoryChannelConverter`" + +msgid ":class:`~ext.commands.InviteConverter`" +msgstr ":class:`~ext.commands.InviteConverter`" + +msgid ":class:`Guild`" +msgstr ":class:`Guild`" + +msgid ":class:`~ext.commands.GuildConverter`" +msgstr ":class:`~ext.commands.GuildConverter`" + +msgid ":class:`~ext.commands.RoleConverter`" +msgstr ":class:`~ext.commands.RoleConverter`" + +msgid ":class:`~ext.commands.GameConverter`" +msgstr ":class:`~ext.commands.GameConverter`" + +msgid ":class:`~ext.commands.ColourConverter`" +msgstr ":class:`~ext.commands.ColourConverter`" + +msgid ":class:`~ext.commands.EmojiConverter`" +msgstr ":class:`~ext.commands.EmojiConverter`" + +msgid ":class:`~ext.commands.PartialEmojiConverter`" +msgstr ":class:`~ext.commands.PartialEmojiConverter`" + +msgid ":class:`Thread`" +msgstr ":class:`Thread`" + +msgid ":class:`~ext.commands.ThreadConverter`" +msgstr ":class:`~ext.commands.ThreadConverter`" + +msgid "By providing the converter it allows us to use them as building blocks for another converter:" +msgstr "By providing the converter it allows us to use them as building blocks for another converter:" + +msgid "Special Converters" +msgstr "Special Converters" + +msgid "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." +msgstr "The command extension also has support for certain converters to allow for more advanced and intricate use cases that go beyond the generic linear parsing. These converters allow you to introduce some more relaxed and dynamic grammar to your commands in an easy to use manner." + +msgid "typing.Union" +msgstr "typing.Union" + +msgid "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" +msgstr "A :data:`typing.Union` is a special type hint that allows for the command to take in any of the specific types instead of a singular type. For example, given the following:" + +msgid "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." +msgstr "The ``what`` parameter would either take a :class:`discord.TextChannel` converter or a :class:`discord.Member` converter. The way this works is through a left-to-right order. It first attempts to convert the input to a :class:`discord.TextChannel`, and if it fails it tries to convert it to a :class:`discord.Member`. If all converters fail, then a special error is raised, :exc:`~ext.commands.BadUnionArgument`." + +msgid "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." +msgstr "Note that any valid converter discussed above can be passed in to the argument list of a :data:`typing.Union`." + +msgid "typing.Optional" +msgstr "typing.Optional" + +msgid "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." +msgstr "A :data:`typing.Optional` is a special type hint that allows for \"back-referencing\" behaviour. If the converter fails to parse into the specified type, the parser will skip the parameter and then either ``None`` or the specified default will be passed into the parameter instead. The parser will then continue on to the next parameters and converters, if any." + +msgid "Consider the following example:" +msgstr "Consider the following example:" + +msgid "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." +msgstr "In this example, since the argument could not be converted into an ``int``, the default of ``99`` is passed and the parser resumes handling, which in this case would be to pass it into the ``liquid`` parameter." + +msgid "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." +msgstr "This converter only works in regular positional parameters, not variable parameters or keyword-only parameters." + +msgid "typing.Literal" +msgstr "typing.Literal" + +msgid "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" +msgstr "A :data:`typing.Literal` is a special type hint that requires the passed parameter to be equal to one of the listed values after being converted to the same type. For example, given the following:" + +msgid "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." +msgstr "The ``buy_sell`` parameter must be either the literal string ``\"buy\"`` or ``\"sell\"`` and ``amount`` must convert to the ``int`` ``1`` or ``2``. If ``buy_sell`` or ``amount`` don't match any value, then a special error is raised, :exc:`~.ext.commands.BadLiteralArgument`. Any literal values can be mixed and matched within the same :data:`typing.Literal` converter." + +msgid "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." +msgstr "Note that ``typing.Literal[True]`` and ``typing.Literal[False]`` still follow the :class:`bool` converter rules." + +msgid "Greedy" +msgstr "Greedy" + +msgid "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." +msgstr "The :class:`~ext.commands.Greedy` converter is a generalisation of the :data:`typing.Optional` converter, except applied to a list of arguments. In simple terms, this means that it tries to convert as much as it can until it can't convert any further." + +msgid "When invoked, it allows for any number of members to be passed in:" +msgstr "When invoked, it allows for any number of members to be passed in:" + +msgid "The type passed when using this converter depends on the parameter type that it is being attached to:" +msgstr "The type passed when using this converter depends on the parameter type that it is being attached to:" + +msgid "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." +msgstr "Positional parameter types will receive either the default parameter or a :class:`list` of the converted values." + +msgid "Variable parameter types will be a :class:`tuple` as usual." +msgstr "Variable parameter types will be a :class:`tuple` as usual." + +msgid "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." +msgstr "Keyword-only parameter types will be the same as if :class:`~ext.commands.Greedy` was not passed at all." + +msgid ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." +msgstr ":class:`~ext.commands.Greedy` parameters can also be made optional by specifying an optional value." + +msgid "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" +msgstr "When mixed with the :data:`typing.Optional` converter you can provide simple and expressive command invocation syntaxes:" + +msgid "This command can be invoked any of the following ways:" +msgstr "This command can be invoked any of the following ways:" + +msgid "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." +msgstr "The usage of :class:`~ext.commands.Greedy` and :data:`typing.Optional` are powerful and useful, however as a price, they open you up to some parsing ambiguities that might surprise some people." + +msgid "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." +msgstr "For example, a signature expecting a :data:`typing.Optional` of a :class:`discord.Member` followed by a :class:`int` could catch a member named after a number due to the different ways a :class:`~ext.commands.MemberConverter` decides to fetch members. You should take care to not introduce unintended parsing ambiguities in your code. One technique would be to clamp down the expected syntaxes allowed through custom converters or reordering the parameters to minimise clashes." + +msgid "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." +msgstr "To help aid with some parsing ambiguities, :class:`str`, ``None``, :data:`typing.Optional` and :class:`~ext.commands.Greedy` are forbidden as parameters for the :class:`~ext.commands.Greedy` converter." + +msgid "FlagConverter" +msgstr "FlagConverter" + +msgid "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." +msgstr "A :class:`~ext.commands.FlagConverter` allows the user to specify user-friendly \"flags\" using :pep:`526` type annotations or a syntax more reminiscent of the :mod:`py:dataclasses` module." + +msgid "For example, the following code:" +msgstr "For example, the following code:" + +msgid "Allows the user to invoke the command using a simple flag-like syntax:" +msgstr "Allows the user to invoke the command using a simple flag-like syntax:" + +msgid "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." +msgstr "Flags use a syntax that allows the user to not require quotes when passing in values to the flag. The goal of the flag syntax is to be as user-friendly as possible. This makes flags a good choice for complicated commands that can have multiple knobs to turn or simulating keyword-only parameters in your external command interface. **It is recommended to use keyword-only parameters with the flag converter**. This ensures proper parsing and behaviour with quoting." + +msgid "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." +msgstr "Internally, the :class:`~ext.commands.FlagConverter` class examines the class to find flags. A flag can either be a class variable with a type annotation or a class variable that's been assigned the result of the :func:`~ext.commands.flag` function. These flags are then used to define the interface that your users will use. The annotations correspond to the converters that the flag arguments must adhere to." + +msgid "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" +msgstr "For most use cases, no extra work is required to define flags. However, if customisation is needed to control the flag name or the default value then the :func:`~ext.commands.flag` function can come in handy:" + +msgid "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." +msgstr "This tells the parser that the ``members`` attribute is mapped to a flag named ``member`` and that the default value is an empty list. For greater customisability, the default can either be a value or a callable that takes the :class:`~ext.commands.Context` as a sole parameter. This callable can either be a function or a coroutine." + +msgid "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" +msgstr "In order to customise the flag syntax we also have a few options that can be passed to the class parameter list:" + +msgid "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." +msgstr "Despite the similarities in these examples to command like arguments, the syntax and parser is not a command line parser. The syntax is mainly inspired by Discord's search bar input and as a result all flags need a corresponding value." + +msgid "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." +msgstr "The flag converter is similar to regular commands and allows you to use most types of converters (with the exception of :class:`~ext.commands.Greedy`) as the type annotation. Some extra support is added for specific annotations as described below." + +msgid "typing.List" +msgstr "typing.List" + +msgid "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." +msgstr "If a list is given as a flag annotation it tells the parser that the argument can be passed multiple times." + +msgid "For example, augmenting the example above:" +msgstr "For example, augmenting the example above:" + +msgid "This is called by repeatedly specifying the flag:" +msgstr "This is called by repeatedly specifying the flag:" + +msgid "typing.Tuple" +msgstr "typing.Tuple" + +msgid "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" +msgstr "Since the above syntax can be a bit repetitive when specifying a flag many times, the :class:`py:tuple` type annotation allows for \"greedy-like\" semantics using a variadic tuple:" + +msgid "This allows the previous ``ban`` command to be called like this:" +msgstr "This allows the previous ``ban`` command to be called like this:" + +msgid "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" +msgstr "The :class:`py:tuple` annotation also allows for parsing of pairs. For example, given the following code:" + +msgid "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." +msgstr "Due to potential parsing ambiguities, the parser expects tuple arguments to be quoted if they require spaces. So if one of the inner types is :class:`str` and the argument requires spaces then quotes should be used to disambiguate it from the other element of the tuple." + +msgid "typing.Dict" +msgstr "typing.Dict" + +msgid "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." +msgstr "A :class:`dict` annotation is functionally equivalent to ``List[Tuple[K, V]]`` except with the return type given as a :class:`dict` rather than a :class:`list`." + +msgid "Error Handling" +msgstr "Error Handling" + +msgid "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." +msgstr "When our commands fail to parse we will, by default, receive a noisy error in ``stderr`` of our console that tells us that an error has happened and has been silently ignored." + +msgid "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." +msgstr "In order to handle our errors, we must use something called an error handler. There is a global error handler, called :func:`.on_command_error` which works like any other event in the :ref:`discord-api-events`. This global error handler is called for every error reached." + +msgid "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" +msgstr "Most of the time however, we want to handle an error local to the command itself. Luckily, commands come with local error handlers that allow us to do just that. First we decorate an error handler function with :meth:`.Command.error`:" + +msgid "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." +msgstr "The first parameter of the error handler is the :class:`.Context` while the second one is an exception that is derived from :exc:`~ext.commands.CommandError`. A list of errors is found in the :ref:`ext_commands_api_errors` page of the documentation." + +msgid "Checks" +msgstr "Checks" + +msgid "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." +msgstr "There are cases when we don't want a user to use our commands. They don't have permissions to do so or maybe we blocked them from using our bot earlier. The commands extension comes with full support for these things in a concept called a :ref:`ext_commands_api_checks`." + +msgid "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" +msgstr "A check is a basic predicate that can take in a :class:`.Context` as its sole parameter. Within it, you have the following options:" + +msgid "Return ``True`` to signal that the person can run the command." +msgstr "Return ``True`` to signal that the person can run the command." + +msgid "Return ``False`` to signal that the person cannot run the command." +msgstr "Return ``False`` to signal that the person cannot run the command." + +msgid "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." +msgstr "Raise a :exc:`~ext.commands.CommandError` derived exception to signal the person cannot run the command." + +msgid "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." +msgstr "This allows you to have custom error messages for you to handle in the :ref:`error handlers `." + +msgid "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" +msgstr "To register a check for a command, we would have two ways of doing so. The first is using the :meth:`~ext.commands.check` decorator. For example:" + +msgid "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" +msgstr "This would only evaluate the command if the function ``is_owner`` returns ``True``. Sometimes we re-use a check often and want to split it into its own decorator. To do that we can just add another level of depth:" + +msgid "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" +msgstr "Since an owner check is so common, the library provides it for you (:func:`~ext.commands.is_owner`):" + +msgid "When multiple checks are specified, **all** of them must be ``True``:" +msgstr "When multiple checks are specified, **all** of them must be ``True``:" + +msgid "If any of those checks fail in the example above, then the command will not be run." +msgstr "If any of those checks fail in the example above, then the command will not be run." + +msgid "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" +msgstr "When an error happens, the error is propagated to the :ref:`error handlers `. If you do not raise a custom :exc:`~ext.commands.CommandError` derived exception, then it will get wrapped up into a :exc:`~ext.commands.CheckFailure` exception as so:" + +msgid "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" +msgstr "If you want a more robust error system, you can derive from the exception and raise it instead of returning ``False``:" + +msgid "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." +msgstr "Since having a ``guild_only`` decorator is pretty common, it comes built-in via :func:`~ext.commands.guild_only`." + +msgid "Global Checks" +msgstr "Global Checks" + +msgid "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." +msgstr "Sometimes we want to apply a check to **every** command, not just certain commands. The library supports this as well using the global check concept." + +msgid "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." +msgstr "Global checks work similarly to regular checks except they are registered with the :meth:`.Bot.check` decorator." + +msgid "For example, to block all DMs we could do the following:" +msgstr "For example, to block all DMs we could do the following:" + +msgid "Be careful on how you write your global checks, as it could also lock you out of your own bot." +msgstr "Be careful on how you write your global checks, as it could also lock you out of your own bot." + diff --git a/docs/locales/zh/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/zh/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..4f3fd6efcd --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." +msgstr "There comes a time in the bot development when you want to extend the bot functionality at run-time and quickly unload and reload code (also called hot-reloading). The command framework comes with this ability built-in, with a concept called **extensions**." + +msgid "Primer" +msgstr "Primer" + +msgid "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." +msgstr "An extension at its core is a python file with an entry point called ``setup``. This setup must be a plain Python function (not a coroutine). It takes a single parameter -- the :class:`~.commands.Bot` that loads the extension." + +msgid "An example extension looks like this:" +msgstr "An example extension looks like this:" + +msgid "hello.py" +msgstr "hello.py" + +msgid "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." +msgstr "In this example we define a simple command, and when the extension is loaded this command is added to the bot. Now the final step to this is loading the extension, which we do by calling :meth:`.Bot.load_extension`. To load this extension we call ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." + +msgid "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." +msgstr "Extension paths are ultimately similar to the import mechanism. What this means is that if there is a folder, then it must be dot-qualified. For example to load an extension in ``plugins/hello.py`` then we use the string ``plugins.hello``." + +msgid "Reloading" +msgstr "Reloading" + +msgid "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." +msgstr "When you make a change to the extension and want to reload the references, the library comes with a function to do this for you, :meth:`.Bot.reload_extension`." + +msgid "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." +msgstr "Once the extension reloads, any changes that we did will be applied. This is useful if we want to add or remove functionality without restarting our bot. If an error occurred during the reloading process, the bot will pretend as if the reload never happened." + +msgid "Cleaning Up" +msgstr "Cleaning Up" + +msgid "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." +msgstr "Although rare, sometimes an extension needs to clean-up or know when it's being unloaded. For cases like these, there is another entry point named ``teardown`` which is similar to ``setup`` except called when the extension is unloaded." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/zh/LC_MESSAGES/ext/commands/index.po b/docs/locales/zh/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..d05921587d --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.commands" +msgstr "discord.ext.commands" + +msgid "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." +msgstr "``Pycord`` offers a lower level aspect on interacting with Discord. Often times, the library is used for the creation of bots. However this task can be daunting and confusing to get correctly the first time. Many times there comes a repetition in creating a bot command framework that is extensible, flexible, and powerful. For this reason, ``Pycord`` comes with an extension library that handles this for you." + diff --git a/docs/locales/zh/LC_MESSAGES/ext/pages/index.po b/docs/locales/zh/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..19c1622bfa --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,649 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.pages" +msgstr "discord.ext.pages" + +msgid "This module provides an easy pagination system with buttons, page groups, and custom view support." +msgstr "This module provides an easy pagination system with buttons, page groups, and custom view support." + +msgid "Example usage in a cog:" +msgstr "Example usage in a cog:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "Page" +msgstr "Page" + +msgid "Represents a page shown in the paginator." +msgstr "Represents a page shown in the paginator." + +msgid "Allows for directly referencing and modifying each page as a class instance." +msgstr "Allows for directly referencing and modifying each page as a class instance." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." +msgstr "The content of the page. Corresponds to the :class:`discord.Message.content` attribute." + +msgid "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." +msgstr "The embeds of the page. Corresponds to the :class:`discord.Message.embeds` attribute." + +msgid "A list of local files to be shown with the page." +msgstr "A list of local files to be shown with the page." + +msgid "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." +msgstr "The custom view shown when the page is visible. Overrides the `custom_view` attribute of the main paginator." + +msgid "|coro|" +msgstr "|coro|" + +msgid "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." +msgstr "The coroutine associated to a specific page. If `Paginator.page_action()` is used, this coroutine is called." + +msgid "The interaction associated with the callback, if any." +msgstr "The interaction associated with the callback, if any." + +msgid "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." +msgstr "Updates :class:`discord.File` objects so that they can be sent multiple times. This is called internally each time the page is sent." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Gets the content for the page." +msgstr "Gets the content for the page." + +msgid "Gets the embeds for the page." +msgstr "Gets the embeds for the page." + +msgid "Gets the custom view assigned to the page." +msgstr "Gets the custom view assigned to the page." + +msgid "Gets the files associated with the page." +msgstr "Gets the files associated with the page." + +msgid "Paginator" +msgstr "Paginator" + +msgid "Creates a paginator which can be sent as a message and uses buttons for navigation." +msgstr "Creates a paginator which can be sent as a message and uses buttons for navigation." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate. If a list of :class:`PageGroup` objects is provided and `show_menu` is ``False``, only the first page group will be displayed." + +msgid "Whether to show disabled buttons." +msgstr "Whether to show disabled buttons." + +msgid "Whether to show the page indicator when using the default buttons." +msgstr "Whether to show the page indicator when using the default buttons." + +msgid "Whether to show a select menu that allows the user to switch between groups of pages." +msgstr "Whether to show a select menu that allows the user to switch between groups of pages." + +msgid "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." +msgstr "The placeholder text to show in the page group menu when no page group has been selected yet. Defaults to \"Select Page Group\" if not provided." + +msgid "Whether only the original user of the command can change pages." +msgstr "Whether only the original user of the command can change pages." + +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "Whether the buttons get disabled when the paginator view times out." + +msgid "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" +msgstr "Whether to use the default buttons (i.e. ``first``, ``prev``, ``page_indicator``, ``next``, ``last``)" + +msgid "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." +msgstr "The row where the default paginator buttons are displayed. Has no effect if custom buttons are used." + +msgid "Whether to loop the pages when clicking prev/next while at the first/last page in the list." +msgstr "Whether to loop the pages when clicking prev/next while at the first/last page in the list." + +msgid "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." +msgstr "A custom view whose items are appended below the pagination components. If the currently displayed page has a `custom_view` assigned, it will replace these view components when that page is displayed." + +msgid "Timeout in seconds from last interaction with the paginator before no longer accepting input." +msgstr "Timeout in seconds from last interaction with the paginator before no longer accepting input." + +msgid "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "A list of PaginatorButtons to initialize the Paginator with. If ``use_default_buttons`` is ``True``, this parameter is ignored." + +msgid "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." +msgstr "Whether to automatically trigger the callback associated with a `Page` whenever it is displayed. Has no effect if no callback exists for a `Page`." + +msgid "The page group select menu associated with this paginator." +msgstr "The page group select menu associated with this paginator." + +msgid "type" +msgstr "type" + +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "Optional[List[:class:`PaginatorMenu`]]" + +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "List of :class:`PageGroup` objects the user can switch between." + +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "Optional[List[:class:`PageGroup`]]" + +msgid "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." +msgstr "The index of the default page group shown when the paginator is initially sent. Defined by setting ``default`` to ``True`` on a :class:`PageGroup`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "A zero-indexed value showing the current page number." +msgstr "A zero-indexed value showing the current page number." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "A zero-indexed value showing the total number of pages." +msgstr "A zero-indexed value showing the total number of pages." + +msgid "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." +msgstr "A dictionary containing the :class:`~PaginatorButton` objects included in this paginator." + +msgid "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" +msgstr "Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, :class:`bool`]]]" + +msgid "The user or member that invoked the paginator." +msgstr "The user or member that invoked the paginator." + +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" + +msgid "The message the paginator is attached to." +msgstr "The message the paginator is attached to." + +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" + +msgid "Updates the existing :class:`Paginator` instance with the provided options." +msgstr "Updates the existing :class:`Paginator` instance with the provided options." + +msgid "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." +msgstr "The list of :class:`PageGroup` objects, :class:`Page` objects, strings, embeds, or list of embeds to paginate." + +msgid "A custom view whose items are appended below the pagination components." +msgstr "A custom view whose items are appended below the pagination components." + +msgid "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." +msgstr "The interaction to use when updating the paginator. If not provided, the paginator will be updated by using its stored :attr:`message` attribute instead." + +msgid "The initial page number to display when updating the paginator." +msgstr "The initial page number to display when updating the paginator." + +msgid "Disables all buttons when the view times out." +msgstr "Disables all buttons when the view times out." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "Stops the paginator, disabling all of its components." +msgstr "Stops the paginator, disabling all of its components." + +msgid "Whether to disable components added via custom views." +msgstr "Whether to disable components added via custom views." + +msgid "The page content to show after disabling the paginator." +msgstr "The page content to show after disabling the paginator." + +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "Cancels the paginator, removing all of its components from the message." + +msgid "Whether to remove components added via custom views." +msgstr "Whether to remove components added via custom views." + +msgid "The page content to show after canceling the paginator." +msgstr "The page content to show after canceling the paginator." + +msgid "Updates the paginator message to show the specified page number." +msgstr "Updates the paginator message to show the specified page number." + +msgid "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "The page to display. .. note:: Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The page to display." +msgstr "The page to display." + +msgid "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." +msgstr "Page numbers are zero-indexed when referenced internally, but appear as one-indexed when shown to the user." + +msgid "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." +msgstr "The interaction to use when editing the message. If not provided, the message will be edited using the paginator's stored :attr:`message` attribute instead." + +msgid "Returns" +msgstr "Returns" + +msgid "The message associated with the paginator." +msgstr "The message associated with the paginator." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." +msgstr "A callback that is called when an interaction happens within the view that checks whether the view should process item callbacks for the interaction." + +msgid "This is useful to override if, for example, you want to ensure that the interaction author is a given user." +msgstr "This is useful to override if, for example, you want to ensure that the interaction author is a given user." + +msgid "The default implementation of this returns ``True``." +msgstr "The default implementation of this returns ``True``." + +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "If this returns ``False``, :meth:`on_check_failure` is called." + +msgid "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." +msgstr "If an exception occurs within the body then the check is considered a failure and :meth:`on_error` is called." + +msgid "The interaction that occurred." +msgstr "The interaction that occurred." + +msgid "Whether the view children's callbacks should be called." +msgstr "Whether the view children's callbacks should be called." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "Adds the default :class:`PaginatorMenu` instance to the paginator." + +msgid "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." +msgstr "Adds the full list of default buttons that can be used with the paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, and ``last``." + +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "Adds a :class:`PaginatorButton` to the paginator." + +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "Removes a :class:`PaginatorButton` from the paginator." + +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "Updates the display state of the buttons (disabled/hidden)" + +msgid "The dictionary of buttons that were updated." +msgstr "The dictionary of buttons that were updated." + +msgid "Updates the custom view shown on the paginator." +msgstr "Updates the custom view shown on the paginator." + +msgid "Returns a converted list of `Page` objects for the given page group based on the content of its pages." +msgstr "Returns a converted list of `Page` objects for the given page group based on the content of its pages." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" + +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "Converts a page into a :class:`Page` object based on its content." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" + +msgid "Triggers the callback associated with the current page, if any." +msgstr "Triggers the callback associated with the current page, if any." + +msgid "The interaction that was used to trigger the page action." +msgstr "The interaction that was used to trigger the page action." + +msgid "Sends a message with the paginated items." +msgstr "Sends a message with the paginated items." + +msgid "A command's invocation context." +msgstr "A command's invocation context." + +msgid "A target where the paginated message should be sent, if different from the original :class:`Context`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`Context`" + +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "An optional message shown when the paginator message is sent elsewhere." + +msgid "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." +msgstr "A reference to the :class:`~discord.Message` to which you are replying with the paginator. This can be created using :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``." + +msgid "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." +msgstr "Controls the mentions being processed in this message. If this is passed, then the object is merged with :attr:`~discord.Client.allowed_mentions`. The merging behaviour only overrides attributes that have been explicitly passed to the object, otherwise it uses the attributes set in :attr:`~discord.Client.allowed_mentions`. If no object is passed at all then the defaults given by :attr:`~discord.Client.allowed_mentions` are used instead." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." + +msgid "If set, deletes the paginator after the specified time." +msgstr "If set, deletes the paginator after the specified time." + +msgid "The message that was sent with the paginator." +msgstr "The message that was sent with the paginator." + +msgid "Adds an item to the view." +msgstr "Adds an item to the view." + +msgid "The item to add to the view." +msgstr "The item to add to the view." + +msgid "Raises" +msgstr "Raises" + +msgid "An :class:`Item` was not passed." +msgstr "An :class:`Item` was not passed." + +msgid "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." +msgstr "Maximum number of children has been exceeded (25) or the row the item is trying to be added to is full." + +msgid "Removes all items from the view." +msgstr "Removes all items from the view." + +msgid "Disables all items in the view." +msgstr "Disables all items in the view." + +msgid "A list of items in `self.children` to not disable from the view." +msgstr "A list of items in `self.children` to not disable from the view." + +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "Edits an existing message to replace it with the paginator contents." + +msgid "If invoked from an interaction, you will still need to respond to the interaction." +msgstr "If invoked from an interaction, you will still need to respond to the interaction." + +msgid "The message to edit with the paginator." +msgstr "The message to edit with the paginator." + +msgid "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." +msgstr "Whether to suppress embeds for the message. This removes all the embeds if set to ``True``. If set to ``False`` this brings the embeds back if they were suppressed. Using this parameter requires :attr:`~.Permissions.manage_messages`." + +msgid "If set, changes the user that this paginator belongs to." +msgstr "If set, changes the user that this paginator belongs to." + +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "The message that was edited. Returns ``None`` if the operation failed." + +msgid "Optional[:class:`discord.Message`]" +msgstr "Optional[:class:`discord.Message`]" + +msgid "Enables all items in the view." +msgstr "Enables all items in the view." + +msgid "A list of items in `self.children` to not enable from the view." +msgstr "A list of items in `self.children` to not enable from the view." + +msgid "Converts a message's components into a :class:`View`." +msgstr "Converts a message's components into a :class:`View`." + +msgid "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." +msgstr "The :attr:`.Message.components` of a message are read-only and separate types from those in the ``discord.ui`` namespace. In order to modify and edit message components they must be converted into a :class:`View` first." + +msgid "The message with components to convert into a view." +msgstr "The message with components to convert into a view." + +msgid "The timeout of the converted view." +msgstr "The timeout of the converted view." + +msgid "The converted view. This always returns a :class:`View` and not one of its subclasses." +msgstr "The converted view. This always returns a :class:`View` and not one of its subclasses." + +msgid ":class:`View`" +msgstr ":class:`View`" + +msgid "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." +msgstr "Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`." + +msgid "The custom_id of the item to get" +msgstr "The custom_id of the item to get" + +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "The item with the matching ``custom_id`` if it exists." + +msgid "Optional[:class:`Item`]" +msgstr "Optional[:class:`Item`]" + +msgid "Whether the view has been added for dispatching purposes." +msgstr "Whether the view has been added for dispatching purposes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the view has finished interacting." +msgstr "Whether the view has finished interacting." + +msgid "Whether the view is set up as persistent." +msgstr "Whether the view is set up as persistent." + +msgid "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." +msgstr "A persistent view has all their components with a set ``custom_id`` and a :attr:`timeout` set to ``None``." + +msgid "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." +msgstr "|coro| A callback that is called when a :meth:`View.interaction_check` returns ``False``. This can be used to send a response when a check failure occurs." + +msgid "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." +msgstr "A callback that is called when an item's callback or :meth:`interaction_check` fails with an error." + +msgid "The default implementation prints the traceback to stderr." +msgstr "The default implementation prints the traceback to stderr." + +msgid "The exception that was raised." +msgstr "The exception that was raised." + +msgid "The item that failed the dispatch." +msgstr "The item that failed the dispatch." + +msgid "The interaction that led to the failure." +msgstr "The interaction that led to the failure." + +msgid "Removes an item from the view." +msgstr "Removes an item from the view." + +msgid "The item to remove from the view." +msgstr "The item to remove from the view." + +msgid "Stops listening to interaction events from this view." +msgstr "Stops listening to interaction events from this view." + +msgid "This operation cannot be undone." +msgstr "This operation cannot be undone." + +msgid "Waits until the view has finished interacting." +msgstr "Waits until the view has finished interacting." + +msgid "A view is considered finished when :meth:`stop` is called, or it times out." +msgstr "A view is considered finished when :meth:`stop` is called, or it times out." + +msgid "If ``True``, then the view timed out. If ``False`` then the view finished normally." +msgstr "If ``True``, then the view timed out. If ``False`` then the view finished normally." + +msgid "Sends an interaction response or followup with the paginated items." +msgstr "Sends an interaction response or followup with the paginated items." + +msgid "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." +msgstr "The interaction or BridgeContext which invoked the paginator. If passing a BridgeContext object, you cannot make this an ephemeral paginator." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead. .. warning:: If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." +msgstr "Whether the paginator message and its components are ephemeral. If ``target`` is specified, the ephemeral message content will be ``target_message`` instead." + +msgid "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." +msgstr "If your paginator is ephemeral, it cannot have a timeout longer than 15 minutes (and cannot be persistent)." + +msgid "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" +msgstr "A target where the paginated message should be sent, if different from the original :class:`discord.Interaction`" + +msgid "The content of the interaction response shown when the paginator message is sent elsewhere." +msgstr "The content of the interaction response shown when the paginator message is sent elsewhere." + +msgid "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." +msgstr "The :class:`~discord.Message` or :class:`~discord.WebhookMessage` that was sent with the paginator." + +msgid "PaginatorButton" +msgstr "PaginatorButton" + +msgid "Creates a button used to navigate the paginator." +msgstr "Creates a button used to navigate the paginator." + +msgid "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." +msgstr "The type of button being created. Must be one of ``first``, ``prev``, ``next``, ``last``, or ``page_indicator``." + +msgid "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" +msgstr "The label shown on the button. Defaults to a capitalized version of ``button_type`` (e.g. \"Next\", \"Prev\", etc.)" + +msgid "The emoji shown on the button in front of the label." +msgstr "The emoji shown on the button in front of the label." + +msgid "Whether to initially show the button as disabled." +msgstr "Whether to initially show the button as disabled." + +msgid "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." +msgstr "The label shown on the button when ``loop_pages`` is set to ``True`` in the Paginator class." + +msgid "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." +msgstr "The paginator class where this button is being used. Assigned to the button when ``Paginator.add_button`` is called." + +msgid ":class:`Paginator`" +msgstr ":class:`Paginator`" + +msgid "The label of the button, if available." +msgstr "The label of the button, if available." + +msgid "The emoji of the button, if available." +msgstr "The emoji of the button, if available." + +msgid "The style of the button." +msgstr "The style of the button." + +msgid "Whether the button is disabled or not." +msgstr "Whether the button is disabled or not." + +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "The coroutine that is called when the navigation button is clicked." + +msgid "The interaction created by clicking the navigation button." +msgstr "The interaction created by clicking the navigation button." + +msgid "The ID of the button that gets received during an interaction." +msgstr "The ID of the button that gets received during an interaction." + +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "If this button is for a URL, it does not have a custom ID." + +msgid "The ID of the SKU this button refers to." +msgstr "The ID of the SKU this button refers to." + +msgid "The URL this button sends you to." +msgstr "The URL this button sends you to." + +msgid "The underlying view for this item." +msgstr "The underlying view for this item." + +msgid "PaginatorMenu" +msgstr "PaginatorMenu" + +msgid "Creates a select menu used to switch between page groups, which can each have their own set of buttons." +msgstr "Creates a select menu used to switch between page groups, which can each have their own set of buttons." + +msgid "The placeholder text that is shown if nothing is selected." +msgstr "The placeholder text that is shown if nothing is selected." + +msgid "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." +msgstr "The paginator class where this menu is being used. Assigned to the menu when ``Paginator.add_menu`` is called." + +msgid "Adds an option to the select menu." +msgstr "Adds an option to the select menu." + +msgid "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." +msgstr "To append a pre-existing :class:`discord.SelectOption` use the :meth:`append_option` method instead." + +msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." +msgstr "The label of the option. This is displayed to users. Can only be up to 100 characters." + +msgid "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." +msgstr "The value of the option. This is not displayed to users. If not given, defaults to the label. Can only be up to 100 characters." + +msgid "An additional description of the option, if any. Can only be up to 100 characters." +msgstr "An additional description of the option, if any. Can only be up to 100 characters." + +msgid "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." +msgstr "The emoji of the option, if available. This can either be a string representing the custom or unicode emoji or an instance of :class:`.PartialEmoji` or :class:`.Emoji`." + +msgid "Whether this option is selected by default." +msgstr "Whether this option is selected by default." + +msgid "The number of options exceeds 25." +msgstr "The number of options exceeds 25." + +msgid "Appends an option to the select menu." +msgstr "Appends an option to the select menu." + +msgid "The option to append to the select menu." +msgstr "The option to append to the select menu." + +msgid "A list of channel types that can be selected in this menu." +msgstr "A list of channel types that can be selected in this menu." + +msgid "The ID of the select menu that gets received during an interaction." +msgstr "The ID of the select menu that gets received during an interaction." + +msgid "Whether the select is disabled or not." +msgstr "Whether the select is disabled or not." + +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "The maximum number of items that must be chosen for this select menu." + +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "The minimum number of items that must be chosen for this select menu." + +msgid "A list of options that can be selected in this menu." +msgstr "A list of options that can be selected in this menu." + +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "The placeholder text that is shown if nothing is selected, if any." + +msgid "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." +msgstr "List[:class:`str`] | List[:class:`discord.Member` | :class:`discord.User`]] | List[:class:`discord.Role`]] | List[:class:`discord.Member` | :class:`discord.User` | :class:`discord.Role`]] | List[:class:`discord.abc.GuildChannel`] | None: A list of values that have been selected by the user. This will be ``None`` if the select has not been interacted with yet." + +msgid "The coroutine that is called when a menu option is selected." +msgstr "The coroutine that is called when a menu option is selected." + +msgid "The interaction created by selecting the menu option." +msgstr "The interaction created by selecting the menu option." + +msgid "PageGroup" +msgstr "PageGroup" + +msgid "Creates a group of pages which the user can switch between." +msgstr "Creates a group of pages which the user can switch between." + +msgid "Each group of pages can have its own options, custom buttons, custom views, etc." +msgstr "Each group of pages can have its own options, custom buttons, custom views, etc." + +msgid "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." +msgstr "If multiple :class:`PageGroup` objects have different options, they should all be set explicitly when creating each instance." + +msgid "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." +msgstr "The list of :class:`Page` objects, strings, embeds, or list of embeds to include in the page group." + +msgid "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." +msgstr "The label shown on the corresponding PaginatorMenu dropdown option. Also used as the SelectOption value." + +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "The description shown on the corresponding PaginatorMenu dropdown option." + +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "The emoji shown on the corresponding PaginatorMenu dropdown option." + +msgid "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." +msgstr "Whether the page group should be the default page group initially shown when the paginator response is sent. Only one ``PageGroup`` can be the default page group." + +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "A custom view whose items are appended below the pagination buttons." + diff --git a/docs/locales/zh/LC_MESSAGES/ext/tasks/index.po b/docs/locales/zh/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..6236de13f1 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "discord.ext.tasks" +msgstr "discord.ext.tasks" + +msgid "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" +msgstr "One of the most common operations when making a bot is having a loop run in the background at a specified interval. This pattern is very common but has a lot of things you need to look out for:" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "How do I handle :exc:`asyncio.CancelledError`?" + +msgid "What do I do if the internet goes out?" +msgstr "What do I do if the internet goes out?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "What is the maximum number of seconds I can sleep anyway?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "The goal of this Pycord extension is to abstract all these worries away from you." + +msgid "Recipes" +msgstr "Recipes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "A simple background task in a :class:`~discord.ext.commands.Cog`:" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Adding an exception to handle during reconnect:" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Looping a certain amount of times before exiting:" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Waiting until the bot is ready before the loop starts:" + +msgid "Doing something during cancellation:" +msgstr "Doing something during cancellation:" + +msgid "API Reference" +msgstr "API Reference" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "A background task helper that abstracts the loop and reconnection logic for you." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "The main interface to create this is through :func:`loop`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "A decorator that register a coroutine to be called after the loop finished running." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "The coroutine must take no arguments (except ``self`` in a class context)." + +msgid "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." +msgstr "This coroutine is called even during cancellation. If it is desirable to tell apart whether something was cancelled or not, check to see whether :meth:`is_being_cancelled` is ``True`` or not." + +msgid "The coroutine to register after the loop finishes." +msgstr "The coroutine to register after the loop finishes." + +msgid "Raises" +msgstr "Raises" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Return type" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "A decorator that registers a coroutine to be called before the loop starts running." +msgstr "A decorator that registers a coroutine to be called before the loop starts running." + +msgid "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." +msgstr "This is useful if you want to wait for some bot state before the loop starts, such as :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "The coroutine to register before the loop runs." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "The coroutine to register in the event of an unhandled exception." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ET\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`BaseException\\`\\]\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)`" + +msgid "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of seconds between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." + +msgid "The current iteration of the loop." +msgstr "The current iteration of the loop." + +msgid "When the next iteration of the loop will occur." +msgstr "When the next iteration of the loop will occur." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Calls the internal callback that the task holds." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" + +msgid "Starts the internal task in the event loop." +msgstr "Starts the internal task in the event loop." + +msgid "A task has already been launched and is running." +msgstr "A task has already been launched and is running." + +msgid "Returns" +msgstr "Returns" + +msgid "The task that has been created." +msgstr "The task that has been created." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Gracefully stops the task from running." + +msgid "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Unlike :meth:`cancel`\\, this allows the task to finish its current iteration before gracefully exiting. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." +msgstr "If the internal function raises an error that can be handled before finishing then it will retry until it succeeds." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." + +msgid "Cancels the internal task, if it is running." +msgstr "Cancels the internal task, if it is running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A convenience method to restart the internal task." +msgstr "A convenience method to restart the internal task." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "Due to the way this function works, the task is not returned like :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Adds exception types to be handled during the reconnect logic." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "An argument list of exception classes to handle." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "An exception passed is either not a class or not inherited from :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "This operation obviously cannot be undone!" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Removes exception types from being handled during the reconnect logic." + +msgid "Whether all exceptions were successfully removed." +msgstr "Whether all exceptions were successfully removed." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Fetches the internal task or ``None`` if there isn't one running." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\ \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" + +msgid "Whether the task is being cancelled." +msgstr "Whether the task is being cancelled." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the internal task has failed. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Check if the task is currently running. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Changes the interval for the sleep time." + +msgid "The number of seconds between every iteration." +msgstr "The number of seconds between every iteration." + +msgid "The number of minutes between every iteration." +msgstr "The number of minutes between every iteration." + +msgid "The number of hours between every iteration." +msgstr "The number of hours between every iteration." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters. .. versionadded:: 2.0 .. note:: Duplicate times will be ignored, and only run once." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. This cannot be used in conjunction with the relative time parameters." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Duplicate times will be ignored, and only run once." + +msgid "An invalid value was given." +msgstr "An invalid value was given." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time. This cannot be used in conjunction with the relative time parameters. .. note:: Duplicate times will be ignored, and only run once. .. versionadded:: 2.0" + +msgid "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." +msgstr "The exact times to run this loop at. Either a non-empty list or a single value of :class:`datetime.time` should be passed. Timezones are supported. If no timezone is given for the times, it is assumed to represent UTC time." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "This cannot be used in conjunction with the relative time parameters." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "The number of loops to do, ``None`` if it should be an infinite loop." + +msgid "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." +msgstr "Whether to handle errors and restart the task using an exponential back-off algorithm similar to the one used in :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." + +msgid "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "The function was not a coroutine, an invalid value for the ``time`` parameter was passed, or ``time`` parameter was passed in conjunction with relative time parameters." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\, \\:py\\:class\\:\\`\\~discord.ext.tasks.Loop\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`LF\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:class\\:\\`\\~typing.Awaitable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\)\\]\\]`" + diff --git a/docs/locales/zh/LC_MESSAGES/faq.po b/docs/locales/zh/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..91d04f72fb --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Frequently Asked Questions" + +msgid "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." +msgstr "This is a list of Frequently Asked Questions regarding using ``Pycord`` and its extension modules. Feel free to suggest a new question or submit one via pull requests." + +msgid "Coroutines" +msgstr "Coroutines" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Questions regarding coroutines and asyncio belong here." + +msgid "What is a coroutine?" +msgstr "What is a coroutine?" + +msgid "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." +msgstr "A |coroutine_link|_ is a function that must be invoked with ``await`` or ``yield from``. When Python encounters an ``await`` it stops the function's execution at that point and works on other things until it comes back to that point and finishes off its work. This allows for your program to be doing multiple things at the same time without using threads or complicated multiprocessing." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" + +msgid "Where can I use ``await``\\?" +msgstr "Where can I use ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "You can only use ``await`` inside ``async def`` functions and nowhere else." + +msgid "What does \"blocking\" mean?" +msgstr "What does \"blocking\" mean?" + +msgid "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." +msgstr "In asynchronous programming a blocking call is essentially all the parts of the function that are not ``await``. Do not despair however, because not all forms of blocking are bad! Using blocking calls is inevitable, but you must work to make sure that you don't excessively block functions. Remember, if you block for too long then your bot will freeze since it has not stopped the function's execution at that point to do other things." + +msgid "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." +msgstr "If logging is enabled, this library will attempt to warn you that blocking is occurring with the message: ``Heartbeat blocked for more than N seconds.`` See :ref:`logging_setup` for details on enabling logging." + +msgid "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" +msgstr "A common source of blocking for too long is something like :func:`time.sleep`. Don't do that. Use :func:`asyncio.sleep` instead. Similar to this example: ::" + +msgid "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." +msgstr "Another common source of blocking for too long is using HTTP requests with the famous module :doc:`requests `. While :doc:`requests ` is an amazing module for non-asynchronous programming, it is not a good choice for :mod:`asyncio` because certain requests can block the event loop too long. Instead, use the :doc:`aiohttp ` library which is installed on the side with this library." + +msgid "Consider the following example: ::" +msgstr "Consider the following example: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "General questions regarding library usage belong here." + +msgid "Where can I find usage examples?" +msgstr "Where can I find usage examples?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Example code can be found in the `examples folder `_ in the repository." + +msgid "How do I set the \"Playing\" status?" +msgstr "How do I set the \"Playing\" status?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." + +msgid "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." +msgstr "It is highly discouraged to use :meth:`Client.change_presence` or API calls in :func:`on_ready` as this event may be called many times while running, not just once." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "There is a high chance of disconnecting if presences are changed right after connecting." + +msgid "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" +msgstr "The status type (playing, listening, streaming, watching) can be set using the :class:`ActivityType` enum. For memory optimisation purposes, some activities are offered in slimmed-down versions:" + +msgid ":class:`Game`" +msgstr ":class:`Game`" + +msgid ":class:`Streaming`" +msgstr ":class:`Streaming`" + +msgid "Putting both of these pieces of info together, you get the following: ::" +msgstr "Putting both of these pieces of info together, you get the following: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "How do I send a message to a specific channel?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "You must fetch the channel directly and then call the appropriate method. Example: ::" + +msgid "How do I send a DM?" +msgstr "How do I send a DM?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" + +msgid "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" +msgstr "If you are responding to an event, such as :func:`on_message`, you already have the :class:`User` object via :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "How do I get the ID of a sent message?" + +msgid ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" +msgstr ":meth:`abc.Messageable.send` returns the :class:`Message` that was sent. The ID of a message can be accessed via :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "How do I upload an image?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "To upload something to Discord you have to use the :class:`File` object." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "If you want to upload an image it's as simple as: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "If you have a file-like object you can do as follows: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" + +msgid "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" +msgstr "If you want to upload something from a URL, you will have to use an HTTP request using :doc:`aiohttp ` and then pass an :class:`io.BytesIO` instance to :class:`File` like so:" + +msgid "How can I add a reaction to a message?" +msgstr "How can I add a reaction to a message?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "You use the :meth:`Message.add_reaction` method." + +msgid "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" +msgstr "If you want to use unicode emoji, you must pass a valid unicode code point in a string. In your code, you can write this in a few different ways:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." +msgstr "In case you want to use emoji that come from a message, you already get their code points in the content without needing to do anything special. You **cannot** send ``':thumbsup:'`` style shorthands." + +msgid "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." +msgstr "For custom emoji, you should pass an instance of :class:`Emoji`. You can also pass a ``'<:name:id>'`` string, but if you can use said emoji, you should be able to use :meth:`Client.get_emoji` to get an emoji via ID or use :func:`utils.find`/ :func:`utils.get` on :attr:`Client.emojis` or :attr:`Guild.emojis` collections." + +msgid "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." +msgstr "The name and ID of a custom emoji can be found with the client by prefixing ``:custom_emoji:`` with a backslash. For example, sending the message ``\\:python3:`` with the client will result in ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "How do I pass a coroutine to the player's \"after\" function?" + +msgid "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." +msgstr "The library's music player launches on a separate thread, ergo it does not execute inside a coroutine. This does not mean that it is not possible to call a coroutine in the ``after`` parameter. To do so you must pass a callable that wraps up a couple of aspects." + +msgid "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." +msgstr "The first gotcha that you must be aware of is that calling a coroutine is not a thread-safe operation. Since we are technically in another thread, we must take caution in calling thread-safe operations so things do not bug out. Luckily for us, :mod:`asyncio` comes with a :func:`asyncio.run_coroutine_threadsafe` function that allows us to call a coroutine from another thread." + +msgid "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" +msgstr "However, this function returns a :class:`~concurrent.futures.Future` and to actually call it we have to fetch its result. Putting all of this together we can do the following: ::" + +msgid "How do I run something in the background?" +msgstr "How do I run something in the background?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Check the background_task.py example. `_" + +msgid "How do I get a specific model?" +msgstr "How do I get a specific model?" + +msgid "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" +msgstr "There are multiple ways of doing this. If you have a specific model's ID then you can use one of the following functions:" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid ":meth:`Client.get_message`" +msgstr ":meth:`Client.get_message`" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid ":meth:`Client.get_user`" +msgstr ":meth:`Client.get_user`" + +msgid ":meth:`Client.get_emoji`" +msgstr ":meth:`Client.get_emoji`" + +msgid ":meth:`Guild.get_member`" +msgstr ":meth:`Guild.get_member`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid "The following use an HTTP request:" +msgstr "The following use an HTTP request:" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid ":meth:`Client.fetch_guilds`" +msgstr ":meth:`Client.fetch_guilds`" + +msgid ":meth:`Client.fetch_guild`" +msgstr ":meth:`Client.fetch_guild`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`Guild.fetch_emojis`" +msgstr ":meth:`Guild.fetch_emojis`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." +msgstr "If the functions above do not help you, then use of :func:`utils.find` or :func:`utils.get` would serve some use in finding specific models." + +msgid "How do I make a web request?" +msgstr "How do I make a web request?" + +msgid "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." +msgstr "To make a request, you should use a non-blocking library. This library already uses and requires a 3rd party library for making requests, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "See `aiohttp's full documentation `_ for more information." + +msgid "How do I use a local image file for an embed image?" +msgstr "How do I use a local image file for an embed image?" + +msgid "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." +msgstr "Discord special-cases uploading an image attachment and using it within an embed so that it will not display separately, but instead in the embed's thumbnail, image, footer or author icon." + +msgid "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." +msgstr "To do so, upload the image normally with :meth:`abc.Messageable.send`, and set the embed's image URL to ``attachment://image.png``, where ``image.png`` is the filename of the image you will send." + +msgid "Is there an event for audit log entries being created?" +msgstr "Is there an event for audit log entries being created?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." + +msgid "Commands Extension" +msgstr "Commands Extension" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Questions regarding ``discord.ext.commands`` belong here." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Why does ``on_message`` make my commands stop working?" + +msgid "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" +msgstr "Overriding the default provided ``on_message`` forbids any extra commands from running. To fix this, add a ``bot.process_commands(message)`` line at the end of your ``on_message``. For example: ::" + +msgid "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" +msgstr "Alternatively, you can place your ``on_message`` logic into a **listener**. In this setup, you should not manually call ``bot.process_commands()``. This also allows you to do multiple things asynchronously in response to a message. Example::" + +msgid "Why do my arguments require quotes?" +msgstr "Why do my arguments require quotes?" + +msgid "In a simple command defined as: ::" +msgstr "In a simple command defined as: ::" + +msgid "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" +msgstr "Calling it via ``?echo a b c`` will only fetch the first argument and disregard the rest. To fix this you should either call it via ``?echo \"a b c\"`` or change the signature to have \"consume rest\" behaviour. Example: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "This will allow you to use ``?echo a b c`` without needing the quotes." + +msgid "How do I get the original ``message``\\?" +msgstr "How do I get the original ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." + +msgid "Example: ::" +msgstr "Example: ::" + +msgid "How do I make a subcommand?" +msgstr "How do I make a subcommand?" + +msgid "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." +msgstr "Use the :func:`~ext.commands.group` decorator. This will transform the callback into a :class:`~ext.commands.Group` which will allow you to add commands into the group operating as \"subcommands\". These groups can be arbitrarily nested as well." + +msgid "This could then be used as ``?git push origin master``." +msgstr "This could then be used as ``?git push origin master``." + diff --git a/docs/locales/zh/LC_MESSAGES/index.po b/docs/locales/zh/LC_MESSAGES/index.po new file mode 100644 index 0000000000..f6843e1e93 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Extensions" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Welcome to Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." + +msgid "**Features:**" +msgstr "**Features:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Modern Pythonic API using ``async``\\/``await`` syntax" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Sane rate limit handling that prevents 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Command extension to aid with bot creation" + +msgid "Easy to use with an object oriented design" +msgstr "Easy to use with an object oriented design" + +msgid "Optimised for both speed and memory" +msgstr "Optimised for both speed and memory" + +msgid "Getting started" +msgstr "Getting started" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Is this your first time using the library? This is the place to get started!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Working with Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Examples:** Many examples are available in the :resource:`repository `." + +msgid "Getting help" +msgstr "Getting help" + +msgid "If you're having trouble with something, these resources might help." +msgstr "If you're having trouble with something, these resources might help." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Try the :doc:`faq` first, it's got answers to all common questions." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Ask us and hang out with us in our :resource:`Discord ` server." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Report bugs in the :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuals" + +msgid "These pages go into great detail about everything the API can do." +msgstr "These pages go into great detail about everything the API can do." + +msgid "Core API" +msgstr "Core API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "These extensions help you during development when it comes to common tasks." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Bot commands framework" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task helpers" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - A pagination extension module" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "If you're looking for something related to the project itself, it's here." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - The changelog for the library." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - The version guarantees for the library." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." + diff --git a/docs/locales/zh/LC_MESSAGES/installing.po b/docs/locales/zh/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..f2d0f0d14d --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Installing Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." + +msgid "Prerequisites" +msgstr "Prerequisites" + +msgid "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." +msgstr "Pycord works with Python 3.8 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.7 or lower is not supported." + +msgid "Installing" +msgstr "Installing" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "For Windows users, this command should be used to install the pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "You can get the library directly from PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "If you are using Windows, then the following should be used instead: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "On Linux environments, installing voice requires getting the following dependencies:" + +msgid "`libffi `_" +msgstr "`libffi `_" + +msgid "`libnacl `_" +msgstr "`libnacl `_" + +msgid "`python3-dev `_" +msgstr "`python3-dev `_" + +msgid "For a Debian-based system, the following command will get these dependencies:" +msgstr "For a Debian-based system, the following command will get these dependencies:" + +msgid "Remember to check your permissions!" +msgstr "Remember to check your permissions!" + +msgid "Virtual Environments" +msgstr "Virtual Environments" + +msgid "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." +msgstr "Sometimes you want to keep libraries from polluting system installs or use a different version of libraries than the ones installed on the system. You might also not have permissions to install libraries system-wide. For this purpose, the standard library as of Python 3.3 comes with a concept called \"Virtual Environment\"s to help maintain these separate versions." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "However, for the quick and dirty:" + +msgid "Go to your project's working directory:" +msgstr "Go to your project's working directory:" + +msgid "Activate the virtual environment:" +msgstr "Activate the virtual environment:" + +msgid "On Windows you activate it with:" +msgstr "On Windows you activate it with:" + +msgid "Use pip like usual:" +msgstr "Use pip like usual:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Congratulations. You now have a virtual environment all set up." + +msgid "Basic Concepts" +msgstr "Basic Concepts" + +msgid "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." +msgstr "Pycord revolves around the concept of :ref:`events `. An event is something you listen to and then respond to. For example, when a message happens, you will receive an event about it that you can respond to." + +msgid "A quick example to showcase how events work:" +msgstr "A quick example to showcase how events work:" + diff --git a/docs/locales/zh/LC_MESSAGES/intents.po b/docs/locales/zh/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..7201bbd103 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "A Primer to Gateway Intents" + +msgid "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." +msgstr "In version 1.5 comes the introduction of :class:`Intents`. This is a radical change in how bots are written. An intent basically allows a bot to subscribe to specific buckets of events. The events that correspond to each intent is documented in the individual attribute of the :class:`Intents` documentation." + +msgid "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." +msgstr "These intents are passed to the constructor of :class:`Client` or its subclasses (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) with the ``intents`` argument." + +msgid "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." +msgstr "If intents are not passed, then the library defaults to every intent being enabled except the privileged intents, currently :attr:`Intents.members`, :attr:`Intents.presences`, and :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "What intents are needed?" + +msgid "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." +msgstr "The intents that are necessary for your bot can only be dictated by yourself. Each attribute in the :class:`Intents` class documents what :ref:`events ` it corresponds to and what kind of cache it enables." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Another example showing a bot that only deals with messages and guild information:" + +msgid "Privileged Intents" +msgstr "Privileged Intents" + +msgid "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." +msgstr "With the API change requiring bot owners to specify intents, some intents were restricted further and require more manual steps. These intents are called **privileged intents**." + +msgid "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" +msgstr "A privileged intent is one that requires you to go to the developer portal and manually enable it. To enable privileged intents do the following:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Make sure you're logged on to the `Discord website `_." + +msgid "Navigate to the `application page `_." +msgstr "Navigate to the `application page `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Click on the bot you want to enable privileged intents for." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigate to the bot tab on the left side of the screen." + +msgid "The bot tab in the application page." +msgstr "The bot tab in the application page." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." + +msgid "The privileged gateway intents selector." +msgstr "The privileged gateway intents selector." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." + +msgid "Do I need privileged intents?" +msgstr "Do I need privileged intents?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "This is a quick checklist to see if you need specific privileged intents." + +msgid "Presence Intent" +msgstr "Presence Intent" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Whether you use :attr:`Member.status` at all to track member statuses." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." + +msgid "Member Intent" +msgstr "Member Intent" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Whether you want to track member updates such as nickname or role changes." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Whether you want to track user updates such as usernames, avatars, discriminators, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Whether you want high accuracy member cache under :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Message Content Intent" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Whether you have a message based command system using ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." + +msgid "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." +msgstr "Whether you use message content in :func:`on_message_edit`, :func:`on_message_delete`, :func:`on_raw_message_edit`, :func:`on_raw_message_delete`." + +msgid "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." +msgstr "The bot can still receive message contents in DMs, when mentioned in guild messages, and for its own guild messages." + +msgid "Member Cache" +msgstr "Member Cache" + +msgid "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." +msgstr "Along with intents, Discord now further restricts the ability to cache members and expects bot authors to cache as little as is necessary. However, to properly maintain a cache the :attr:`Intents.members` intent is required in order to track the members who left and properly evict them." + +msgid "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." +msgstr "To aid with member cache where we don't need members to be cached, the library now has a :class:`MemberCacheFlags` flag to control the member cache. The documentation page for the class goes over the specific policies that are possible." + +msgid "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" +msgstr "It should be noted that certain things do not need a member cache since Discord will provide full member information if possible. For example:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." + +msgid ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." +msgstr ":func:`on_voice_state_update` will have the ``member`` parameter be a member even if cache is disabled." + +msgid ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." +msgstr ":func:`on_reaction_add` will have the ``user`` parameter be a member when in a guild even if cache is disabled." + +msgid ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." +msgstr ":func:`on_raw_reaction_add` will have :attr:`RawReactionActionEvent.member` be a member when in a guild even if cache is disabled." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "The reaction removal events do not have member information. This is a Discord limitation." + +msgid "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." +msgstr "Other events that take a :class:`Member` will require the use of the member cache. If absolute accuracy over the member cache is desirable, then it is advisable to have the :attr:`Intents.members` intent enabled." + +msgid "Retrieving Members" +msgstr "Retrieving Members" + +msgid "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" +msgstr "If the cache is disabled or you disable chunking guilds at startup, we might still need a way to load members. The library offers a few ways to do this:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Used to query members by a prefix matching nickname or username." + +msgid "This can also be used to query members by their user ID." +msgstr "This can also be used to query members by their user ID." + +msgid "This uses the gateway and not the HTTP." +msgstr "This uses the gateway and not the HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "This can be used to fetch the entire member list through the gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Used to fetch a member by ID through the HTTP API." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "used to fetch a large number of members through the HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." + +msgid "Troubleshooting" +msgstr "Troubleshooting" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Some common issues relating to the mandatory intent change." + +msgid "Where'd my members go?" +msgstr "Where'd my members go?" + +msgid "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." +msgstr "Due to an :ref:`API change ` Discord is now forcing developers who want member caching to explicitly opt-in to it. This is a Discord mandated change and there is no way to bypass it. In order to get members back you have to explicitly enable the :ref:`members privileged intent ` and change the :attr:`Intents.members` attribute to true." + +msgid "For example:" +msgstr "For example:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Why does ``on_ready`` take so long to fire?" + +msgid "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." +msgstr "As part of the API change regarding intents, Discord also changed how members are loaded in the beginning. Originally the library could request 75 guilds at once and only request members from guilds that have the :attr:`Guild.large` attribute set to ``True``. With the new intent changes, Discord mandates that we can only send 1 guild per request. This causes a 75x slowdown which is further compounded by the fact that *all* guilds, not just large guilds are being requested." + +msgid "There are a few solutions to fix this." +msgstr "There are a few solutions to fix this." + +msgid "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." +msgstr "The first solution is to request the privileged presences intent along with the privileged members intent and enable both of them. This allows the initial member list to contain online members just like the old gateway. Note that we're still limited to 1 guild per request but the number of guilds we request is significantly reduced." + +msgid "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." +msgstr "The second solution is to disable member chunking by setting ``chunk_guilds_at_startup`` to ``False`` when constructing a client. Then, when chunking for a guild is necessary you can use the various techniques to :ref:`retrieve members `." + +msgid "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." +msgstr "To illustrate the slowdown caused by the API change, take a bot who is in 840 guilds and 95 of these guilds are \"large\" (over 250 members)." + +msgid "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." +msgstr "Under the original system this would result in 2 requests to fetch the member list (75 guilds, 20 guilds) roughly taking 60 seconds. With :attr:`Intents.members` but not :attr:`Intents.presences` this requires 840 requests, with a rate limit of 120 requests per 60 seconds means that due to waiting for the rate limit it totals to around 7 minutes of waiting for the rate limit to fetch all the members. With both :attr:`Intents.members` and :attr:`Intents.presences` we mostly get the old behaviour so we're only required to request for the 95 guilds that are large, this is slightly less than our rate limit so it's close to the original timing to fetch the member list." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." + diff --git a/docs/locales/zh/LC_MESSAGES/logging.po b/docs/locales/zh/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..8130d84e9f --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Setting Up Logging" + +msgid "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" +msgstr "*Pycord* logs errors and debug information via the :mod:`logging` python module. It is strongly recommended that the logging module is configured, as no errors or warnings will be output if it is not set up. Configuration of the ``logging`` module can be as simple as::" + +msgid "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." +msgstr "Placed at the start of the application. This will output the logs from discord as well as other libraries that use the ``logging`` module directly to the console." + +msgid "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." +msgstr "The optional ``level`` argument specifies what level of events to log out and can be any of ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, and ``DEBUG`` and if not specified defaults to ``WARNING``." + +msgid "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" +msgstr "More advanced setups are possible with the :mod:`logging` module. For example to write the logs to a file called ``discord.log`` instead of outputting them to the console the following snippet can be used::" + +msgid "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." +msgstr "This is recommended, especially at verbose levels such as ``INFO`` and ``DEBUG``, as there are a lot of events logged and it would clog the stdout of your program." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "For more information, check the documentation and tutorial of the :mod:`logging` module." + diff --git a/docs/locales/zh/LC_MESSAGES/migrating_to_v1.po b/docs/locales/zh/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ea81171aff --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Migrating to v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." + +msgid "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." +msgstr "Part of the redesign involves making things more easy to use and natural. Things are done on the :ref:`models ` instead of requiring a :class:`Client` instance to do any work." + +msgid "Python Version Change" +msgstr "Python Version Change" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." +msgstr "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.7 or higher, the library had to remove support for Python versions lower than 3.5.3, which essentially means that **support for Python 3.4 is dropped**." + +msgid "Major Model Changes" +msgstr "Major Model Changes" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Below are major model changes that have happened in v1.0" + +msgid "Snowflakes are int" +msgstr "Snowflakes are int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." + +msgid "Quick example: ::" +msgstr "Quick example: ::" + +msgid "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." +msgstr "This change allows for fewer errors when using the Copy ID feature in the official client since you no longer have to wrap it in quotes and allows for optimisation opportunities by allowing ETF to be used instead of JSON internally." + +msgid "Server is now Guild" +msgstr "Server is now Guild" + +msgid "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." +msgstr "The official API documentation calls the \"Server\" concept a \"Guild\" instead. In order to be more consistent with the API documentation when necessary, the model has been renamed to :class:`Guild` and all instances referring to it has been changed as well." + +msgid "A list of changes is as follows:" +msgstr "A list of changes is as follows:" + +msgid "Before" +msgstr "Before" + +msgid "After" +msgstr "After" + +msgid "``Message.server``" +msgstr "``Message.server``" + +msgid ":attr:`Message.guild`" +msgstr ":attr:`Message.guild`" + +msgid "``Channel.server``" +msgstr "``Channel.server``" + +msgid ":attr:`.GuildChannel.guild`" +msgstr ":attr:`.GuildChannel.guild`" + +msgid "``Client.servers``" +msgstr "``Client.servers``" + +msgid ":attr:`Client.guilds`" +msgstr ":attr:`Client.guilds`" + +msgid "``Client.get_server``" +msgstr "``Client.get_server``" + +msgid ":meth:`Client.get_guild`" +msgstr ":meth:`Client.get_guild`" + +msgid "``Emoji.server``" +msgstr "``Emoji.server``" + +msgid ":attr:`Emoji.guild`" +msgstr ":attr:`Emoji.guild`" + +msgid "``Role.server``" +msgstr "``Role.server``" + +msgid ":attr:`Role.guild`" +msgstr ":attr:`Role.guild`" + +msgid "``Invite.server``" +msgstr "``Invite.server``" + +msgid ":attr:`Invite.guild`" +msgstr ":attr:`Invite.guild`" + +msgid "``Member.server``" +msgstr "``Member.server``" + +msgid ":attr:`Member.guild`" +msgstr ":attr:`Member.guild`" + +msgid "``Permissions.manage_server``" +msgstr "``Permissions.manage_server``" + +msgid ":attr:`Permissions.manage_guild`" +msgstr ":attr:`Permissions.manage_guild`" + +msgid "``VoiceClient.server``" +msgstr "``VoiceClient.server``" + +msgid ":attr:`VoiceClient.guild`" +msgstr ":attr:`VoiceClient.guild`" + +msgid "``Client.create_server``" +msgstr "``Client.create_server``" + +msgid ":meth:`Client.create_guild`" +msgstr ":meth:`Client.create_guild`" + +msgid "Models are Stateful" +msgstr "Models are Stateful" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." + +msgid "A list of these changes is enumerated below." +msgstr "A list of these changes is enumerated below." + +msgid "``Client.add_reaction``" +msgstr "``Client.add_reaction``" + +msgid ":meth:`Message.add_reaction`" +msgstr ":meth:`Message.add_reaction`" + +msgid "``Client.add_roles``" +msgstr "``Client.add_roles``" + +msgid ":meth:`Member.add_roles`" +msgstr ":meth:`Member.add_roles`" + +msgid "``Client.ban``" +msgstr "``Client.ban``" + +msgid ":meth:`Member.ban` or :meth:`Guild.ban`" +msgstr ":meth:`Member.ban` or :meth:`Guild.ban`" + +msgid "``Client.change_nickname``" +msgstr "``Client.change_nickname``" + +msgid ":meth:`Member.edit`" +msgstr ":meth:`Member.edit`" + +msgid "``Client.clear_reactions``" +msgstr "``Client.clear_reactions``" + +msgid ":meth:`Message.clear_reactions`" +msgstr ":meth:`Message.clear_reactions`" + +msgid "``Client.create_channel``" +msgstr "``Client.create_channel``" + +msgid ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" +msgstr ":meth:`Guild.create_text_channel` and :meth:`Guild.create_voice_channel`" + +msgid "``Client.create_custom_emoji``" +msgstr "``Client.create_custom_emoji``" + +msgid ":meth:`Guild.create_custom_emoji`" +msgstr ":meth:`Guild.create_custom_emoji`" + +msgid "``Client.create_invite``" +msgstr "``Client.create_invite``" + +msgid ":meth:`abc.GuildChannel.create_invite`" +msgstr ":meth:`abc.GuildChannel.create_invite`" + +msgid "``Client.create_role``" +msgstr "``Client.create_role``" + +msgid ":meth:`Guild.create_role`" +msgstr ":meth:`Guild.create_role`" + +msgid "``Client.delete_channel``" +msgstr "``Client.delete_channel``" + +msgid ":meth:`abc.GuildChannel.delete`" +msgstr ":meth:`abc.GuildChannel.delete`" + +msgid "``Client.delete_channel_permissions``" +msgstr "``Client.delete_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" +msgstr ":meth:`abc.GuildChannel.set_permissions` with ``overwrite`` set to ``None``" + +msgid "``Client.delete_custom_emoji``" +msgstr "``Client.delete_custom_emoji``" + +msgid ":meth:`Emoji.delete`" +msgstr ":meth:`Emoji.delete`" + +msgid "``Client.delete_invite``" +msgstr "``Client.delete_invite``" + +msgid ":meth:`Invite.delete` or :meth:`Client.delete_invite`" +msgstr ":meth:`Invite.delete` or :meth:`Client.delete_invite`" + +msgid "``Client.delete_message``" +msgstr "``Client.delete_message``" + +msgid ":meth:`Message.delete`" +msgstr ":meth:`Message.delete`" + +msgid "``Client.delete_messages``" +msgstr "``Client.delete_messages``" + +msgid ":meth:`TextChannel.delete_messages`" +msgstr ":meth:`TextChannel.delete_messages`" + +msgid "``Client.delete_role``" +msgstr "``Client.delete_role``" + +msgid ":meth:`Role.delete`" +msgstr ":meth:`Role.delete`" + +msgid "``Client.delete_server``" +msgstr "``Client.delete_server``" + +msgid ":meth:`Guild.delete`" +msgstr ":meth:`Guild.delete`" + +msgid "``Client.edit_channel``" +msgstr "``Client.edit_channel``" + +msgid ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" +msgstr ":meth:`TextChannel.edit` or :meth:`VoiceChannel.edit`" + +msgid "``Client.edit_channel_permissions``" +msgstr "``Client.edit_channel_permissions``" + +msgid ":meth:`abc.GuildChannel.set_permissions`" +msgstr ":meth:`abc.GuildChannel.set_permissions`" + +msgid "``Client.edit_custom_emoji``" +msgstr "``Client.edit_custom_emoji``" + +msgid ":meth:`Emoji.edit`" +msgstr ":meth:`Emoji.edit`" + +msgid "``Client.edit_message``" +msgstr "``Client.edit_message``" + +msgid ":meth:`Message.edit`" +msgstr ":meth:`Message.edit`" + +msgid "``Client.edit_profile``" +msgstr "``Client.edit_profile``" + +msgid ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" +msgstr ":meth:`ClientUser.edit` (you get this from :attr:`Client.user`)" + +msgid "``Client.edit_role``" +msgstr "``Client.edit_role``" + +msgid ":meth:`Role.edit`" +msgstr ":meth:`Role.edit`" + +msgid "``Client.edit_server``" +msgstr "``Client.edit_server``" + +msgid ":meth:`Guild.edit`" +msgstr ":meth:`Guild.edit`" + +msgid "``Client.estimate_pruned_members``" +msgstr "``Client.estimate_pruned_members``" + +msgid ":meth:`Guild.estimate_pruned_members`" +msgstr ":meth:`Guild.estimate_pruned_members`" + +msgid "``Client.get_all_emojis``" +msgstr "``Client.get_all_emojis``" + +msgid ":attr:`Client.emojis`" +msgstr ":attr:`Client.emojis`" + +msgid "``Client.get_bans``" +msgstr "``Client.get_bans``" + +msgid ":meth:`Guild.bans`" +msgstr ":meth:`Guild.bans`" + +msgid "``Client.get_invite``" +msgstr "``Client.get_invite``" + +msgid ":meth:`Client.fetch_invite`" +msgstr ":meth:`Client.fetch_invite`" + +msgid "``Client.get_message``" +msgstr "``Client.get_message``" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid "``Client.get_reaction_users``" +msgstr "``Client.get_reaction_users``" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "``Client.get_user_info``" +msgstr "``Client.get_user_info``" + +msgid ":meth:`Client.fetch_user`" +msgstr ":meth:`Client.fetch_user`" + +msgid "``Client.invites_from``" +msgstr "``Client.invites_from``" + +msgid ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" +msgstr ":meth:`abc.GuildChannel.invites` or :meth:`Guild.invites`" + +msgid "``Client.join_voice_channel``" +msgstr "``Client.join_voice_channel``" + +msgid ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" +msgstr ":meth:`VoiceChannel.connect` (see :ref:`migrating_1_0_voice`)" + +msgid "``Client.kick``" +msgstr "``Client.kick``" + +msgid ":meth:`Guild.kick` or :meth:`Member.kick`" +msgstr ":meth:`Guild.kick` or :meth:`Member.kick`" + +msgid "``Client.leave_server``" +msgstr "``Client.leave_server``" + +msgid ":meth:`Guild.leave`" +msgstr ":meth:`Guild.leave`" + +msgid "``Client.logs_from``" +msgstr "``Client.logs_from``" + +msgid ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" +msgstr ":meth:`abc.Messageable.history` (see :ref:`migrating_1_0_async_iter`)" + +msgid "``Client.move_channel``" +msgstr "``Client.move_channel``" + +msgid "``Client.move_member``" +msgstr "``Client.move_member``" + +msgid "``Client.move_role``" +msgstr "``Client.move_role``" + +msgid "``Client.pin_message``" +msgstr "``Client.pin_message``" + +msgid ":meth:`Message.pin`" +msgstr ":meth:`Message.pin`" + +msgid "``Client.pins_from``" +msgstr "``Client.pins_from``" + +msgid ":meth:`abc.Messageable.pins`" +msgstr ":meth:`abc.Messageable.pins`" + +msgid "``Client.prune_members``" +msgstr "``Client.prune_members``" + +msgid ":meth:`Guild.prune_members`" +msgstr ":meth:`Guild.prune_members`" + +msgid "``Client.purge_from``" +msgstr "``Client.purge_from``" + +msgid ":meth:`TextChannel.purge`" +msgstr ":meth:`TextChannel.purge`" + +msgid "``Client.remove_reaction``" +msgstr "``Client.remove_reaction``" + +msgid ":meth:`Message.remove_reaction`" +msgstr ":meth:`Message.remove_reaction`" + +msgid "``Client.remove_roles``" +msgstr "``Client.remove_roles``" + +msgid ":meth:`Member.remove_roles`" +msgstr ":meth:`Member.remove_roles`" + +msgid "``Client.replace_roles``" +msgstr "``Client.replace_roles``" + +msgid "``Client.send_file``" +msgstr "``Client.send_file``" + +msgid ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" +msgstr ":meth:`abc.Messageable.send` (see :ref:`migrating_1_0_sending_messages`)" + +msgid "``Client.send_message``" +msgstr "``Client.send_message``" + +msgid "``Client.send_typing``" +msgstr "``Client.send_typing``" + +msgid ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" +msgstr ":meth:`abc.Messageable.trigger_typing` (use :meth:`abc.Messageable.typing`)" + +msgid "``Client.server_voice_state``" +msgstr "``Client.server_voice_state``" + +msgid "``Client.start_private_message``" +msgstr "``Client.start_private_message``" + +msgid ":meth:`User.create_dm`" +msgstr ":meth:`User.create_dm`" + +msgid "``Client.unban``" +msgstr "``Client.unban``" + +msgid ":meth:`Guild.unban` or :meth:`Member.unban`" +msgstr ":meth:`Guild.unban` or :meth:`Member.unban`" + +msgid "``Client.unpin_message``" +msgstr "``Client.unpin_message``" + +msgid ":meth:`Message.unpin`" +msgstr ":meth:`Message.unpin`" + +msgid "``Client.wait_for_message``" +msgstr "``Client.wait_for_message``" + +msgid ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" +msgstr ":meth:`Client.wait_for` (see :ref:`migrating_1_0_wait_for`)" + +msgid "``Client.wait_for_reaction``" +msgstr "``Client.wait_for_reaction``" + +msgid "``Client.wait_until_login``" +msgstr "``Client.wait_until_login``" + +msgid "Removed" +msgstr "Removed" + +msgid "``Client.wait_until_ready``" +msgstr "``Client.wait_until_ready``" + +msgid "No change" +msgstr "No change" + +msgid "Property Changes" +msgstr "Property Changes" + +msgid "In order to be a bit more consistent, certain things that were properties were changed to methods instead." +msgstr "In order to be a bit more consistent, certain things that were properties were changed to methods instead." + +msgid "The following are now methods instead of properties (requires parentheses):" +msgstr "The following are now methods instead of properties (requires parentheses):" + +msgid ":meth:`Role.is_default`" +msgstr ":meth:`Role.is_default`" + +msgid ":meth:`Client.is_ready`" +msgstr ":meth:`Client.is_ready`" + +msgid ":meth:`Client.is_closed`" +msgstr ":meth:`Client.is_closed`" + +msgid "Dict Value Change" +msgstr "Dict Value Change" + +msgid "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." +msgstr "Prior to v1.0 some aggregating properties that retrieved models would return \"dict view\" objects." + +msgid "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." +msgstr "As a consequence, when the dict would change size while you would iterate over it, a RuntimeError would be raised and crash the task. To alleviate this, the \"dict view\" objects were changed into lists." + +msgid "The following views were changed to a list:" +msgstr "The following views were changed to a list:" + +msgid ":attr:`Client.users` (new in v1.0)" +msgstr ":attr:`Client.users` (new in v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (new in v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (new in v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (new in v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Voice State Changes" + +msgid "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." +msgstr "Earlier, in v0.11.0 a :class:`VoiceState` class was added to refer to voice states along with a :attr:`Member.voice` attribute to refer to it." + +msgid "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." +msgstr "However, it was transparent to the user. In an effort to make the library save more memory, the voice state change is now more visible." + +msgid "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." +msgstr "The only way to access voice attributes is via the :attr:`Member.voice` attribute. Note that if the member does not have a voice state this attribute can be ``None``." + +msgid "User and Member Type Split" +msgstr "User and Member Type Split" + +msgid "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." +msgstr "In v1.0 to save memory, :class:`User` and :class:`Member` are no longer inherited. Instead, they are \"flattened\" by having equivalent properties that map out to the functional underlying :class:`User`. Thus, there is no functional change in how they are used. However this breaks :func:`isinstance` checks and thus is something to keep in mind." + +msgid "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." +msgstr "These memory savings were accomplished by having a global :class:`User` cache, and as a positive consequence you can now easily fetch a :class:`User` by their ID by using the new :meth:`Client.get_user`. You can also get a list of all :class:`User` your client can see with :attr:`Client.users`." + +msgid "Channel Type Split" +msgstr "Channel Type Split" + +msgid "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." +msgstr "Prior to v1.0, channels were two different types, ``Channel`` and ``PrivateChannel`` with a ``is_private`` property to help differentiate between them." + +msgid "In order to save memory the channels have been split into 4 different types:" +msgstr "In order to save memory the channels have been split into 4 different types:" + +msgid ":class:`TextChannel` for guild text channels." +msgstr ":class:`TextChannel` for guild text channels." + +msgid ":class:`VoiceChannel` for guild voice channels." +msgstr ":class:`VoiceChannel` for guild voice channels." + +msgid ":class:`DMChannel` for DM channels with members." +msgstr ":class:`DMChannel` for DM channels with members." + +msgid ":class:`GroupChannel` for Group DM channels with members." +msgstr ":class:`GroupChannel` for Group DM channels with members." + +msgid "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." +msgstr "With this split came the removal of the ``is_private`` attribute. You should now use :func:`isinstance`." + +msgid "The types are split into two different :ref:`discord_api_abcs`:" +msgstr "The types are split into two different :ref:`discord_api_abcs`:" + +msgid ":class:`abc.GuildChannel` for guild channels." +msgstr ":class:`abc.GuildChannel` for guild channels." + +msgid ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." +msgstr ":class:`abc.PrivateChannel` for private channels (DMs and group DMs)." + +msgid "So to check if something is a guild channel you would do: ::" +msgstr "So to check if something is a guild channel you would do: ::" + +msgid "And to check if it's a private channel you would do: ::" +msgstr "And to check if it's a private channel you would do: ::" + +msgid "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" +msgstr "Of course, if you're looking for only a specific type you can pass that too, e.g. ::" + +msgid "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." +msgstr "With this type split also came event changes, which are enumerated in :ref:`migrating_1_0_event_changes`." + +msgid "Miscellaneous Model Changes" +msgstr "Miscellaneous Model Changes" + +msgid "There were lots of other things added or removed in the models in general." +msgstr "There were lots of other things added or removed in the models in general." + +msgid "They will be enumerated here." +msgstr "They will be enumerated here." + +msgid "**Removed**" +msgstr "**Removed**" + +msgid ":meth:`Client.login` no longer accepts email and password logins." +msgstr ":meth:`Client.login` no longer accepts email and password logins." + +msgid "Use a token and ``bot=False``." +msgstr "Use a token and ``bot=False``." + +msgid "Use :attr:`Client.emojis` instead." +msgstr "Use :attr:`Client.emojis` instead." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Use read-only :attr:`Client.cached_messages` instead." + +msgid "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." +msgstr "``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone." + +msgid "Use :meth:`Client.wait_for` instead." +msgstr "Use :meth:`Client.wait_for` instead." + +msgid "``Channel.voice_members``" +msgstr "``Channel.voice_members``" + +msgid "Use :attr:`VoiceChannel.members` instead." +msgstr "Use :attr:`VoiceChannel.members` instead." + +msgid "``Channel.is_private``" +msgstr "``Channel.is_private``" + +msgid "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." +msgstr "Use ``isinstance`` instead with one of the :ref:`discord_api_abcs` instead." + +msgid "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." +msgstr "e.g. ``isinstance(channel, discord.abc.GuildChannel)`` will check if it isn't a private channel." + +msgid "``Client.accept_invite``" +msgstr "``Client.accept_invite``" + +msgid "There is no replacement for this one. This functionality is deprecated API wise." +msgstr "There is no replacement for this one. This functionality is deprecated API wise." + +msgid "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" +msgstr "``Guild.default_channel`` / ``Server.default_channel`` and ``Channel.is_default``" + +msgid "The concept of a default channel was removed from Discord. See `#329 `_." +msgstr "The concept of a default channel was removed from Discord. See `#329 `_." + +msgid "``Message.edited_timestamp``" +msgstr "``Message.edited_timestamp``" + +msgid "Use :attr:`Message.edited_at` instead." +msgstr "Use :attr:`Message.edited_at` instead." + +msgid "``Message.timestamp``" +msgstr "``Message.timestamp``" + +msgid "Use :attr:`Message.created_at` instead." +msgstr "Use :attr:`Message.created_at` instead." + +msgid "``Colour.to_tuple()``" +msgstr "``Colour.to_tuple()``" + +msgid "Use :meth:`Colour.to_rgb` instead." +msgstr "Use :meth:`Colour.to_rgb` instead." + +msgid "``Permissions.view_audit_logs``" +msgstr "``Permissions.view_audit_logs``" + +msgid "Use :attr:`Permissions.view_audit_log` instead." +msgstr "Use :attr:`Permissions.view_audit_log` instead." + +msgid "``Member.game``" +msgstr "``Member.game``" + +msgid "Use :attr:`Member.activities` instead." +msgstr "Use :attr:`Member.activities` instead." + +msgid "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" +msgstr "``Guild.role_hierarchy`` / ``Server.role_hierarchy``" + +msgid "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." +msgstr "Use :attr:`Guild.roles` instead. Note that while sorted, it is in the opposite order of what the old ``Guild.role_hierarchy`` used to be." + +msgid "**Changed**" +msgstr "**Changed**" + +msgid ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." +msgstr ":attr:`Member.avatar_url` and :attr:`User.avatar_url` now return the default avatar if a custom one is not set." + +msgid ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." +msgstr ":attr:`Message.embeds` is now a list of :class:`Embed` instead of :class:`dict` objects." + +msgid ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." +msgstr ":attr:`Message.attachments` is now a list of :class:`Attachment` instead of :class:`dict` object." + +msgid ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." +msgstr ":attr:`Guild.roles` is now sorted through hierarchy. The first element is always the ``@everyone`` role." + +msgid "**Added**" +msgstr "**Added**" + +msgid ":class:`Attachment` to represent a discord attachment." +msgstr ":class:`Attachment` to represent a discord attachment." + +msgid ":class:`CategoryChannel` to represent a channel category." +msgstr ":class:`CategoryChannel` to represent a channel category." + +msgid ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." +msgstr ":attr:`VoiceChannel.members` for fetching members connected to a voice channel." + +msgid ":attr:`TextChannel.members` for fetching members that can see the channel." +msgstr ":attr:`TextChannel.members` for fetching members that can see the channel." + +msgid ":attr:`Role.members` for fetching members that have the role." +msgstr ":attr:`Role.members` for fetching members that have the role." + +msgid ":attr:`Guild.text_channels` for fetching text channels only." +msgstr ":attr:`Guild.text_channels` for fetching text channels only." + +msgid ":attr:`Guild.voice_channels` for fetching voice channels only." +msgstr ":attr:`Guild.voice_channels` for fetching voice channels only." + +msgid ":attr:`Guild.categories` for fetching channel categories only." +msgstr ":attr:`Guild.categories` for fetching channel categories only." + +msgid ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." +msgstr ":attr:`TextChannel.category` and :attr:`VoiceChannel.category` to get the category a channel belongs to." + +msgid ":meth:`Guild.by_category` to get channels grouped by their category." +msgstr ":meth:`Guild.by_category` to get channels grouped by their category." + +msgid ":attr:`Guild.chunked` to check member chunking status." +msgstr ":attr:`Guild.chunked` to check member chunking status." + +msgid ":attr:`Guild.explicit_content_filter` to fetch the content filter." +msgstr ":attr:`Guild.explicit_content_filter` to fetch the content filter." + +msgid ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." +msgstr ":attr:`Guild.shard_id` to get a guild's Shard ID if you're sharding." + +msgid ":attr:`Client.users` to get all visible :class:`User` instances." +msgstr ":attr:`Client.users` to get all visible :class:`User` instances." + +msgid ":meth:`Client.get_user` to get a :class:`User` by ID." +msgstr ":meth:`Client.get_user` to get a :class:`User` by ID." + +msgid ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." +msgstr ":meth:`User.avatar_url_as` to get an avatar in a specific size or format." + +msgid ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." +msgstr ":meth:`Guild.vanity_invite` to fetch the guild's vanity invite." + +msgid ":meth:`Guild.audit_logs` to fetch the guild's audit logs." +msgstr ":meth:`Guild.audit_logs` to fetch the guild's audit logs." + +msgid ":attr:`Message.webhook_id` to fetch the message's webhook ID." +msgstr ":attr:`Message.webhook_id` to fetch the message's webhook ID." + +msgid ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." +msgstr ":attr:`Message.activity` and :attr:`Message.application` for Rich Presence related information." + +msgid ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." +msgstr ":meth:`TextChannel.is_nsfw` to check if a text channel is NSFW." + +msgid ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." +msgstr ":meth:`Colour.from_rgb` to construct a :class:`Colour` from RGB tuple." + +msgid ":meth:`Guild.get_role` to get a role by its ID." +msgstr ":meth:`Guild.get_role` to get a role by its ID." + +msgid "Sending Messages" +msgstr "Sending Messages" + +msgid "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." +msgstr "One of the changes that were done was the merger of the previous ``Client.send_message`` and ``Client.send_file`` functionality into a single method, :meth:`~abc.Messageable.send`." + +msgid "Basically: ::" +msgstr "Basically: ::" + +msgid "This supports everything that the old ``send_message`` supported such as embeds: ::" +msgstr "This supports everything that the old ``send_message`` supported such as embeds: ::" + +msgid "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" +msgstr "There is a caveat with sending files however, as this functionality was expanded to support multiple file attachments, you must now use a :class:`File` pseudo-namedtuple to upload a single file. ::" + +msgid "This change was to facilitate multiple file uploads: ::" +msgstr "This change was to facilitate multiple file uploads: ::" + +msgid "Asynchronous Iterators" +msgstr "Asynchronous Iterators" + +msgid "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." +msgstr "Prior to v1.0, certain functions like ``Client.logs_from`` would return a different type if done in Python 3.4 or 3.5+." + +msgid "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." +msgstr "In v1.0, this change has been reverted and will now return a singular type meeting an abstract concept called :class:`AsyncIterator`." + +msgid "This allows you to iterate over it like normal: ::" +msgstr "This allows you to iterate over it like normal: ::" + +msgid "Or turn it into a list: ::" +msgstr "Or turn it into a list: ::" + +msgid "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" +msgstr "A handy aspect of returning :class:`AsyncIterator` is that it allows you to chain functions together such as :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter`: ::" + +msgid "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." +msgstr "The functions passed to :meth:`AsyncIterator.map` or :meth:`AsyncIterator.filter` can be either coroutines or regular functions." + +msgid "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" +msgstr "You can also get single elements a la :func:`discord.utils.find` or :func:`discord.utils.get` via :meth:`AsyncIterator.get` or :meth:`AsyncIterator.find`: ::" + +msgid "The following return :class:`AsyncIterator`:" +msgstr "The following return :class:`AsyncIterator`:" + +msgid ":meth:`abc.Messageable.history`" +msgstr ":meth:`abc.Messageable.history`" + +msgid ":meth:`Guild.audit_logs`" +msgstr ":meth:`Guild.audit_logs`" + +msgid "Event Changes" +msgstr "Event Changes" + +msgid "A lot of events have gone through some changes." +msgstr "A lot of events have gone through some changes." + +msgid "Many events with ``server`` in the name were changed to use ``guild`` instead." +msgstr "Many events with ``server`` in the name were changed to use ``guild`` instead." + +msgid "Before:" +msgstr "Before:" + +msgid "``on_server_join``" +msgstr "``on_server_join``" + +msgid "``on_server_remove``" +msgstr "``on_server_remove``" + +msgid "``on_server_update``" +msgstr "``on_server_update``" + +msgid "``on_server_role_create``" +msgstr "``on_server_role_create``" + +msgid "``on_server_role_delete``" +msgstr "``on_server_role_delete``" + +msgid "``on_server_role_update``" +msgstr "``on_server_role_update``" + +msgid "``on_server_emojis_update``" +msgstr "``on_server_emojis_update``" + +msgid "``on_server_available``" +msgstr "``on_server_available``" + +msgid "``on_server_unavailable``" +msgstr "``on_server_unavailable``" + +msgid "After:" +msgstr "After:" + +msgid ":func:`on_guild_join`" +msgstr ":func:`on_guild_join`" + +msgid ":func:`on_guild_remove`" +msgstr ":func:`on_guild_remove`" + +msgid ":func:`on_guild_update`" +msgstr ":func:`on_guild_update`" + +msgid ":func:`on_guild_role_create`" +msgstr ":func:`on_guild_role_create`" + +msgid ":func:`on_guild_role_delete`" +msgstr ":func:`on_guild_role_delete`" + +msgid ":func:`on_guild_role_update`" +msgstr ":func:`on_guild_role_update`" + +msgid ":func:`on_guild_emojis_update`" +msgstr ":func:`on_guild_emojis_update`" + +msgid ":func:`on_guild_available`" +msgstr ":func:`on_guild_available`" + +msgid ":func:`on_guild_unavailable`" +msgstr ":func:`on_guild_unavailable`" + +msgid "The :func:`on_voice_state_update` event has received an argument change." +msgstr "The :func:`on_voice_state_update` event has received an argument change." + +msgid "Before: ::" +msgstr "Before: ::" + +msgid "After: ::" +msgstr "After: ::" + +msgid "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." +msgstr "Instead of two :class:`Member` objects, the new event takes one :class:`Member` object and two :class:`VoiceState` objects." + +msgid "The :func:`on_guild_emojis_update` event has received an argument change." +msgstr "The :func:`on_guild_emojis_update` event has received an argument change." + +msgid "The first argument is now the :class:`Guild` that the emojis were updated from." +msgstr "The first argument is now the :class:`Guild` that the emojis were updated from." + +msgid "The :func:`on_member_ban` event has received an argument change as well:" +msgstr "The :func:`on_member_ban` event has received an argument change as well:" + +msgid "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." +msgstr "As part of the change, the event can either receive a :class:`User` or :class:`Member`. To help in the cases that have :class:`User`, the :class:`Guild` is provided as the first parameter." + +msgid "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." +msgstr "The ``on_channel_`` events have received a type level split (see :ref:`migrating_1_0_channel_split`)." + +msgid "``on_channel_delete``" +msgstr "``on_channel_delete``" + +msgid "``on_channel_create``" +msgstr "``on_channel_create``" + +msgid "``on_channel_update``" +msgstr "``on_channel_update``" + +msgid ":func:`on_guild_channel_delete`" +msgstr ":func:`on_guild_channel_delete`" + +msgid ":func:`on_guild_channel_create`" +msgstr ":func:`on_guild_channel_create`" + +msgid ":func:`on_guild_channel_update`" +msgstr ":func:`on_guild_channel_update`" + +msgid ":func:`on_private_channel_delete`" +msgstr ":func:`on_private_channel_delete`" + +msgid ":func:`on_private_channel_create`" +msgstr ":func:`on_private_channel_create`" + +msgid ":func:`on_private_channel_update`" +msgstr ":func:`on_private_channel_update`" + +msgid "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." +msgstr "The ``on_guild_channel_`` events correspond to :class:`abc.GuildChannel` being updated (i.e. :class:`TextChannel` and :class:`VoiceChannel`) and the ``on_private_channel_`` events correspond to :class:`abc.PrivateChannel` being updated (i.e. :class:`DMChannel` and :class:`GroupChannel`)." + +msgid "Voice Changes" +msgstr "Voice Changes" + +msgid "Voice sending has gone through a complete redesign." +msgstr "Voice sending has gone through a complete redesign." + +msgid "In particular:" +msgstr "In particular:" + +msgid "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." +msgstr "Connection is done through :meth:`VoiceChannel.connect` instead of ``Client.join_voice_channel``." + +msgid "You no longer create players and operate on them (you no longer store them)." +msgstr "You no longer create players and operate on them (you no longer store them)." + +msgid "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." +msgstr "You instead request :class:`VoiceClient` to play an :class:`AudioSource` via :meth:`VoiceClient.play`." + +msgid "There are different built-in :class:`AudioSource`\\s." +msgstr "There are different built-in :class:`AudioSource`\\s." + +msgid ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" +msgstr ":class:`FFmpegPCMAudio` is the equivalent of ``create_ffmpeg_player``" + +msgid "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." +msgstr "create_ffmpeg_player/create_stream_player/create_ytdl_player have all been removed." + +msgid "The goal is to create :class:`AudioSource` instead." +msgstr "The goal is to create :class:`AudioSource` instead." + +msgid "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." +msgstr "Using :meth:`VoiceClient.play` will not return an ``AudioPlayer``." + +msgid "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." +msgstr "Instead, it's \"flattened\" like :class:`User` -> :class:`Member` is." + +msgid "The ``after`` parameter now takes a single parameter (the error)." +msgstr "The ``after`` parameter now takes a single parameter (the error)." + +msgid "Basically:" +msgstr "Basically:" + +msgid "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." +msgstr "With the changed :class:`AudioSource` design, you can now change the source that the :class:`VoiceClient` is playing at runtime via :attr:`VoiceClient.source`." + +msgid "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" +msgstr "For example, you can add a :class:`PCMVolumeTransformer` to allow changing the volume: ::" + +msgid "An added benefit of the redesign is that it will be much more resilient towards reconnections:" +msgstr "An added benefit of the redesign is that it will be much more resilient towards reconnections:" + +msgid "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." +msgstr "The voice websocket will now automatically re-connect and re-do the handshake when disconnected." + +msgid "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." +msgstr "The initial connect handshake will now retry up to 5 times so you no longer get as many ``asyncio.TimeoutError``." + +msgid "Audio will now stop and resume when a disconnect is found." +msgstr "Audio will now stop and resume when a disconnect is found." + +msgid "This includes changing voice regions etc." +msgstr "This includes changing voice regions etc." + +msgid "Waiting For Events" +msgstr "Waiting For Events" + +msgid "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." +msgstr "Prior to v1.0, the machinery for waiting for an event outside of the event itself was done through two different functions, ``Client.wait_for_message`` and ``Client.wait_for_reaction``. One problem with one such approach is that it did not allow you to wait for events outside of the ones provided by the library." + +msgid "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." +msgstr "In v1.0 the concept of waiting for another event has been generalised to work with any event as :meth:`Client.wait_for`." + +msgid "For example, to wait for a message: ::" +msgstr "For example, to wait for a message: ::" + +msgid "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." +msgstr "To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of arguments." + +msgid "For example, to wait for a reaction: ::" +msgstr "For example, to wait for a reaction: ::" + +msgid "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" +msgstr "Since this function now can return multiple arguments, the ``timeout`` parameter will now raise a :exc:`asyncio.TimeoutError` when reached instead of setting the return to ``None``. For example:" + +msgid "Upgraded Dependencies" +msgstr "Upgraded Dependencies" + +msgid "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." +msgstr "Following v1.0 of the library, we've updated our requirements to :doc:`aiohttp ` v2.0 or higher." + +msgid "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." +msgstr "Since this is a backwards incompatible change, it is recommended that you see the `changes `_ and the :doc:`aio:migration_to_2xx` pages for details on the breaking changes in :doc:`aiohttp `." + +msgid "Of the most significant for common users is the removal of helper functions such as:" +msgstr "Of the most significant for common users is the removal of helper functions such as:" + +msgid "``aiohttp.get``" +msgstr "``aiohttp.get``" + +msgid "``aiohttp.post``" +msgstr "``aiohttp.post``" + +msgid "``aiohttp.delete``" +msgstr "``aiohttp.delete``" + +msgid "``aiohttp.patch``" +msgstr "``aiohttp.patch``" + +msgid "``aiohttp.head``" +msgstr "``aiohttp.head``" + +msgid "``aiohttp.put``" +msgstr "``aiohttp.put``" + +msgid "``aiohttp.request``" +msgstr "``aiohttp.request``" + +msgid "It is recommended that you create a session instead: ::" +msgstr "It is recommended that you create a session instead: ::" + +msgid "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." +msgstr "Since it is better to not create a session for every request, you should store it in a variable and then call ``session.close`` on it when it needs to be disposed." + +msgid "Sharding" +msgstr "Sharding" + +msgid "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." +msgstr "The library has received significant changes on how it handles sharding and now has sharding as a first-class citizen." + +msgid "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." +msgstr "If using a Bot account and you want to shard your bot in a single process then you can use the :class:`AutoShardedClient`." + +msgid "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." +msgstr "This class allows you to use sharding without having to launch multiple processes or deal with complicated IPC." + +msgid "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." +msgstr "It should be noted that **the sharded client does not support user accounts**. This is due to the changes in connection logic and state handling." + +msgid "Usage is as simple as doing: ::" +msgstr "Usage is as simple as doing: ::" + +msgid "instead of using :class:`Client`." +msgstr "instead of using :class:`Client`." + +msgid "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." +msgstr "This will launch as many shards as your bot needs using the ``/gateway/bot`` endpoint, which allocates about 1000 guilds per shard." + +msgid "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" +msgstr "If you want more control over the sharding you can specify ``shard_count`` and ``shard_ids``. ::" + +msgid "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." +msgstr "For users of the command extension, there is also :class:`~ext.commands.AutoShardedBot` which behaves similarly." + +msgid "Connection Improvements" +msgstr "Connection Improvements" + +msgid "In v1.0, the auto reconnection logic has been powered up significantly." +msgstr "In v1.0, the auto reconnection logic has been powered up significantly." + +msgid ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." +msgstr ":meth:`Client.connect` has gained a new keyword argument, ``reconnect`` that defaults to ``True`` which controls the reconnect logic. When enabled, the client will automatically reconnect in all instances of your internet going offline or Discord going offline with exponential back-off." + +msgid ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." +msgstr ":meth:`Client.run` and :meth:`Client.start` gains this keyword argument as well, but for most cases you will not need to specify it unless turning it off." + +msgid "Command Extension Changes" +msgstr "Command Extension Changes" + +msgid "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." +msgstr "Due to the :ref:`migrating_1_0_model_state` changes, some of the design of the extension module had to undergo some design changes as well." + +msgid "Context Changes" +msgstr "Context Changes" + +msgid "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." +msgstr "In v1.0, the :class:`.Context` has received a lot of changes with how it's retrieved and used." + +msgid "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" +msgstr "The biggest change is that ``pass_context=True`` no longer exists, :class:`.Context` is always passed. Ergo:" + +msgid "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." +msgstr "The reason for this is because :class:`~ext.commands.Context` now meets the requirements of :class:`abc.Messageable`. This makes it have similar functionality to :class:`TextChannel` or :class:`DMChannel`. Using :meth:`~.Context.send` will either DM the user in a DM context or send a message in the channel it was in, similar to the old ``bot.say`` functionality. The old helpers have been removed in favour of the new :class:`abc.Messageable` interface. See :ref:`migrating_1_0_removed_helpers` for more information." + +msgid "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" +msgstr "Since the :class:`~ext.commands.Context` is now passed by default, several shortcuts have been added:" + +msgid "**New Shortcuts**" +msgstr "**New Shortcuts**" + +msgid ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." +msgstr ":attr:`ctx.author ` is a shortcut for ``ctx.message.author``." + +msgid ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." +msgstr ":attr:`ctx.guild ` is a shortcut for ``ctx.message.guild``." + +msgid ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." +msgstr ":attr:`ctx.channel ` is a shortcut for ``ctx.message.channel``." + +msgid ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." +msgstr ":attr:`ctx.me ` is a shortcut for ``ctx.message.guild.me`` or ``ctx.bot.user``." + +msgid ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." +msgstr ":attr:`ctx.voice_client ` is a shortcut for ``ctx.message.guild.voice_client``." + +msgid "**New Functionality**" +msgstr "**New Functionality**" + +msgid ":meth:`.Context.reinvoke` to invoke a command again." +msgstr ":meth:`.Context.reinvoke` to invoke a command again." + +msgid "This is useful for bypassing cooldowns." +msgstr "This is useful for bypassing cooldowns." + +msgid ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." +msgstr ":attr:`.Context.valid` to check if a context can be invoked with :meth:`.Bot.invoke`." + +msgid ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." +msgstr ":meth:`.Context.send_help` to show the help command for an entity using the new :class:`~.ext.commands.HelpCommand` system." + +msgid "This is useful if you want to show the user help if they misused a command." +msgstr "This is useful if you want to show the user help if they misused a command." + +msgid "Subclassing Context" +msgstr "Subclassing Context" + +msgid "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." +msgstr "In v1.0, there is now the ability to subclass :class:`~ext.commands.Context` and use it instead of the default provided one." + +msgid "For example, if you want to add some functionality to the context:" +msgstr "For example, if you want to add some functionality to the context:" + +msgid "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" +msgstr "Then you can use :meth:`~ext.commands.Bot.get_context` inside :func:`on_message` with combination with :meth:`~ext.commands.Bot.invoke` to use your custom context:" + +msgid "Now inside your commands you will have access to your custom context:" +msgstr "Now inside your commands you will have access to your custom context:" + +msgid "Removed Helpers" +msgstr "Removed Helpers" + +msgid "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." +msgstr "With the new :class:`.Context` changes, a lot of message sending helpers have been removed." + +msgid "For a full list of changes, see below:" +msgstr "For a full list of changes, see below:" + +msgid "``Bot.say``" +msgstr "``Bot.say``" + +msgid ":meth:`.Context.send`" +msgstr ":meth:`.Context.send`" + +msgid "``Bot.upload``" +msgstr "``Bot.upload``" + +msgid "``Bot.whisper``" +msgstr "``Bot.whisper``" + +msgid "``ctx.author.send``" +msgstr "``ctx.author.send``" + +msgid "``Bot.type``" +msgstr "``Bot.type``" + +msgid ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" +msgstr ":meth:`.Context.typing` or :meth:`.Context.trigger_typing`" + +msgid "``Bot.reply``" +msgstr "``Bot.reply``" + +msgid "No replacement." +msgstr "No replacement." + +msgid "Command Changes" +msgstr "Command Changes" + +msgid "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." +msgstr "As mentioned earlier, the first command change is that ``pass_context=True`` no longer exists, so there is no need to pass this as a parameter." + +msgid "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." +msgstr "Another change is the removal of ``no_pm=True``. Instead, use the new :func:`~ext.commands.guild_only` built-in check." + +msgid "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." +msgstr "The ``commands`` attribute of :class:`~ext.commands.Bot` and :class:`~ext.commands.Group` have been changed from a dictionary to a set that does not have aliases. To retrieve the previous dictionary behaviour, use ``all_commands`` instead." + +msgid "Command instances have gained new attributes and properties:" +msgstr "Command instances have gained new attributes and properties:" + +msgid ":attr:`~ext.commands.Command.signature` to get the signature of the command." +msgstr ":attr:`~ext.commands.Command.signature` to get the signature of the command." + +msgid ":attr:`~.Command.usage`, an attribute to override the default signature." +msgstr ":attr:`~.Command.usage`, an attribute to override the default signature." + +msgid ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." +msgstr ":attr:`~.Command.root_parent` to get the root parent group of a subcommand." + +msgid "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" +msgstr "For :class:`~ext.commands.Group` and :class:`~ext.commands.Bot` the following changed:" + +msgid "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." +msgstr "Changed :attr:`~.GroupMixin.commands` to be a :class:`set` without aliases." + +msgid "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." +msgstr "Use :attr:`~.GroupMixin.all_commands` to get the old :class:`dict` with all commands." + +msgid "Check Changes" +msgstr "Check Changes" + +msgid "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." +msgstr "Prior to v1.0, :func:`~ext.commands.check`\\s could only be synchronous. As of v1.0 checks can now be coroutines." + +msgid "Along with this change, a couple new checks were added." +msgstr "Along with this change, a couple new checks were added." + +msgid ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." +msgstr ":func:`~ext.commands.guild_only` replaces the old ``no_pm=True`` functionality." + +msgid ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." +msgstr ":func:`~ext.commands.is_owner` uses the :meth:`Client.application_info` endpoint by default to fetch owner ID." + +msgid "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." +msgstr "This is actually powered by a different function, :meth:`~ext.commands.Bot.is_owner`." + +msgid "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." +msgstr "You can set the owner ID yourself by setting :attr:`.Bot.owner_id`." + +msgid ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." +msgstr ":func:`~ext.commands.is_nsfw` checks if the channel the command is in is a NSFW channel." + +msgid "This is powered by the new :meth:`TextChannel.is_nsfw` method." +msgstr "This is powered by the new :meth:`TextChannel.is_nsfw` method." + +msgid "All command extension events have changed." +msgstr "All command extension events have changed." + +msgid "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." +msgstr "The extraneous ``command`` parameter in :func:`.on_command` and :func:`.on_command_completion` have been removed. The :class:`~ext.commands.Command` instance was not kept up-to date so it was incorrect. In order to get the up to date :class:`~ext.commands.Command` instance, use the :attr:`.Context.command` attribute." + +msgid "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." +msgstr "The error handlers, either :meth:`.Command.error` or :func:`.on_command_error`, have been re-ordered to use the :class:`~ext.commands.Context` as its first parameter to be consistent with other events and commands." + +msgid "HelpFormatter and Help Command Changes" +msgstr "HelpFormatter and Help Command Changes" + +msgid "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." +msgstr "The ``HelpFormatter`` class has been removed. It has been replaced with a :class:`~.commands.HelpCommand` class. This class now stores all the command handling and processing of the help command." + +msgid "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." +msgstr "The help command is now stored in the :attr:`.Bot.help_command` attribute. As an added extension, you can disable the help command completely by assigning the attribute to ``None`` or passing it at ``__init__`` as ``help_command=None``." + +msgid "The new interface allows the help command to be customised through special methods that can be overridden." +msgstr "The new interface allows the help command to be customised through special methods that can be overridden." + +msgid ":meth:`.HelpCommand.send_bot_help`" +msgstr ":meth:`.HelpCommand.send_bot_help`" + +msgid "Called when the user requested for help with the entire bot." +msgstr "Called when the user requested for help with the entire bot." + +msgid ":meth:`.HelpCommand.send_cog_help`" +msgstr ":meth:`.HelpCommand.send_cog_help`" + +msgid "Called when the user requested for help with a specific cog." +msgstr "Called when the user requested for help with a specific cog." + +msgid ":meth:`.HelpCommand.send_group_help`" +msgstr ":meth:`.HelpCommand.send_group_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Group`" +msgstr "Called when the user requested for help with a :class:`~.commands.Group`" + +msgid ":meth:`.HelpCommand.send_command_help`" +msgstr ":meth:`.HelpCommand.send_command_help`" + +msgid "Called when the user requested for help with a :class:`~.commands.Command`" +msgstr "Called when the user requested for help with a :class:`~.commands.Command`" + +msgid ":meth:`.HelpCommand.get_destination`" +msgstr ":meth:`.HelpCommand.get_destination`" + +msgid "Called to know where to send the help messages. Useful for deciding whether to DM or not." +msgstr "Called to know where to send the help messages. Useful for deciding whether to DM or not." + +msgid ":meth:`.HelpCommand.command_not_found`" +msgstr ":meth:`.HelpCommand.command_not_found`" + +msgid "A function (or coroutine) that returns a presentable no command found string." +msgstr "A function (or coroutine) that returns a presentable no command found string." + +msgid ":meth:`.HelpCommand.subcommand_not_found`" +msgstr ":meth:`.HelpCommand.subcommand_not_found`" + +msgid "A function (or coroutine) that returns a string when a subcommand is not found." +msgstr "A function (or coroutine) that returns a string when a subcommand is not found." + +msgid ":meth:`.HelpCommand.send_error_message`" +msgstr ":meth:`.HelpCommand.send_error_message`" + +msgid "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." +msgstr "A coroutine that gets passed the result of :meth:`.HelpCommand.command_not_found` and :meth:`.HelpCommand.subcommand_not_found`." + +msgid "By default it just sends the message. But you can, for example, override it to put it in an embed." +msgstr "By default it just sends the message. But you can, for example, override it to put it in an embed." + +msgid ":meth:`.HelpCommand.on_help_command_error`" +msgstr ":meth:`.HelpCommand.on_help_command_error`" + +msgid "The :ref:`error handler ` for the help command if you want to add one." +msgstr "The :ref:`error handler ` for the help command if you want to add one." + +msgid ":meth:`.HelpCommand.prepare_help_command`" +msgstr ":meth:`.HelpCommand.prepare_help_command`" + +msgid "A coroutine that is called right before the help command processing is done." +msgstr "A coroutine that is called right before the help command processing is done." + +msgid "Certain subclasses can implement more customisable methods." +msgstr "Certain subclasses can implement more customisable methods." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "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." +msgstr "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." + +msgid "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." +msgstr "For example, to implement a :class:`~.commands.HelpCommand` in a cog, the following snippet can be used." + +msgid "For more information, check out the relevant :ref:`documentation `." +msgstr "For more information, check out the relevant :ref:`documentation `." + +msgid "Cog Changes" +msgstr "Cog Changes" + +msgid "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." +msgstr "Cogs have completely been revamped. They are documented in :ref:`ext_commands_cogs` as well." + +msgid "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." +msgstr "Cogs are now required to have a base class, :class:`~.commands.Cog` for future proofing purposes. This comes with special methods to customise some behaviour." + +msgid ":meth:`.Cog.cog_unload`" +msgstr ":meth:`.Cog.cog_unload`" + +msgid "This is called when a cog needs to do some cleanup, such as cancelling a task." +msgstr "This is called when a cog needs to do some cleanup, such as cancelling a task." + +msgid ":meth:`.Cog.bot_check_once`" +msgstr ":meth:`.Cog.bot_check_once`" + +msgid "This registers a :meth:`.Bot.check_once` check." +msgstr "This registers a :meth:`.Bot.check_once` check." + +msgid ":meth:`.Cog.bot_check`" +msgstr ":meth:`.Cog.bot_check`" + +msgid "This registers a regular :meth:`.Bot.check` check." +msgstr "This registers a regular :meth:`.Bot.check` check." + +msgid ":meth:`.Cog.cog_check`" +msgstr ":meth:`.Cog.cog_check`" + +msgid "This registers a check that applies to every command in the cog." +msgstr "This registers a check that applies to every command in the cog." + +msgid ":meth:`.Cog.cog_command_error`" +msgstr ":meth:`.Cog.cog_command_error`" + +msgid "This is a special error handler that is called whenever an error happens inside the cog." +msgstr "This is a special error handler that is called whenever an error happens inside the cog." + +msgid ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" +msgstr ":meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`" + +msgid "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." +msgstr "A special method that registers a cog before and after invoke hook. More information can be found in :ref:`migrating_1_0_before_after_hook`." + +msgid "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." +msgstr "Those that were using listeners, such as ``on_message`` inside a cog will now have to explicitly mark them as such using the :meth:`.commands.Cog.listener` decorator." + +msgid "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." +msgstr "Along with that, cogs have gained the ability to have custom names through specifying it in the class definition line. More options can be found in the metaclass that facilitates all this, :class:`.commands.CogMeta`." + +msgid "An example cog with every special method registered and a custom name is as follows:" +msgstr "An example cog with every special method registered and a custom name is as follows:" + +msgid "Before and After Invocation Hooks" +msgstr "Before and After Invocation Hooks" + +msgid "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." +msgstr "Commands have gained new before and after invocation hooks that allow you to do an action before and after a command is run." + +msgid "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." +msgstr "They take a single parameter, :class:`~ext.commands.Context` and they must be a coroutine." + +msgid "They are on a global, per-cog, or per-command basis." +msgstr "They are on a global, per-cog, or per-command basis." + +msgid "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." +msgstr "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." + +msgid "The per-command registration is as follows: ::" +msgstr "The per-command registration is as follows: ::" + +msgid "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" +msgstr "The special cog method for these is :meth:`.Cog.cog_before_invoke` and :meth:`.Cog.cog_after_invoke`, e.g.:" + +msgid "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." +msgstr "To check if a command failed in the after invocation hook, you can use :attr:`.Context.command_failed`." + +msgid "The invocation order is as follows:" +msgstr "The invocation order is as follows:" + +msgid "Command local before invocation hook" +msgstr "Command local before invocation hook" + +msgid "Cog local before invocation hook" +msgstr "Cog local before invocation hook" + +msgid "Global before invocation hook" +msgstr "Global before invocation hook" + +msgid "The actual command" +msgstr "The actual command" + +msgid "Command local after invocation hook" +msgstr "Command local after invocation hook" + +msgid "Cog local after invocation hook" +msgstr "Cog local after invocation hook" + +msgid "Global after invocation hook" +msgstr "Global after invocation hook" + +msgid "Converter Changes" +msgstr "Converter Changes" + +msgid "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." +msgstr "Prior to v1.0, a converter was a type hint that could be a callable that could be invoked with a singular argument denoting the argument passed by the user as a string." + +msgid "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." +msgstr "This system was eventually expanded to support a :class:`~ext.commands.Converter` system to allow plugging in the :class:`~ext.commands.Context` and do more complicated conversions such as the built-in \"discord\" converters." + +msgid "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." +msgstr "In v1.0 this converter system was revamped to allow instances of :class:`~ext.commands.Converter` derived classes to be passed. For consistency, the :meth:`~ext.commands.Converter.convert` method was changed to always be a coroutine and will now take the two arguments as parameters." + +msgid "Essentially, before: ::" +msgstr "Essentially, before: ::" + +msgid "The command framework also got a couple new converters:" +msgstr "The command framework also got a couple new converters:" + +msgid ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." +msgstr ":class:`~ext.commands.clean_content` this is akin to :attr:`Message.clean_content` which scrubs mentions." + +msgid ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." +msgstr ":class:`~ext.commands.UserConverter` will now appropriately convert :class:`User` only." + +msgid "``ChannelConverter`` is now split into two different converters." +msgstr "``ChannelConverter`` is now split into two different converters." + +msgid ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." +msgstr ":class:`~ext.commands.TextChannelConverter` for :class:`TextChannel`." + +msgid ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." +msgstr ":class:`~ext.commands.VoiceChannelConverter` for :class:`VoiceChannel`." + diff --git a/docs/locales/zh/LC_MESSAGES/migrating_to_v2.po b/docs/locales/zh/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..b78ace0546 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v2.0" +msgstr "迁移到 v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 引入了新的 Discord 功能并废弃了一些旧功能。" + +msgid "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." +msgstr "Part of the redesign involves making application commands and components. These changes include a new :class:`Bot` class, :class:`ui.View`, and a new :class:`ApplicationContext` class. If you're interested in creating them, please check out our :resource:`guide `." + +msgid "Python Version Change" +msgstr "Python 版本更改" + +msgid "In order to make development easier and also to allow for our dependencies to upgrade to allow usage of 3.8 or higher, the library had to remove support for Python versions lower than 3.7, which essentially means that **support for Python 3.7 and below has been dropped**." +msgstr "为了使发展更加容易,也为了让我们的依赖性升级以便能够使用3。 或更高版本的库不得不取消对 Python 版本的支持。 这基本上意味着**对 Python 3.7 及以下版本的支持已经被放弃**。" + +msgid "Major Model Changes" +msgstr "主要模型更改" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "下面是v2.0发生的重大变化:" + +msgid "Dropped User Accounts Support" +msgstr "丢弃用户帐户支持" + +msgid "Before v2.0, user accounts were supported. This has been against the spirit of the library and discord ToS and has been removed. Thus, these features that were only applicable to them are removed:" +msgstr "v2.0 之前支持用户帐户。这违背了图书馆和不和服务的精神,并且已被删除。 因此,这些只适用于它们的特征将被删除:" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "``afk`` argument of :meth:`Client.change_presence`" + +msgid "Classes ``Profile``, ``Relationship``, ``Call Message``, ``Group Call``" +msgstr "类 ``Profile`` 、 ``Relationship`` 、 ``Call``" + +msgid "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" +msgstr "``RelationshipType``, ``HypeSquadHouse``, ``PremiumType``, ``UserContentFilter``, ``FriendFlags``, ``Theme``" + +msgid "``GroupChannel.add_recipients``, ``remove_recipients``, ``edit`` (NOTE: ``GroupChannel`` itself still remains)" +msgstr "``GroupChannel.add_receivents``,``remove_receivents``,``edit`` (NOTE:``GroupChannel`` 本身仍然存在)" + +msgid "``Guild.ack``" +msgstr "``Guild.ack``" + +msgid "``Client.self_bot``" +msgstr "``Client.self_bot``" + +msgid "``Client.fetch_user_profile``" +msgstr "``Client.fetch_user_profile``" + +msgid "``Message.call`` and ``ack``" +msgstr "``Message.call`` 和 ``ack``" + +msgid "``ClientUser.email``, ``premium``, ``premium_type``, ``get_relationship``, ``relationships``, ``friends``, ``blocked``, ``create_group``, ``edit_settings``" +msgstr "``ClientUser.email``、``premium``、``premium_type``、``get_relationship``、``relationships``、``friends``、``blocked``、``create_group``、``edit_settings``" + +msgid "Arguments of ``ClientUser.edit``: ``password``, ``new_password``, ``email``, ``house``" +msgstr "``ClientUser.edit`` 的参数: ``password`` , ``new_password`` , ``email``" + +msgid "``User.relationship``, ``mutual_friends``, ``is_friend``, ``is_blocked``, ``block``, ``unblock``, ``remove_friend``, ``send_friend_request``, ``profile``" +msgstr "``User.relationship`` 、 ``mutual_friends`` 、 ``is_friend`` 、 ``is_blocked`` 、 ``unblock`` 、 ``remove_friend`` 、 ``send_friend_request`` 、 ``profile``" + +msgid "Events: ``on_relationship_add`` and ``on_relationship_update``" +msgstr "事件: ``on_relationship_add`` 和 ``on_relationship_update``" + +msgid "Timezone-aware Time" +msgstr "时区意识时间" + +msgid "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." +msgstr "``utcnow`` becomes ``now(datetime.timezone.utc)``. If you are constructing :class:`datetime.datetime`` yourself, pass ``tzinfo=datetime.timezone.utc``." + +msgid "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." +msgstr "Note that newly-added :meth:`utils.utcnow()` can be used as an alias of ``datetime.datetime.now(datetime.timezone.utc)``." + +msgid "Asset Changes" +msgstr "资产更改" + +msgid "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." +msgstr "Asset-related attributes that previously returned hash strings (e.g. :attr:`User.avatar`) now returns :class:`Asset`. :attr:`Asset.key` returns the hash from now on." + +msgid "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." +msgstr "``Class.x_url`` and ``Class.x_url_as`` are removed. :meth:`Asset.replace` or :meth:`Asset.with_x` methods can be used to get specific asset sizes or types." + +msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." + +msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` 和 ``PartialEmoji.url_as`` 已被删除。" + +msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." + +msgid "Before" +msgstr "前" + +msgid "After" +msgstr "之后" + +msgid "``str(user.avatar_url)``" +msgstr "``str(user.avatar_url)``" + +msgid "``user.display_avatar.url``" +msgstr "``user.display_avatar.url``" + +msgid "``str(user.avatar_url_as(size=128))``" +msgstr "``str(user.avatar_url_as(size=128)`` ``" + +msgid "``user.display_avatar.with_size(128).url``" +msgstr "``user.display_avatar.with_size(128).url``" + +msgid "``str(user.avatar_url_as(size=128, static_format=\"png\"))``" +msgstr "``str(user.avatar_url_as(size=128, static_form=\"png\")`` ``" + +msgid "``user.display_avatar.replace(size=128, static_format=\"png\").url``" +msgstr "``user.display_avatar.replace(size=128, static_form=\"png\").url``" + +msgid "``user.display_avatar.with_size(128).with_static_format(\"png\").url``" +msgstr "``user.display_avatar.with_size(128).with_static_format (\"png\").url``" + +msgid "``await user.avatar_url.read()``" +msgstr "``request user.avatar_url.read()``" + +msgid "``await user.display_avatar.read()``" +msgstr "``request user.display_avatar.read()``" + +msgid "``str(emoji.url)``" +msgstr "``str(emoji.url)``" + +msgid "``emoji.url``" +msgstr "``emoji.url``" + +msgid "``str(emoji.url_as(size=32))``" +msgstr "``str(emoji.url_as(size=32)``" + +msgid "``emoji.with_size(32).url``" +msgstr "``emoji.with_size(32).url``" + +msgid "``str(url_as(size=128, static_format=\"png\"))``" +msgstr "``str(url_as(size=128, static_form=\"png\")`` 方法." + +msgid "``emoji.replace(size=128, static_format=\"png\").url``" +msgstr "``emoji.replace(size=128, static_form=\"png\").url``" + +msgid "``str(sticker.image_url)``" +msgstr "``str(sticker.image_url)``" + +msgid "``sticker.url``" +msgstr "``sticker.url``" + +msgid "``str(partialemoji.url)``" +msgstr "``str(partialemoji.url)``" + +msgid "``partialemoji.url``" +msgstr "``partialemoji.url``" + +msgid "Webhook Changes" +msgstr "Webhook 更改" + +msgid ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." +msgstr ":class:`Webhook` and :class:`WebhookMessage` are now always asynchronous. For synchronous use (``requests``), use :class:`SyncWebhook` and :class:`SyncWebhookMessage`." + +msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "``WebhookAdapter`` 、 ``AsyncWebhookAdapter`` 和 ``RequestsWebhookAdapter`` 被删除,因为它们是不必要的。" + +msgid "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." +msgstr "``adapter`` arguments of :meth:`Webhook.partial` and :meth:`Webhook.from_url` are removed. Sessions are now passed directly to ``partial`` / ``from_url``." + +msgid "Intents Changes" +msgstr "帐篷变化" + +msgid ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." +msgstr ":attr:`Intents.message_content` is now a privileged intent. Disabling it causes :attr:`Message.content`, :attr:`Message.embeds`, :attr:`Message.components`, and :attr:`Message.attachments` to be empty (an empty string or an empty array), directly causing :class:`ext.commands.Command` s to not run. See `here `_ for more information." + +msgid "Threads Introduced" +msgstr "引入线程" + +msgid "The following methods and attributes can return :class:`Thread` objects:" +msgstr "The following methods and attributes can return :class:`Thread` objects:" + +msgid ":attr:`Message.channel`" +msgstr ":attr:`Message.channel`" + +msgid ":meth:`Client.fetch_channel`" +msgstr ":meth:`Client.fetch_channel`" + +msgid ":meth:`Guild.fetch_channel`" +msgstr ":meth:`Guild.fetch_channel`" + +msgid ":attr:`ext.commands.ChannelNotReadable.argument`" +msgstr ":attr:`ext.commands.ChannelNotReadable.argument`" + +msgid ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" +msgstr ":class:`ext.commands.NSFWChannelRequired`'s ``channel`` argument" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "权限更改" + +msgid "``permissions_in`` has been removed in favor of checking the permissions of the channel for said user." +msgstr "``permissions_in`` 已被移除,用于检查指定用户的频道权限。" + +msgid "``User.permissions_in``" +msgstr "``User.permissions_in``" + +msgid "``abc.GuildChannel.permissions_for``" +msgstr "``abc.GuildChannel.permissions_for``" + +msgid "``Member.permissions_in``" +msgstr "``Member.permissions_in``" + +msgid "Edit Method Behavior Change" +msgstr "编辑方法行为" + +msgid "``edit`` methods of most classes no longer update the cache in-place, and instead returns the modified object." +msgstr "大多数类的 ``edit`` 方法不再更新缓存,而是返回修改过的对象。" + +msgid "Positional-Keyword Argument Split" +msgstr "定位关键字参数拆分" + +msgid "The following are now positional only:" +msgstr "以下只是位置:" + +msgid ":meth:`abc.GuildChannel.permissions_for`" +msgstr ":meth:`abc.GuildChannel.permissions_for`" + +msgid ":meth:`Guild.get_channel`" +msgstr ":meth:`Guild.get_channel`" + +msgid ":meth:`Guild.get_role`" +msgstr ":meth:`Guild.get_role`" + +msgid ":meth:`Guild.get_member_named`" +msgstr ":meth:`Guild.get_member_named`" + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid ":meth:`Guild.fetch_emoji`" +msgstr ":meth:`Guild.fetch_emoji`" + +msgid ":meth:`abc.Messageable.fetch_message`" +msgstr ":meth:`abc.Messageable.fetch_message`" + +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.get_partial_message`" + +msgid "The following are now keyword only:" +msgstr "以下只是关键词:" + +msgid ":func:`utils.oauth_url`" +msgstr ":func:`utils.oauth_url`" + +msgid ":meth:`Reaction.users`" +msgstr ":meth:`Reaction.users`" + +msgid "Event Changes" +msgstr "事件更改" + +msgid ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces `on_member_update` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "由于Discord更改,``on_private_channel_create/delete`` 将不再发送。" + +msgid ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." +msgstr ":func:`on_socket_raw_receive` is no longer dispatched for incomplete data, and the value passed is always decompressed and decoded to :class:`str`. Previously, when received a multi-part zlib-compressed binary message, :func:`on_socket_raw_receive` was dispatched on all messages with the compressed, encoded :class:`bytes`." + +msgid "Message.type For Replies" +msgstr "输入回复信息" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "貼圖更改" + +msgid "``Sticker.preview_image`` was removed as Discord no longer provides the data." +msgstr "``Sticker.preview_image`` 已被删除,因为Discord不再提供数据。" + +msgid "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." +msgstr "``StickerType``, an enum of sticker formats, is renamed to :class:`StickerFormatType`. Old name is used for a new enum with different purpose (checking if the sticker is guild sticker or Nitro sticker)." + +msgid ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." +msgstr ":attr:`Message.stickers` is now List[:class:`StickerItem`] instead of List[:class:`Sticker`]. While :class:`StickerItem` supports some operations of previous ``Sticker``, ``description`` and ``pack_id`` attributes do not exist. :class:`Sticker` can be fetched via :meth:`StickerItem.fetch` method." + +msgid "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." +msgstr "``Sticker.image`` is removed. :class:`Sticker` can still be fetched via :meth:`Sticker.read` or :meth:`Sticker.save` and its URL can be accessed via :attr:`Sticker.url`, just like new :class:`Emoji`." + +msgid "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." +msgstr "Due to the introduction of :class:`GuildSticker`, ``Sticker.tags`` is removed from the parent class :class:`Sticker` and moved to :attr:`StandardSticker.tags`." + +msgid "Type Changes" +msgstr "类型更改" + +msgid "Many method arguments now reject ``None`` or return ``None``." +msgstr "许多方法参数现在拒绝了 ``None`` 或返回 ``None`` 。" + +msgid ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." +msgstr ":attr:`DMChannel.recipient` is now optional, and will return ``None`` in many cases." + +msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." +msgstr ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar." + +msgid ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." +msgstr ":attr:`Guild.create_text_channel`'s ``topic`` argument no longer accepts ``None``." + +msgid ":attr:`Guild.vanity_invite` can now return ``None``." +msgstr ":attr:`Guild.vanity_invite` can now return ``None``." + +msgid ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." +msgstr ":attr:`Template.edit`'s ``name`` argument no longer accepts ``None``." + +msgid ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." +msgstr ":attr:`Member.edit`'s ``roles`` argument no longer accepts ``None``." + +msgid ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." +msgstr ":attr:`Bot.add_listener` and :attr:`Bot.remove_listener`'s ``name`` arguments no longer accept ``None``." + +msgid "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." +msgstr "The following :class:`.ext.commands.Context` attributes can now be ``None``: ``prefix``, ``command``, ``invoked_with``, ``invoked_subcommand``." + +msgid ":attr:`ext.commands.Command.help` can now be ``None``." +msgstr ":attr:`ext.commands.Command.help` can now be ``None``." + +msgid "Miscellaneous Changes" +msgstr "杂项更改" + +msgid "The following were removed:" +msgstr "以下内容已被删除:" + +msgid "``Client.request_offline_members``" +msgstr "``Client.request_offline_members``" + +msgid "``Client.logout``" +msgstr "``Client.logout``" + +msgid "``ExtensionNotFound.original``" +msgstr "``ExtensionNotFound.original``" + +msgid "``MemberCacheFlags.online``" +msgstr "``MemberCacheFlags.online``" + +msgid "``guild_subscriptions`` argument of :class:`Client`" +msgstr "``guild_subscriptions`` argument of :class:`Client`" + +msgid "``fetch_offline_members`` argument of :class:`Client`" +msgstr "``fetch_offline_members`` argument of :class:`Client`" + +msgid "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" +msgstr "``HelpCommand.clean_prefix`` moved to :attr:`ext.commands.Context.clean_prefix`" + +msgid "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." +msgstr "``VerificationLevel.table_flip`` (alias of ``high``) was removed. ``extreme``, ``very_high``, and ``double_table_flip`` attributes were removed and replaced with :attr:`VerificationLevel.highest`." + +msgid "The following were renamed:" +msgstr "以下被重命名:" + +msgid ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." +msgstr ":attr:`Colour.blurple` is renamed to :attr:`Colour.og_blurple`, and :attr:`Colour.blurple` now returns the newer color." + +msgid "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." +msgstr "``missing_perms`` arguments and attributes of :class:`ext.commands.MissingPermissions` and :class:`ext.commands.BotMissingPermissions` are renamed to ``missing_permissions``." + +msgid "The following were changed in behavior:" +msgstr "The following were changed in behavior:" + +msgid ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." +msgstr ":class:`Embed` that has a value is always considered truthy. Previously it only considered text fields." + +msgid ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." +msgstr ":meth:`Bot.add_cog` now raises an error when a cog with the same name is already registered. ``override`` argument can be used to bring back the 1.x behavior." + +msgid ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." +msgstr ":meth:`StageChannel.edit` can no longer edit ``topic``. Use :meth:`StageInstance.edit` instead." + +msgid ":meth:`StageChannel.clone` no longer clones its topic." +msgstr ":meth:`StageChannel.clone` no longer clones its topic." + +msgid "The following were changed in types:" +msgstr "The following were changed in types:" + +msgid ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." +msgstr ":attr:`ext.commands.Command.clean_params` is now a :class:`dict`, not :class:`OrderedDict`." + +msgid "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." +msgstr "``Reaction.custom_emoji`` is now :attr:`Reaction.is_custom_emoji` for consistency." + +msgid ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." +msgstr ":attr:`IntegrationAccount.id` is now :class:`str`, instead of :class:`int`, due to Discord changes." + +msgid ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." +msgstr ":attr:`AuditLogDiff.type` is now Union[:class:`ChannelType`, :class:`StickerType`], instead of :class:`ChannelType`." + +msgid "Parting Words" +msgstr "Parting Words" + +msgid "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." +msgstr "The v2.0 of the library implemented a lot of new features. To implement newer features, such as slash commands, they can be seen on our :resource:`guide `." + diff --git a/docs/locales/zh/LC_MESSAGES/old_changelog.po b/docs/locales/zh/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..a1f5831ab1 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Changelog" + +msgid "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." +msgstr "This page keeps a detailed human-friendly rendering of what's new and changed in specific versions." + +msgid "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." +msgstr "This page is no longer maintained. For an updated changelog for version 2.0+, please check out our :doc:`new changelog ` instead." + +msgid "v2.0.0" +msgstr "v2.0.0" + +msgid "Fully deprecated/removed store channels" +msgstr "Fully deprecated/removed store channels" + +msgid "Buttons and Select Menus" +msgstr "Buttons and Select Menus" + +msgid "Slash commands, User commands, and Message commands (:issue:`31`)" +msgstr "Slash commands, User commands, and Message commands (:issue:`31`)" + +msgid "Message Content privileged intent (:issue:`332`)" +msgstr "Message Content privileged intent (:issue:`332`)" + +msgid "Voice receive API (:issue:`532`)" +msgstr "Voice receive API (:issue:`532`)" + +msgid "discord.ext.pages (Paginators) (:issue:`589`)" +msgstr "discord.ext.pages (Paginators) (:issue:`589`)" + +msgid "Input Text and Modal components (:issue:`630`)" +msgstr "Input Text and Modal components (:issue:`630`)" + +msgid "Discord API version changed from 9 to 10 (:issue:`1012`)" +msgstr "Discord API version changed from 9 to 10 (:issue:`1012`)" + +msgid "Application permissions v2 (:issue:`1129`)" +msgstr "Application permissions v2 (:issue:`1129`)" + +msgid "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" +msgstr "discord.ext.bridge (slash and prefixed commands) (:issue:`1131`)" + +msgid ":meth:`Client.get_message` (:issue:`1141`)" +msgstr ":meth:`Client.get_message` (:issue:`1141`)" + +msgid "Application Command Localization (:issue:`1185`)" +msgstr "Application Command Localization (:issue:`1185`)" + +msgid "Guild Ban List Paginated (:issue:`1217`)" +msgstr "Guild Ban List Paginated (:issue:`1217`)" + +msgid "Forum channels (:issue:`1249`)" +msgstr "Forum channels (:issue:`1249`)" + +msgid "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." +msgstr "Methods and attributes that returned :class:`TextChannel`, etc., can now return :class:`Thread`." + +msgid "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." +msgstr "Attributes that returned :class:`Asset` are renamed, e.g. attributes ending with ``_url`` (i.e.: ``avatar_url``) are changed to :attr:`avatar.url`. :attr:`User.avatar` returns ``None`` in case the default avatar is used." + +msgid ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." +msgstr ":func:`on_presence_update` replaces ``on_member_update`` for updates to :attr:`Member.status` and :attr:`Member.activities`." + +msgid ":class:`datetime.datetime` objects used in the library are now timezone-aware." +msgstr ":class:`datetime.datetime` objects used in the library are now timezone-aware." + +msgid "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." +msgstr "Sticker changes: ``StickerType`` has been renamed to :class:`StickerFormatType`, and the type of :attr:`Message.stickers` is altered. ``Sticker.preview_image``, ``Sticker.image`` and ``Sticker.tags`` are removed." + +msgid "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." +msgstr "Webhooks are changed significantly; ``WebhookAdapter`` is removed, and synchronous requests using requests is now inside :class:`SyncWebhook`." + +msgid "``edit`` method no longer updates the cache and instead returns modified instance." +msgstr "``edit`` method no longer updates the cache and instead returns modified instance." + +msgid "User accounts (userbots) are no longer supported." +msgstr "User accounts (userbots) are no longer supported." + +msgid "``Client.logout`` is removed; use :meth:`Client.close` instead." +msgstr "``Client.logout`` is removed; use :meth:`Client.close` instead." + +msgid "``on_private_channel_create/delete`` events are removed." +msgstr "``on_private_channel_create/delete`` events are removed." + +msgid "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." +msgstr "``User.permissions_in`` is removed; use :meth:`abc.GuildChannel.permissions_for` instead." + +msgid "``Message.type`` for replies are now :attr:`MessageType.reply`." +msgstr "``Message.type`` for replies are now :attr:`MessageType.reply`." + +msgid "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." +msgstr "``Reaction.custom_emoji`` property is changed to :meth:`Reaction.is_custom_emoji` method." + +msgid "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." +msgstr "``missing_perms`` attributes and arguments are renamed to ``missing_permissions``." + +msgid "Many method arguments now reject :class:`None`." +msgstr "Many method arguments now reject :class:`None`." + +msgid "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." +msgstr "Many arguments are now specified as positional-only or keyword-only; e.g. :meth:`utils.oauth_url` now takes keyword-only arguments, and methods starting with ``get_`` or ``fetch_`` take positional-only arguments." + +msgid ":doc:`migrating_to_v2`" +msgstr ":doc:`migrating_to_v2`" + +msgid "v1.7.3" +msgstr "v1.7.3" + +msgid "Bug Fixes" +msgstr "Bug Fixes" + +msgid "Fix a crash involving guild uploaded stickers" +msgstr "Fix a crash involving guild uploaded stickers" + +msgid "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." +msgstr "Fix :meth:`DMChannel.permissions_for` not having :attr:`Permissions.read_messages` set." + +msgid "v1.7.2" +msgstr "v1.7.2" + +msgid "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" +msgstr "Fix ``fail_if_not_exists`` causing certain message references to not be usable within :meth:`abc.Messageable.send` and :meth:`Message.reply` (:dpy-issue:`6726`)" + +msgid "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" +msgstr "Fix :meth:`Guild.chunk` hanging when the user left the guild. (:dpy-issue:`6730`)" + +msgid "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" +msgstr "Fix loop sleeping after final iteration rather than before (:dpy-issue:`6744`)" + +msgid "v1.7.1" +msgstr "v1.7.1" + +msgid "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." +msgstr "|commands| Fix :meth:`Cog.has_error_handler ` not working as intended." + +msgid "v1.7.0" +msgstr "v1.7.0" + +msgid "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." +msgstr "This version is mainly for improvements and bug fixes. This is more than likely the last major version in the 1.x series. Work after this will be spent on v2.0. As a result, **this is the last version to support Python 3.5**. Likewise, **this is the last version to support user bots**." + +msgid "Development of v2.0 will have breaking changes and support for newer API features." +msgstr "Development of v2.0 will have breaking changes and support for newer API features." + +msgid "New Features" +msgstr "New Features" + +msgid "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" +msgstr "Add support for stage channels via :class:`StageChannel` (:dpy-issue:`6602`, :dpy-issue:`6608`)" + +msgid "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" +msgstr "Add support for :attr:`MessageReference.fail_if_not_exists` (:dpy-issue:`6484`)" + +msgid "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." +msgstr "By default, if the message you're replying to doesn't exist then the API errors out. This attribute tells the Discord API that it's okay for that message to be missing." + +msgid "Add support for Discord's new permission serialisation scheme." +msgstr "Add support for Discord's new permission serialisation scheme." + +msgid "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" +msgstr "Add an easier way to move channels using :meth:`abc.GuildChannel.move`" + +msgid "Add :attr:`Permissions.use_slash_commands`" +msgstr "Add :attr:`Permissions.use_slash_commands`" + +msgid "Add :attr:`Permissions.request_to_speak`" +msgstr "Add :attr:`Permissions.request_to_speak`" + +msgid "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" +msgstr "Add support for voice regions in voice channels via :attr:`VoiceChannel.rtc_region` (:dpy-issue:`6606`)" + +msgid "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" +msgstr "Add support for :meth:`PartialEmoji.url_as` (:dpy-issue:`6341`)" + +msgid "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" +msgstr "Add :attr:`MessageReference.jump_url` (:dpy-issue:`6318`)" + +msgid "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" +msgstr "Add :attr:`File.spoiler` (:dpy-issue:`6317`)" + +msgid "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" +msgstr "Add support for passing ``roles`` to :meth:`Guild.estimate_pruned_members` (:dpy-issue:`6538`)" + +msgid "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" +msgstr "Allow callable class factories to be used in :meth:`abc.Connectable.play` (:dpy-issue:`6478`)" + +msgid "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" +msgstr "Add a way to get mutual guilds from the client's cache via :attr:`User.mutual_guilds` (:dpy-issue:`2539`, :dpy-issue:`6444`)" + +msgid ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" +msgstr ":meth:`PartialMessage.edit` now returns a full :class:`Message` upon success (:dpy-issue:`6309`)" + +msgid "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" +msgstr "Add :attr:`RawMessageUpdateEvent.guild_id` (:dpy-issue:`6489`)" + +msgid ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" +msgstr ":class:`AuditLogEntry` is now hashable (:dpy-issue:`6495`)" + +msgid ":class:`Attachment` is now hashable" +msgstr ":class:`Attachment` is now hashable" + +msgid "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" +msgstr "Add :attr:`Attachment.content_type` attribute (:dpy-issue:`6618`)" + +msgid "Add support for casting :class:`Attachment` to :class:`str` to get the URL." +msgstr "Add support for casting :class:`Attachment` to :class:`str` to get the URL." + +msgid "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" +msgstr "Add ``seed`` parameter for :class:`Colour.random` (:dpy-issue:`6562`)" + +msgid "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." +msgstr "This only seeds it for one call. If seeding for multiple calls is desirable, use :func:`random.seed`." + +msgid "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" +msgstr "Add a :func:`utils.remove_markdown` helper function (:dpy-issue:`6573`)" + +msgid "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" +msgstr "Add support for passing scopes to :func:`utils.oauth_url` (:dpy-issue:`6568`)" + +msgid "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" +msgstr "|commands| Add support for ``rgb`` CSS function as a parameter to :class:`ColourConverter ` (:dpy-issue:`6374`)" + +msgid "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" +msgstr "|commands| Add support for converting :class:`StoreChannel` via :class:`StoreChannelConverter ` (:dpy-issue:`6603`)" + +msgid "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." +msgstr "|commands| Add support for stripping whitespace after the prefix is encountered using the ``strip_after_prefix`` :class:`~ext.commands.Bot` constructor parameter." + +msgid "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" +msgstr "|commands| Add :attr:`Context.invoked_parents ` to get the aliases a command's parent was invoked with (:dpy-issue:`1874`, :dpy-issue:`6462`)" + +msgid "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" +msgstr "|commands| Add a converter for :class:`PartialMessage` under :class:`ext.commands.PartialMessageConverter` (:dpy-issue:`6308`)" + +msgid "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" +msgstr "|commands| Add a converter for :class:`Guild` under :class:`ext.commands.GuildConverter` (:dpy-issue:`6016`, :dpy-issue:`6365`)" + +msgid "|commands| Add :meth:`Command.has_error_handler `" +msgstr "|commands| Add :meth:`Command.has_error_handler `" + +msgid "This is also adds :meth:`Cog.has_error_handler `" +msgstr "This is also adds :meth:`Cog.has_error_handler `" + +msgid "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" +msgstr "|commands| Allow callable types to act as a bucket key for cooldowns (:dpy-issue:`6563`)" + +msgid "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" +msgstr "|commands| Add ``linesep`` keyword argument to :class:`Paginator ` (:dpy-issue:`5975`)" + +msgid "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" +msgstr "|commands| Allow ``None`` to be passed to :attr:`HelpCommand.verify_checks ` to only verify in a guild context (:dpy-issue:`2008`, :dpy-issue:`6446`)" + +msgid "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" +msgstr "|commands| Allow relative paths when loading extensions via a ``package`` keyword argument (:dpy-issue:`2465`, :dpy-issue:`6445`)" + +msgid "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" +msgstr "Fix mentions not working if ``mention_author`` is passed in :meth:`abc.Messageable.send` without :attr:`Client.allowed_mentions` set (:dpy-issue:`6192`, :dpy-issue:`6458`)" + +msgid "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" +msgstr "Fix user created instances of :class:`CustomActivity` triggering an error (:dpy-issue:`4049`)" + +msgid "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." +msgstr "Note that currently, bot users still cannot set a custom activity due to a Discord limitation." + +msgid "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" +msgstr "Fix :exc:`ZeroDivisionError` being raised from :attr:`VoiceClient.average_latency` (:dpy-issue:`6430`, :dpy-issue:`6436`)" + +msgid "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" +msgstr "Fix :attr:`User.public_flags` not updating upon edit (:dpy-issue:`6315`)" + +msgid "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" +msgstr "Fix :attr:`Message.call` sometimes causing attribute errors (:dpy-issue:`6390`)" + +msgid "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" +msgstr "Fix issue resending a file during request retries on newer versions of ``aiohttp`` (:dpy-issue:`6531`)" + +msgid "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" +msgstr "Raise an error when ``user_ids`` is empty in :meth:`Guild.query_members`" + +msgid "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." +msgstr "Fix ``__str__`` magic method raising when a :class:`Guild` is unavailable." + +msgid "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" +msgstr "Fix potential :exc:`AttributeError` when accessing :attr:`VoiceChannel.members` (:dpy-issue:`6602`)" + +msgid ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" +msgstr ":class:`Embed` constructor parameters now implicitly convert to :class:`str` (:dpy-issue:`6574`)" + +msgid "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" +msgstr "Ensure ``discord`` package is only run if executed as a script (:dpy-issue:`6483`)" + +msgid "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." +msgstr "|commands| Fix irrelevant commands potentially being unloaded during cog unload due to failure." + +msgid "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" +msgstr "|commands| Fix attribute errors when setting a cog to :class:`~.ext.commands.HelpCommand` (:dpy-issue:`5154`)" + +msgid "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" +msgstr "|commands| Fix :attr:`Context.invoked_with ` being improperly reassigned during a :meth:`~ext.commands.Context.reinvoke` (:dpy-issue:`6451`, :dpy-issue:`6462`)" + +msgid "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" +msgstr "|commands| Remove duplicates from :meth:`HelpCommand.get_bot_mapping ` (:dpy-issue:`6316`)" + +msgid "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" +msgstr "|commands| Properly handle positional-only parameters in bot command signatures (:dpy-issue:`6431`)" + +msgid "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" +msgstr "|commands| Group signatures now properly show up in :attr:`Command.signature ` (:dpy-issue:`6529`, :dpy-issue:`6530`)" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." +msgstr "User endpoints and all userbot related functionality has been deprecated and will be removed in the next major version of the library." + +msgid ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" +msgstr ":class:`Permission` class methods were updated to match the UI of the Discord client (:dpy-issue:`6476`)" + +msgid "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" +msgstr "``_`` and ``-`` characters are now stripped when making a new cog using the ``discord`` package (:dpy-issue:`6313`)" + +msgid "v1.6.0" +msgstr "v1.6.0" + +msgid "This version comes with support for replies and stickers." +msgstr "This version comes with support for replies and stickers." + +msgid "An entirely redesigned documentation. This was the cumulation of multiple months of effort." +msgstr "An entirely redesigned documentation. This was the cumulation of multiple months of effort." + +msgid "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." +msgstr "There's now a dark theme, feel free to navigate to the cog on the screen to change your setting, though this should be automatic." + +msgid "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" +msgstr "Add support for :meth:`AppInfo.icon_url_as` and :meth:`AppInfo.cover_image_url_as` (:dpy-issue:`5888`)" + +msgid "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" +msgstr "Add :meth:`Colour.random` to get a random colour (:dpy-issue:`6067`)" + +msgid "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" +msgstr "Add support for stickers via :class:`Sticker` (:dpy-issue:`5946`)" + +msgid "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" +msgstr "Add support for replying via :meth:`Message.reply` (:dpy-issue:`6061`)" + +msgid "This also comes with the :attr:`AllowedMentions.replied_user` setting." +msgstr "This also comes with the :attr:`AllowedMentions.replied_user` setting." + +msgid ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." +msgstr ":meth:`abc.Messageable.send` can now accept a :class:`MessageReference`." + +msgid ":class:`MessageReference` can now be constructed by users." +msgstr ":class:`MessageReference` can now be constructed by users." + +msgid ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." +msgstr ":meth:`Message.to_reference` can now convert a message to a :class:`MessageReference`." + +msgid "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." +msgstr "Add support for getting the replied to resolved message through :attr:`MessageReference.resolved`." + +msgid "Add support for role tags." +msgstr "Add support for role tags." + +msgid ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." +msgstr ":attr:`Guild.premium_subscriber_role` to get the \"Nitro Booster\" role (if available)." + +msgid ":attr:`Guild.self_role` to get the bot's own role (if available)." +msgstr ":attr:`Guild.self_role` to get the bot's own role (if available)." + +msgid ":attr:`Role.tags` to get the role's tags." +msgstr ":attr:`Role.tags` to get the role's tags." + +msgid ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." +msgstr ":meth:`Role.is_premium_subscriber` to check if a role is the \"Nitro Booster\" role." + +msgid ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." +msgstr ":meth:`Role.is_bot_managed` to check if a role is a bot role (i.e. the automatically created role for bots)." + +msgid ":meth:`Role.is_integration` to check if a role is role created by an integration." +msgstr ":meth:`Role.is_integration` to check if a role is role created by an integration." + +msgid "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." +msgstr "Add :meth:`Client.is_ws_ratelimited` to check if the websocket is rate limited." + +msgid ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." +msgstr ":meth:`ShardInfo.is_ws_ratelimited` is the equivalent for checking a specific shard." + +msgid "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" +msgstr "Add support for chunking an :class:`AsyncIterator` through :meth:`AsyncIterator.chunk` (:dpy-issue:`6100`, :dpy-issue:`6082`)" + +msgid "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" +msgstr "Add :attr:`PartialEmoji.created_at` (:dpy-issue:`6128`)" + +msgid "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" +msgstr "Add support for editing and deleting webhook sent messages (:dpy-issue:`6058`)" + +msgid "This adds :class:`WebhookMessage` as well to power this behaviour." +msgstr "This adds :class:`WebhookMessage` as well to power this behaviour." + +msgid "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" +msgstr "Add :class:`PartialMessage` to allow working with a message via channel objects and just a message_id (:dpy-issue:`5905`)" + +msgid "This is useful if you don't want to incur an extra API call to fetch the message." +msgstr "This is useful if you don't want to incur an extra API call to fetch the message." + +msgid "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" +msgstr "Add :meth:`Emoji.url_as` (:dpy-issue:`6162`)" + +msgid "Add support for :attr:`Member.pending` for the membership gating feature." +msgstr "Add support for :attr:`Member.pending` for the membership gating feature." + +msgid "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" +msgstr "Allow ``colour`` parameter to take ``int`` in :meth:`Guild.create_role` (:dpy-issue:`6195`)" + +msgid "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" +msgstr "Add support for ``presences`` in :meth:`Guild.query_members` (:dpy-issue:`2354`)" + +msgid "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" +msgstr "|commands| Add support for ``description`` keyword argument in :class:`commands.Cog ` (:dpy-issue:`6028`)" + +msgid "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." +msgstr "|tasks| Add support for calling the wrapped coroutine as a function via ``__call__``." + +msgid "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" +msgstr "Raise :exc:`DiscordServerError` when reaching 503s repeatedly (:dpy-issue:`6044`)" + +msgid "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" +msgstr "Fix :exc:`AttributeError` when :meth:`Client.fetch_template` is called (:dpy-issue:`5986`)" + +msgid "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" +msgstr "Fix errors when playing audio and moving to another channel (:dpy-issue:`5953`)" + +msgid "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" +msgstr "Fix :exc:`AttributeError` when voice channels disconnect too fast (:dpy-issue:`6039`)" + +msgid "Fix stale :class:`User` references when the members intent is off." +msgstr "Fix stale :class:`User` references when the members intent is off." + +msgid "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." +msgstr "Fix :func:`on_user_update` not dispatching in certain cases when a member is not cached but the user somehow is." + +msgid "Fix :attr:`Message.author` being overwritten in certain cases during message update." +msgstr "Fix :attr:`Message.author` being overwritten in certain cases during message update." + +msgid "This would previously make it so :attr:`Message.author` is a :class:`User`." +msgstr "This would previously make it so :attr:`Message.author` is a :class:`User`." + +msgid "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" +msgstr "Fix :exc:`UnboundLocalError` for editing ``public_updates_channel`` in :meth:`Guild.edit` (:dpy-issue:`6093`)" + +msgid "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" +msgstr "Fix uninitialised :attr:`CustomActivity.created_at` (:dpy-issue:`6095`)" + +msgid "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" +msgstr "|commands| Errors during cog unload no longer stops module cleanup (:dpy-issue:`6113`)" + +msgid "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" +msgstr "|commands| Properly cleanup lingering commands when a conflicting alias is found when adding commands (:dpy-issue:`6217`)" + +msgid "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" +msgstr "``ffmpeg`` spawned processes no longer open a window in Windows (:dpy-issue:`6038`)" + +msgid "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" +msgstr "Update dependencies to allow the library to work on Python 3.9+ without requiring build tools. (:dpy-issue:`5984`, :dpy-issue:`5970`)" + +msgid "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" +msgstr "Fix docstring issue leading to a SyntaxError in 3.9 (:dpy-issue:`6153`)" + +msgid "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" +msgstr "Update Windows opus binaries from 1.2.1 to 1.3.1 (:dpy-issue:`6161`)" + +msgid "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" +msgstr "Allow :meth:`Guild.create_role` to accept :class:`int` as the ``colour`` parameter (:dpy-issue:`6195`)" + +msgid "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" +msgstr "|commands| :class:`MessageConverter ` regex got updated to support ``www.`` prefixes (:dpy-issue:`6002`)" + +msgid "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." +msgstr "|commands| :class:`UserConverter ` now fetches the API if an ID is passed and the user is not cached." + +msgid "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" +msgstr "|commands| :func:`max_concurrency ` is now called before cooldowns (:dpy-issue:`6172`)" + +msgid "v1.5.1" +msgstr "v1.5.1" + +msgid "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping quotes properly (:dpy-issue:`5897`)" + +msgid "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" +msgstr "Fix :class:`Message` not being hashable (:dpy-issue:`5901`, :dpy-issue:`5866`)" + +msgid "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" +msgstr "Fix moving channels to the end of the channel list (:dpy-issue:`5923`)" + +msgid "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" +msgstr "Fix seemingly strange behaviour in ``__eq__`` for :class:`PermissionOverwrite` (:dpy-issue:`5929`)" + +msgid "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" +msgstr "Fix aliases showing up in ``__iter__`` for :class:`Intents` (:dpy-issue:`5945`)" + +msgid "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" +msgstr "Fix the bot disconnecting from voice when moving them to another channel (:dpy-issue:`5904`)" + +msgid "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." +msgstr "Fix attribute errors when chunking times out sometimes during delayed on_ready dispatching." + +msgid "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" +msgstr "Ensure that the bot's own member is not evicted from the cache (:dpy-issue:`5949`)" + +msgid "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" +msgstr "Members are now loaded during ``GUILD_MEMBER_UPDATE`` events if :attr:`MemberCacheFlags.joined` is set. (:dpy-issue:`5930`)" + +msgid "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." +msgstr "|commands| :class:`MemberConverter ` now properly lazily fetches members if not available from cache." + +msgid "This is the same as having ``discord.Member`` as the type-hint." +msgstr "This is the same as having ``discord.Member`` as the type-hint." + +msgid ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." +msgstr ":meth:`Guild.chunk` now allows concurrent calls without spamming the gateway with requests." + +msgid "v1.5.0" +msgstr "v1.5.0" + +msgid "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." +msgstr "This version came with forced breaking changes that Discord is requiring all bots to go through on October 7th. It is highly recommended to read the documentation on intents, :ref:`intents_primer`." + +msgid "API Changes" +msgstr "API Changes" + +msgid "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." +msgstr "Members and presences will no longer be retrieved due to an API change. See :ref:`privileged_intents` for more info." + +msgid "As a consequence, fetching offline members is disabled if the members intent is not enabled." +msgstr "As a consequence, fetching offline members is disabled if the members intent is not enabled." + +msgid "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." +msgstr "Support for gateway intents, passed via ``intents`` in :class:`Client` using :class:`Intents`." + +msgid "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" +msgstr "Add :attr:`VoiceRegion.south_korea` (:dpy-issue:`5233`)" + +msgid "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" +msgstr "Add support for ``__eq__`` for :class:`Message` (:dpy-issue:`5789`)" + +msgid "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" +msgstr "Add :meth:`Colour.dark_theme` factory method (:dpy-issue:`1584`)" + +msgid "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" +msgstr "Add :meth:`AllowedMentions.none` and :meth:`AllowedMentions.all` (:dpy-issue:`5785`)" + +msgid "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" +msgstr "Add more concrete exceptions for 500 class errors under :class:`DiscordServerError` (:dpy-issue:`5797`)" + +msgid "Implement :class:`VoiceProtocol` to better intersect the voice flow." +msgstr "Implement :class:`VoiceProtocol` to better intersect the voice flow." + +msgid "Add :meth:`Guild.chunk` to fully chunk a guild." +msgstr "Add :meth:`Guild.chunk` to fully chunk a guild." + +msgid "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." +msgstr "Add :class:`MemberCacheFlags` to better control member cache. See :ref:`intents_member_cache` for more info." + +msgid "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" +msgstr "Add support for :attr:`ActivityType.competing` (:dpy-issue:`5823`)" + +msgid "This seems currently unused API wise." +msgstr "This seems currently unused API wise." + +msgid "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" +msgstr "Add support for message references, :attr:`Message.reference` (:dpy-issue:`5754`, :dpy-issue:`5832`)" + +msgid "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" +msgstr "Add alias for :class:`ColourConverter` under ``ColorConverter`` (:dpy-issue:`5773`)" + +msgid "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" +msgstr "Add alias for :attr:`PublicUserFlags.verified_bot_developer` under :attr:`PublicUserFlags.early_verified_bot_developer` (:dpy-issue:`5849`)" + +msgid "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" +msgstr "|commands| Add support for ``require_var_positional`` for :class:`Command` (:dpy-issue:`5793`)" + +msgid "Fix issue with :meth:`Guild.by_category` not showing certain channels." +msgstr "Fix issue with :meth:`Guild.by_category` not showing certain channels." + +msgid "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" +msgstr "Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` (:dpy-issue:`5772`)" + +msgid "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" +msgstr "Fix handling of cloudflare bans on webhook related requests (:dpy-issue:`5221`)" + +msgid "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" +msgstr "Fix cases where a keep-alive thread would ack despite already dying (:dpy-issue:`5800`)" + +msgid "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" +msgstr "Fix cases where a :class:`Member` reference would be stale when cache is disabled in message events (:dpy-issue:`5819`)" + +msgid "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" +msgstr "Fix ``allowed_mentions`` not being sent when sending a single file (:dpy-issue:`5835`)" + +msgid "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" +msgstr "Fix ``overwrites`` being ignored in :meth:`abc.GuildChannel.edit` if ``{}`` is passed (:dpy-issue:`5756`, :dpy-issue:`5757`)" + +msgid "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" +msgstr "|commands| Fix exceptions being raised improperly in command invoke hooks (:dpy-issue:`5799`)" + +msgid "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" +msgstr "|commands| Fix commands not being properly ejected during errors in a cog injection (:dpy-issue:`5804`)" + +msgid "|commands| Fix cooldown timing ignoring edited timestamps." +msgstr "|commands| Fix cooldown timing ignoring edited timestamps." + +msgid "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" +msgstr "|tasks| Fix tasks extending the next iteration on handled exceptions (:dpy-issue:`5762`, :dpy-issue:`5763`)" + +msgid "Webhook requests are now logged (:dpy-issue:`5798`)" +msgstr "Webhook requests are now logged (:dpy-issue:`5798`)" + +msgid "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." +msgstr "Remove caching layer from :attr:`AutoShardedClient.shards`. This was causing issues if queried before launching shards." + +msgid "Gateway rate limits are now handled." +msgstr "Gateway rate limits are now handled." + +msgid "Warnings logged due to missed caches are now changed to DEBUG log level." +msgstr "Warnings logged due to missed caches are now changed to DEBUG log level." + +msgid "Some strings are now explicitly interned to reduce memory usage." +msgstr "Some strings are now explicitly interned to reduce memory usage." + +msgid "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" +msgstr "Usage of namedtuples has been reduced to avoid potential breaking changes in the future (:dpy-issue:`5834`)" + +msgid "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" +msgstr "|commands| All :class:`BadArgument` exceptions from the built-in converters now raise concrete exceptions to better tell them apart (:dpy-issue:`5748`)" + +msgid "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" +msgstr "|tasks| Lazily fetch the event loop to prevent surprises when changing event loop policy (:dpy-issue:`5808`)" + +msgid "v1.4.2" +msgstr "v1.4.2" + +msgid "This is a maintenance release with backports from :ref:`vp1p5p0`." +msgstr "This is a maintenance release with backports from :ref:`vp1p5p0`." + +msgid "v1.4.1" +msgstr "v1.4.1" + +msgid "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" +msgstr "Properly terminate the connection when :meth:`Client.close` is called (:dpy-issue:`5207`)" + +msgid "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" +msgstr "Fix error being raised when clearing embed author or image when it was already cleared (:dpy-issue:`5210`, :dpy-issue:`5212`)" + +msgid "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" +msgstr "Fix ``__path__`` to allow editable extensions (:dpy-issue:`5213`)" + +msgid "v1.4.0" +msgstr "v1.4.0" + +msgid "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" +msgstr "Another version with a long development time. Features like Intents are slated to be released in a v1.5 release. Thank you for your patience!" + +msgid "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." +msgstr "Add support for :class:`AllowedMentions` to have more control over what gets mentioned." + +msgid "This can be set globally through :attr:`Client.allowed_mentions`" +msgstr "This can be set globally through :attr:`Client.allowed_mentions`" + +msgid "This can also be set on a per message basis via :meth:`abc.Messageable.send`" +msgstr "This can also be set on a per message basis via :meth:`abc.Messageable.send`" + +msgid ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" +msgstr ":class:`AutoShardedClient` has been completely redesigned from the ground up to better suit multi-process clusters (:dpy-issue:`2654`)" + +msgid "Add :class:`ShardInfo` which allows fetching specific information about a shard." +msgstr "Add :class:`ShardInfo` which allows fetching specific information about a shard." + +msgid "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." +msgstr "The :class:`ShardInfo` allows for reconnecting and disconnecting of a specific shard as well." + +msgid "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." +msgstr "Add :meth:`AutoShardedClient.get_shard` and :attr:`AutoShardedClient.shards` to get information about shards." + +msgid "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." +msgstr "Rework the entire connection flow to better facilitate the ``IDENTIFY`` rate limits." + +msgid "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." +msgstr "Add a hook :meth:`Client.before_identify_hook` to have better control over what happens before an ``IDENTIFY`` is done." + +msgid "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." +msgstr "Add more shard related events such as :func:`on_shard_connect`, :func:`on_shard_disconnect` and :func:`on_shard_resumed`." + +msgid "Add support for guild templates (:dpy-issue:`2652`)" +msgstr "Add support for guild templates (:dpy-issue:`2652`)" + +msgid "This adds :class:`Template` to read a template's information." +msgstr "This adds :class:`Template` to read a template's information." + +msgid ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." +msgstr ":meth:`Client.fetch_template` can be used to fetch a template's information from the API." + +msgid ":meth:`Client.create_guild` can now take an optional template to base the creation from." +msgstr ":meth:`Client.create_guild` can now take an optional template to base the creation from." + +msgid "Note that fetching a guild's template is currently restricted for bot accounts." +msgstr "Note that fetching a guild's template is currently restricted for bot accounts." + +msgid "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" +msgstr "Add support for guild integrations (:dpy-issue:`2051`, :dpy-issue:`1083`)" + +msgid ":class:`Integration` is used to read integration information." +msgstr ":class:`Integration` is used to read integration information." + +msgid ":class:`IntegrationAccount` is used to read integration account information." +msgstr ":class:`IntegrationAccount` is used to read integration account information." + +msgid ":meth:`Guild.integrations` will fetch all integrations in a guild." +msgstr ":meth:`Guild.integrations` will fetch all integrations in a guild." + +msgid ":meth:`Guild.create_integration` will create an integration." +msgstr ":meth:`Guild.create_integration` will create an integration." + +msgid ":meth:`Integration.edit` will edit an existing integration." +msgstr ":meth:`Integration.edit` will edit an existing integration." + +msgid ":meth:`Integration.delete` will delete an integration." +msgstr ":meth:`Integration.delete` will delete an integration." + +msgid ":meth:`Integration.sync` will sync an integration." +msgstr ":meth:`Integration.sync` will sync an integration." + +msgid "There is currently no support in the audit log for this." +msgstr "There is currently no support in the audit log for this." + +msgid "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" +msgstr "Add an alias for :attr:`VerificationLevel.extreme` under :attr:`VerificationLevel.very_high` (:dpy-issue:`2650`)" + +msgid "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" +msgstr "Add various grey to gray aliases for :class:`Colour` (:dpy-issue:`5130`)" + +msgid "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" +msgstr "Added :attr:`VoiceClient.latency` and :attr:`VoiceClient.average_latency` (:dpy-issue:`2535`)" + +msgid "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" +msgstr "Add ``use_cached`` and ``spoiler`` parameters to :meth:`Attachment.to_file` (:dpy-issue:`2577`, :dpy-issue:`4095`)" + +msgid "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" +msgstr "Add ``position`` parameter support to :meth:`Guild.create_category` (:dpy-issue:`2623`)" + +msgid "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" +msgstr "Allow passing ``int`` for the colour in :meth:`Role.edit` (:dpy-issue:`4057`)" + +msgid "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" +msgstr "Add :meth:`Embed.remove_author` to clear author information from an embed (:dpy-issue:`4068`)" + +msgid "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" +msgstr "Add the ability to clear images and thumbnails in embeds using :attr:`Embed.Empty` (:dpy-issue:`4053`)" + +msgid "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.max_video_channel_users` (:dpy-issue:`4120`)" + +msgid "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" +msgstr "Add :attr:`Guild.public_updates_channel` (:dpy-issue:`4120`)" + +msgid "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" +msgstr "Add ``guild_ready_timeout`` parameter to :class:`Client` and subclasses to control timeouts when the ``GUILD_CREATE`` stream takes too long (:dpy-issue:`4112`)" + +msgid "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" +msgstr "Add support for public user flags via :attr:`User.public_flags` and :class:`PublicUserFlags` (:dpy-issue:`3999`)" + +msgid "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" +msgstr "Allow changing of channel types via :meth:`TextChannel.edit` to and from a news channel (:dpy-issue:`4121`)" + +msgid "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" +msgstr "Add :meth:`Guild.edit_role_positions` to bulk edit role positions in a single API call (:dpy-issue:`2501`, :dpy-issue:`2143`)" + +msgid "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" +msgstr "Add :meth:`Guild.change_voice_state` to change your voice state in a guild (:dpy-issue:`5088`)" + +msgid "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.is_icon_animated` for checking if the invite guild has animated icon (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" +msgstr "Add :meth:`PartialInviteGuild.icon_url_as` now supports ``static_format`` for consistency (:dpy-issue:`4180`, :dpy-issue:`4181`)" + +msgid "Add support for ``user_ids`` in :meth:`Guild.query_members`" +msgstr "Add support for ``user_ids`` in :meth:`Guild.query_members`" + +msgid "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" +msgstr "Add support for pruning members by roles in :meth:`Guild.prune_members` (:dpy-issue:`4043`)" + +msgid "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" +msgstr "|commands| Implement :func:`~ext.commands.before_invoke` and :func:`~ext.commands.after_invoke` decorators (:dpy-issue:`1986`, :dpy-issue:`2502`)" + +msgid "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" +msgstr "|commands| Add a way to retrieve ``retry_after`` from a cooldown in a command via :meth:`Command.get_cooldown_retry_after <.ext.commands.Command.get_cooldown_retry_after>` (:dpy-issue:`5195`)" + +msgid "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" +msgstr "|commands| Add a way to dynamically add and remove checks from a :class:`HelpCommand <.ext.commands.HelpCommand>` (:dpy-issue:`5197`)" + +msgid "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" +msgstr "|tasks| Add :meth:`Loop.is_running <.ext.tasks.Loop.is_running>` method to the task objects (:dpy-issue:`2540`)" + +msgid "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" +msgstr "|tasks| Allow usage of custom error handlers similar to the command extensions to tasks using :meth:`Loop.error <.ext.tasks.Loop.error>` decorator (:dpy-issue:`2621`)" + +msgid "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" +msgstr "Fix issue with :attr:`PartialEmoji.url` reads leading to a failure (:dpy-issue:`4015`, :dpy-issue:`4016`)" + +msgid "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" +msgstr "Allow :meth:`abc.Messageable.history` to take a limit of ``1`` even if ``around`` is passed (:dpy-issue:`4019`)" + +msgid "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" +msgstr "Fix :attr:`Guild.member_count` not updating in certain cases when a member has left the guild (:dpy-issue:`4021`)" + +msgid "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" +msgstr "Fix the type of :attr:`Object.id` not being validated. For backwards compatibility ``str`` is still allowed but is converted to ``int`` (:dpy-issue:`4002`)" + +msgid "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" +msgstr "Fix :meth:`Guild.edit` not allowing editing of notification settings (:dpy-issue:`4074`, :dpy-issue:`4047`)" + +msgid "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" +msgstr "Fix crash when the guild widget contains channels that aren't in the payload (:dpy-issue:`4114`, :dpy-issue:`4115`)" + +msgid "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" +msgstr "Close ffmpeg stdin handling from spawned processes with :class:`FFmpegOpusAudio` and :class:`FFmpegPCMAudio` (:dpy-issue:`4036`)" + +msgid "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" +msgstr "Fix :func:`utils.escape_markdown` not escaping masked links (:dpy-issue:`4206`, :dpy-issue:`4207`)" + +msgid "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" +msgstr "Fix reconnect loop due to failed handshake on region change (:dpy-issue:`4210`, :dpy-issue:`3996`)" + +msgid "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" +msgstr "Fix :meth:`Guild.by_category` not returning empty categories (:dpy-issue:`4186`)" + +msgid "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" +msgstr "Fix certain JPEG images not being identified as JPEG (:dpy-issue:`5143`)" + +msgid "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" +msgstr "Fix a crash when an incomplete guild object is used when fetching reaction information (:dpy-issue:`5181`)" + +msgid "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" +msgstr "Fix a timeout issue when fetching members using :meth:`Guild.query_members`" + +msgid "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" +msgstr "Fix an issue with domain resolution in voice (:dpy-issue:`5188`, :dpy-issue:`5191`)" + +msgid "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" +msgstr "Fix an issue where :attr:`PartialEmoji.id` could be a string (:dpy-issue:`4153`, :dpy-issue:`4152`)" + +msgid "Fix regression where :attr:`Member.activities` would not clear." +msgstr "Fix regression where :attr:`Member.activities` would not clear." + +msgid "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" +msgstr "|commands| A :exc:`TypeError` is now raised when :obj:`typing.Optional` is used within :data:`commands.Greedy <.ext.commands.Greedy>` (:dpy-issue:`2253`, :dpy-issue:`5068`)" + +msgid "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" +msgstr "|commands| :meth:`Bot.walk_commands <.ext.commands.Bot.walk_commands>` no longer yields duplicate commands due to aliases (:dpy-issue:`2591`)" + +msgid "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" +msgstr "|commands| Fix regex characters not being escaped in :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` (:dpy-issue:`4058`, :dpy-issue:`4071`)" + +msgid "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" +msgstr "|commands| Fix :meth:`Bot.get_command <.ext.commands.Bot.get_command>` from raising errors when a name only has whitespace (:dpy-issue:`5124`)" + +msgid "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" +msgstr "|commands| Fix issue with :attr:`Context.subcommand_passed <.ext.commands.Context.subcommand_passed>` not functioning as expected (:dpy-issue:`5198`)" + +msgid "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" +msgstr "|tasks| Task objects are no longer stored globally so two class instances can now start two separate tasks (:dpy-issue:`2294`)" + +msgid "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" +msgstr "|tasks| Allow cancelling the loop within :meth:`before_loop <.ext.tasks.Loop.before_loop>` (:dpy-issue:`4082`)" + +msgid "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" +msgstr "The :attr:`Member.roles` cache introduced in v1.3 was reverted due to issues caused (:dpy-issue:`4087`, :dpy-issue:`4157`)" + +msgid ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" +msgstr ":class:`Webhook` objects are now comparable and hashable (:dpy-issue:`4182`)" + +msgid "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" +msgstr "Some more API requests got a ``reason`` parameter for audit logs (:dpy-issue:`5086`)" + +msgid ":meth:`TextChannel.follow`" +msgstr ":meth:`TextChannel.follow`" + +msgid ":meth:`Message.pin` and :meth:`Message.unpin`" +msgstr ":meth:`Message.pin` and :meth:`Message.unpin`" + +msgid ":meth:`Webhook.delete` and :meth:`Webhook.edit`" +msgstr ":meth:`Webhook.delete` and :meth:`Webhook.edit`" + +msgid "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." +msgstr "For performance reasons ``websockets`` has been dropped in favour of ``aiohttp.ws``." + +msgid "The blocking logging message now shows the stack trace of where the main thread was blocking" +msgstr "The blocking logging message now shows the stack trace of where the main thread was blocking" + +msgid "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" +msgstr "The domain name was changed from ``discordapp.com`` to ``discord.com`` to prepare for the required domain migration" + +msgid "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" +msgstr "Reduce memory usage when reconnecting due to stale references being held by the message cache (:dpy-issue:`5133`)" + +msgid "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." +msgstr "Optimize :meth:`abc.GuildChannel.permissions_for` by not creating as many temporary objects (20-32% savings)." + +msgid "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" +msgstr "|commands| Raise :exc:`~ext.commands.CommandRegistrationError` instead of :exc:`ClientException` when a duplicate error is registered (:dpy-issue:`4217`)" + +msgid "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" +msgstr "|tasks| No longer handle :exc:`HTTPException` by default in the task reconnect loop (:dpy-issue:`5193`)" + +msgid "v1.3.4" +msgstr "v1.3.4" + +msgid "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" +msgstr "Fix an issue with channel overwrites causing multiple issues including crashes (:dpy-issue:`5109`)" + +msgid "v1.3.3" +msgstr "v1.3.3" + +msgid "Change default WS close to 4000 instead of 1000." +msgstr "Change default WS close to 4000 instead of 1000." + +msgid "The previous close code caused sessions to be invalidated at a higher frequency than desired." +msgstr "The previous close code caused sessions to be invalidated at a higher frequency than desired." + +msgid "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" +msgstr "Fix ``None`` appearing in ``Member.activities``. (:dpy-issue:`2619`)" + +msgid "v1.3.2" +msgstr "v1.3.2" + +msgid "Another minor bug fix release." +msgstr "Another minor bug fix release." + +msgid "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." +msgstr "Higher the wait time during the ``GUILD_CREATE`` stream before ``on_ready`` is fired for :class:`AutoShardedClient`." + +msgid ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." +msgstr ":func:`on_voice_state_update` now uses the inner ``member`` payload which should make it more reliable." + +msgid "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" +msgstr "Fix various Cloudflare handling errors (:dpy-issue:`2572`, :dpy-issue:`2544`)" + +msgid "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." +msgstr "Fix crashes if :attr:`Message.guild` is :class:`Object` instead of :class:`Guild`." + +msgid "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." +msgstr "Fix :meth:`Webhook.send` returning an empty string instead of ``None`` when ``wait=False``." + +msgid "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" +msgstr "Fix invalid format specifier in webhook state (:dpy-issue:`2570`)" + +msgid "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." +msgstr "|commands| Passing invalid permissions to permission related checks now raises ``TypeError``." + +msgid "v1.3.1" +msgstr "v1.3.1" + +msgid "Minor bug fix release." +msgstr "Minor bug fix release." + +msgid "Fix fetching invites in guilds that the user is not in." +msgstr "Fix fetching invites in guilds that the user is not in." + +msgid "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" +msgstr "Fix the channel returned from :meth:`Client.fetch_channel` raising when sending messages. (:dpy-issue:`2531`)" + +msgid "Fix compatibility warnings when using the Python 3.9 alpha." +msgstr "Fix compatibility warnings when using the Python 3.9 alpha." + +msgid "Change the unknown event logging from WARNING to DEBUG to reduce noise." +msgstr "Change the unknown event logging from WARNING to DEBUG to reduce noise." + +msgid "v1.3.0" +msgstr "v1.3.0" + +msgid "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" +msgstr "This version comes with a lot of bug fixes and new features. It's been in development for a lot longer than was anticipated!" + +msgid "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" +msgstr "Add :meth:`Guild.fetch_members` to fetch members from the HTTP API. (:dpy-issue:`2204`)" + +msgid "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" +msgstr "Add :meth:`Guild.fetch_roles` to fetch roles from the HTTP API. (:dpy-issue:`2208`)" + +msgid "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" +msgstr "Add support for teams via :class:`Team` when fetching with :meth:`Client.application_info`. (:dpy-issue:`2239`)" + +msgid "Add support for suppressing embeds via :meth:`Message.edit`" +msgstr "Add support for suppressing embeds via :meth:`Message.edit`" + +msgid "Add support for guild subscriptions. See the :class:`Client` documentation for more details." +msgstr "Add support for guild subscriptions. See the :class:`Client` documentation for more details." + +msgid "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." +msgstr "Add :attr:`VoiceChannel.voice_states` to get voice states without relying on member cache." + +msgid "Add :meth:`Guild.query_members` to request members from the gateway." +msgstr "Add :meth:`Guild.query_members` to request members from the gateway." + +msgid "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" +msgstr "Add :class:`FFmpegOpusAudio` and other voice improvements. (:dpy-issue:`2258`)" + +msgid "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" +msgstr "Add :attr:`RawMessageUpdateEvent.channel_id` for retrieving channel IDs during raw message updates. (:dpy-issue:`2301`)" + +msgid "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." +msgstr "Add :attr:`RawReactionActionEvent.event_type` to disambiguate between reaction addition and removal in reaction events." + +msgid "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" +msgstr "Add :attr:`abc.GuildChannel.permissions_synced` to query whether permissions are synced with the category. (:dpy-issue:`2300`, :dpy-issue:`2324`)" + +msgid "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" +msgstr "Add :attr:`MessageType.channel_follow_add` message type for announcement channels being followed. (:dpy-issue:`2314`)" + +msgid "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." +msgstr "Add :meth:`Message.is_system` to allow for quickly filtering through system messages." + +msgid "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" +msgstr "Add :attr:`VoiceState.self_stream` to indicate whether someone is streaming via Go Live. (:dpy-issue:`2343`)" + +msgid "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" +msgstr "Add :meth:`Emoji.is_usable` to check if the client user can use an emoji. (:dpy-issue:`2349`)" + +msgid "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" +msgstr "Add :attr:`VoiceRegion.europe` and :attr:`VoiceRegion.dubai`. (:dpy-issue:`2358`, :dpy-issue:`2490`)" + +msgid "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" +msgstr "Add :meth:`TextChannel.follow` to follow a news channel. (:dpy-issue:`2367`)" + +msgid "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" +msgstr "Add :attr:`Permissions.view_guild_insights` permission. (:dpy-issue:`2415`)" + +msgid "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" +msgstr "Add support for new audit log types. See :ref:`discord-api-audit-logs` for more information. (:dpy-issue:`2427`)" + +msgid "Note that integration support is not finalized." +msgstr "Note that integration support is not finalized." + +msgid "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" +msgstr "Add :attr:`Webhook.type` to query the type of webhook (:class:`WebhookType`). (:dpy-issue:`2441`)" + +msgid "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" +msgstr "Allow bulk editing of channel overwrites through :meth:`abc.GuildChannel.edit`. (:dpy-issue:`2198`)" + +msgid "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" +msgstr "Add :class:`Activity.created_at` to see when an activity was started. (:dpy-issue:`2446`)" + +msgid "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" +msgstr "Add support for ``xsalsa20_poly1305_lite`` encryption mode for voice. (:dpy-issue:`2463`)" + +msgid "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" +msgstr "Add :attr:`RawReactionActionEvent.member` to get the member who did the reaction. (:dpy-issue:`2443`)" + +msgid "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" +msgstr "Add support for new YouTube streaming via :attr:`Streaming.platform` and :attr:`Streaming.game`. (:dpy-issue:`2445`)" + +msgid "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.discovery_splash_url` to get the discovery splash image asset. (:dpy-issue:`2482`)" + +msgid "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" +msgstr "Add :attr:`Guild.rules_channel` to get the rules channel of public guilds. (:dpy-issue:`2482`)" + +msgid "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." +msgstr "It should be noted that this feature is restricted to those who are either in Server Discovery or planning to be there." + +msgid "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" +msgstr "Add support for message flags via :attr:`Message.flags` and :class:`MessageFlags`. (:dpy-issue:`2433`)" + +msgid "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." +msgstr "Add :attr:`User.system` and :attr:`Profile.system` to know whether a user is an official Discord Trust and Safety account." + +msgid "Add :attr:`Profile.team_user` to check whether a user is a member of a team." +msgstr "Add :attr:`Profile.team_user` to check whether a user is a member of a team." + +msgid "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." +msgstr "Add :meth:`Attachment.to_file` to easily convert attachments to :class:`File` for sending." + +msgid "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" +msgstr "Add certain aliases to :class:`Permissions` to match the UI better. (:dpy-issue:`2496`)" + +msgid ":attr:`Permissions.manage_permissions`" +msgstr ":attr:`Permissions.manage_permissions`" + +msgid ":attr:`Permissions.view_channel`" +msgstr ":attr:`Permissions.view_channel`" + +msgid ":attr:`Permissions.use_external_emojis`" +msgstr ":attr:`Permissions.use_external_emojis`" + +msgid "Add support for passing keyword arguments when creating :class:`Permissions`." +msgstr "Add support for passing keyword arguments when creating :class:`Permissions`." + +msgid "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" +msgstr "Add support for custom activities via :class:`CustomActivity`. (:dpy-issue:`2400`)" + +msgid "Note that as of now, bots cannot send custom activities yet." +msgstr "Note that as of now, bots cannot send custom activities yet." + +msgid "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." +msgstr "Add support for :func:`on_invite_create` and :func:`on_invite_delete` events." + +msgid "Add support for clearing a specific reaction emoji from a message." +msgstr "Add support for clearing a specific reaction emoji from a message." + +msgid ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." +msgstr ":meth:`Message.clear_reaction` and :meth:`Reaction.clear` methods." + +msgid ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." +msgstr ":func:`on_raw_reaction_clear_emoji` and :func:`on_reaction_clear_emoji` events." + +msgid "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" +msgstr "Add :func:`utils.sleep_until` helper to sleep until a specific datetime. (:dpy-issue:`2517`, :dpy-issue:`2519`)" + +msgid "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" +msgstr "|commands| Add support for teams and :attr:`Bot.owner_ids <.ext.commands.Bot.owner_ids>` to have multiple bot owners. (:dpy-issue:`2239`)" + +msgid "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" +msgstr "|commands| Add new :attr:`BucketType.role <.ext.commands.BucketType.role>` bucket type. (:dpy-issue:`2201`)" + +msgid "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" +msgstr "|commands| Expose :attr:`Command.cog <.ext.commands.Command.cog>` property publicly. (:dpy-issue:`2360`)" + +msgid "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" +msgstr "|commands| Add non-decorator interface for adding checks to commands via :meth:`Command.add_check <.ext.commands.Command.add_check>` and :meth:`Command.remove_check <.ext.commands.Command.remove_check>`. (:dpy-issue:`2411`)" + +msgid "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`has_guild_permissions <.ext.commands.has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" +msgstr "|commands| Add :func:`bot_has_guild_permissions <.ext.commands.bot_has_guild_permissions>` check. (:dpy-issue:`2460`)" + +msgid "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." +msgstr "|commands| Add ``predicate`` attribute to checks decorated with :func:`~.ext.commands.check`." + +msgid "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." +msgstr "|commands| Add :func:`~.ext.commands.check_any` check to logical OR multiple checks." + +msgid "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." +msgstr "|commands| Add :func:`~.ext.commands.max_concurrency` to allow only a certain amount of users to use a command concurrently before waiting or erroring." + +msgid "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." +msgstr "|commands| Add support for calling a :class:`~.ext.commands.Command` as a regular function." + +msgid "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" +msgstr "|tasks| :meth:`Loop.add_exception_type <.ext.tasks.Loop.add_exception_type>` now allows multiple exceptions to be set. (:dpy-issue:`2333`)" + +msgid "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" +msgstr "|tasks| Add :attr:`Loop.next_iteration <.ext.tasks.Loop.next_iteration>` property. (:dpy-issue:`2305`)" + +msgid "Fix issue with permission resolution sometimes failing for guilds with no owner." +msgstr "Fix issue with permission resolution sometimes failing for guilds with no owner." + +msgid "Tokens are now stripped upon use. (:dpy-issue:`2135`)" +msgstr "Tokens are now stripped upon use. (:dpy-issue:`2135`)" + +msgid "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" +msgstr "Passing in a ``name`` is no longer required for :meth:`Emoji.edit`. (:dpy-issue:`2368`)" + +msgid "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" +msgstr "Fix issue with webhooks not re-raising after retries have run out. (:dpy-issue:`2272`, :dpy-issue:`2380`)" + +msgid "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" +msgstr "Fix mismatch in URL handling in :func:`utils.escape_markdown`. (:dpy-issue:`2420`)" + +msgid "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" +msgstr "Fix issue with ports being read in little endian when they should be big endian in voice connections. (:dpy-issue:`2470`)" + +msgid "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." +msgstr "Fix :meth:`Member.mentioned_in` not taking into consideration the message's guild." + +msgid "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." +msgstr "Fix bug with moving channels when there are gaps in positions due to channel deletion and creation." + +msgid "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" +msgstr "Fix :func:`on_shard_ready` not triggering when ``fetch_offline_members`` is disabled. (:dpy-issue:`2504`)" + +msgid "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." +msgstr "Fix issue with large sharded bots taking too long to actually dispatch :func:`on_ready`." + +msgid "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." +msgstr "Fix issue with fetching group DM based invites in :meth:`Client.fetch_invite`." + +msgid "Fix out of order files being sent in webhooks when there are 10 files." +msgstr "Fix out of order files being sent in webhooks when there are 10 files." + +msgid "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" +msgstr "|commands| Extensions that fail internally due to ImportError will no longer raise :exc:`~.ext.commands.ExtensionNotFound`. (:dpy-issue:`2244`, :dpy-issue:`2275`, :dpy-issue:`2291`)" + +msgid "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" +msgstr "|commands| Updating the :attr:`Paginator.suffix <.ext.commands.Paginator.suffix>` will not cause out of date calculations. (:dpy-issue:`2251`)" + +msgid "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, :dpy-issue:`2374`)" + +msgid "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" +msgstr "|commands| Fix issue with paginator prefix being ``None`` causing empty pages. (:dpy-issue:`2471`)" + +msgid "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." +msgstr "|commands| :class:`~.commands.Greedy` now ignores parsing errors rather than propagating them." + +msgid "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." +msgstr "|commands| :meth:`Command.can_run <.ext.commands.Command.can_run>` now checks whether a command is disabled." + +msgid "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" +msgstr "|commands| :attr:`HelpCommand.clean_prefix <.ext.commands.HelpCommand.clean_prefix>` now takes into consideration nickname mentions. (:dpy-issue:`2489`)" + +msgid "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." +msgstr "|commands| :meth:`Context.send_help <.ext.commands.Context.send_help>` now properly propagates to the :meth:`HelpCommand.on_help_command_error <.ext.commands.HelpCommand.on_help_command_error>` handler." + +msgid "The library now fully supports Python 3.8 without warnings." +msgstr "The library now fully supports Python 3.8 without warnings." + +msgid "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" +msgstr "Bump the dependency of ``websockets`` to 8.0 for those who can use it. (:dpy-issue:`2453`)" + +msgid "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." +msgstr "Due to Discord providing :class:`Member` data in mentions, users will now be upgraded to :class:`Member` more often if mentioned." + +msgid ":func:`utils.escape_markdown` now properly escapes new quote markdown." +msgstr ":func:`utils.escape_markdown` now properly escapes new quote markdown." + +msgid "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." +msgstr "The message cache can now be disabled by passing ``None`` to ``max_messages`` in :class:`Client`." + +msgid "The default message cache size has changed from 5000 to 1000 to accommodate small bots." +msgstr "The default message cache size has changed from 5000 to 1000 to accommodate small bots." + +msgid "Lower memory usage by only creating certain objects as needed in :class:`Role`." +msgstr "Lower memory usage by only creating certain objects as needed in :class:`Role`." + +msgid "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." +msgstr "There is now a sleep of 5 seconds before re-IDENTIFYing during a reconnect to prevent long loops of session invalidation." + +msgid "The rate limiting code now uses millisecond precision to have more granular rate limit handling." +msgstr "The rate limiting code now uses millisecond precision to have more granular rate limit handling." + +msgid "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." +msgstr "Along with that, the rate limiting code now uses Discord's response to wait. If you need to use the system clock again for whatever reason, consider passing ``assume_synced_clock`` in :class:`Client`." + +msgid "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" +msgstr "The performance of :attr:`Guild.default_role` has been improved from O(N) to O(1). (:dpy-issue:`2375`)" + +msgid "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." +msgstr "The performance of :attr:`Member.roles` has improved due to usage of caching to avoid surprising performance traps." + +msgid "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." +msgstr "The GC is manually triggered during things that cause large deallocations (such as guild removal) to prevent memory fragmentation." + +msgid "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." +msgstr "There have been many changes to the documentation for fixes both for usability, correctness, and to fix some linter errors. Thanks to everyone who contributed to those." + +msgid "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." +msgstr "The loading of the opus module has been delayed which would make the result of :func:`opus.is_loaded` somewhat surprising." + +msgid "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" +msgstr "|commands| Usernames prefixed with @ inside DMs will properly convert using the :class:`User` converter. (:dpy-issue:`2498`)" + +msgid "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" +msgstr "|tasks| The task sleeping time will now take into consideration the amount of time the task body has taken before sleeping. (:dpy-issue:`2516`)" + +msgid "v1.2.5" +msgstr "v1.2.5" + +msgid "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." +msgstr "Fix a bug that caused crashes due to missing ``animated`` field in Emoji structures in reactions." + +msgid "v1.2.4" +msgstr "v1.2.4" + +msgid "Fix a regression when :attr:`Message.channel` would be ``None``." +msgstr "Fix a regression when :attr:`Message.channel` would be ``None``." + +msgid "Fix a regression where :attr:`Message.edited_at` would not update during edits." +msgstr "Fix a regression where :attr:`Message.edited_at` would not update during edits." + +msgid "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." +msgstr "Fix a crash that would trigger during message updates (GH-2265, :dpy-issue:`2287`)." + +msgid "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." +msgstr "Fix a bug when :meth:`VoiceChannel.connect` would not return (:dpy-issue:`2274`, :dpy-issue:`2372`, :dpy-issue:`2373`, :dpy-issue:`2377`)." + +msgid "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." +msgstr "Fix a crash relating to token-less webhooks (:dpy-issue:`2364`)." + +msgid "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." +msgstr "Fix issue where :attr:`Guild.premium_subscription_count` would be ``None`` due to a Discord bug. (:dpy-issue:`2331`, :dpy-issue:`2376`)." + +msgid "v1.2.3" +msgstr "v1.2.3" + +msgid "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" +msgstr "Fix an AttributeError when accessing :attr:`Member.premium_since` in :func:`on_member_update`. (:dpy-issue:`2213`)" + +msgid "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" +msgstr "Handle :exc:`asyncio.CancelledError` in :meth:`abc.Messageable.typing` context manager. (:dpy-issue:`2218`)" + +msgid "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" +msgstr "Raise the max encoder bitrate to 512kbps to account for nitro boosting. (:dpy-issue:`2232`)" + +msgid "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" +msgstr "Properly propagate exceptions in :meth:`Client.run`. (:dpy-issue:`2237`)" + +msgid "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." +msgstr "|commands| Ensure cooldowns are properly copied when used in cog level ``command_attrs``." + +msgid "v1.2.2" +msgstr "v1.2.2" + +msgid "Audit log related attribute access have been fixed to not error out when they shouldn't have." +msgstr "Audit log related attribute access have been fixed to not error out when they shouldn't have." + +msgid "v1.2.1" +msgstr "v1.2.1" + +msgid ":attr:`User.avatar_url` and related attributes no longer raise an error." +msgstr ":attr:`User.avatar_url` and related attributes no longer raise an error." + +msgid "More compatibility shims with the ``enum.Enum`` code." +msgstr "More compatibility shims with the ``enum.Enum`` code." + +msgid "v1.2.0" +msgstr "v1.2.0" + +msgid "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." +msgstr "This update mainly brings performance improvements and various nitro boosting attributes (referred to in the API as \"premium guilds\")." + +msgid "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." +msgstr "Add :attr:`Guild.premium_tier` to query the guild's current nitro boost level." + +msgid "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." +msgstr "Add :attr:`Guild.emoji_limit`, :attr:`Guild.bitrate_limit`, :attr:`Guild.filesize_limit` to query the new limits of a guild when taking into consideration boosting." + +msgid "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." +msgstr "Add :attr:`Guild.premium_subscription_count` to query how many members are boosting a guild." + +msgid "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." +msgstr "Add :attr:`Member.premium_since` to query since when a member has boosted a guild." + +msgid "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." +msgstr "Add :attr:`Guild.premium_subscribers` to query all the members currently boosting the guild." + +msgid "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." +msgstr "Add :attr:`Guild.system_channel_flags` to query the settings for a guild's :attr:`Guild.system_channel`." + +msgid "This includes a new type named :class:`SystemChannelFlags`" +msgstr "This includes a new type named :class:`SystemChannelFlags`" + +msgid "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." +msgstr "Add :attr:`Emoji.available` to query if an emoji can be used (within the guild or otherwise)." + +msgid "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." +msgstr "Add support for animated icons in :meth:`Guild.icon_url_as` and :attr:`Guild.icon_url`." + +msgid "Add :meth:`Guild.is_icon_animated`." +msgstr "Add :meth:`Guild.is_icon_animated`." + +msgid "Add support for the various new :class:`MessageType` involving nitro boosting." +msgstr "Add support for the various new :class:`MessageType` involving nitro boosting." + +msgid "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" +msgstr "Add :attr:`VoiceRegion.india`. (:dpy-issue:`2145`)" + +msgid "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" +msgstr "Add :meth:`Embed.insert_field_at`. (:dpy-issue:`2178`)" + +msgid "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" +msgstr "Add a ``type`` attribute for all channels to their appropriate :class:`ChannelType`. (:dpy-issue:`2185`)" + +msgid "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Client.fetch_channel` to fetch a channel by ID via HTTP. (:dpy-issue:`2169`)" + +msgid "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" +msgstr "Add :meth:`Guild.fetch_channels` to fetch all channels via HTTP. (:dpy-issue:`2169`)" + +msgid "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." +msgstr "|tasks| Add :meth:`Loop.stop <.ext.tasks.Loop.stop>` to gracefully stop a task rather than cancelling." + +msgid "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." +msgstr "|tasks| Add :meth:`Loop.failed <.ext.tasks.Loop.failed>` to query if a task had failed somehow." + +msgid "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" +msgstr "|tasks| Add :meth:`Loop.change_interval <.ext.tasks.Loop.change_interval>` to change the sleep interval at runtime (:dpy-issue:`2158`, :dpy-issue:`2162`)" + +msgid "Fix internal error when using :meth:`Guild.prune_members`." +msgstr "Fix internal error when using :meth:`Guild.prune_members`." + +msgid "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." +msgstr "|commands| Fix :attr:`.Command.invoked_subcommand` being invalid in many cases." + +msgid "|tasks| Reset iteration count when the loop terminates and is restarted." +msgstr "|tasks| Reset iteration count when the loop terminates and is restarted." + +msgid "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" +msgstr "|tasks| The decorator interface now works as expected when stacking (:dpy-issue:`2154`)" + +msgid "Improve performance of all Enum related code significantly." +msgstr "Improve performance of all Enum related code significantly." + +msgid "This was done by replacing the ``enum.Enum`` code with an API compatible one." +msgstr "This was done by replacing the ``enum.Enum`` code with an API compatible one." + +msgid "This should not be a breaking change for most users due to duck-typing." +msgstr "This should not be a breaking change for most users due to duck-typing." + +msgid "Improve performance of message creation by about 1.5x." +msgstr "Improve performance of message creation by about 1.5x." + +msgid "Improve performance of message editing by about 1.5-4x depending on payload size." +msgstr "Improve performance of message editing by about 1.5-4x depending on payload size." + +msgid "Improve performance of attribute access on :class:`Member` about by 2x." +msgstr "Improve performance of attribute access on :class:`Member` about by 2x." + +msgid "Improve performance of :func:`utils.get` by around 4-6x depending on usage." +msgstr "Improve performance of :func:`utils.get` by around 4-6x depending on usage." + +msgid "Improve performance of event parsing lookup by around 2.5x." +msgstr "Improve performance of event parsing lookup by around 2.5x." + +msgid "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" +msgstr "Keyword arguments in :meth:`Client.start` and :meth:`Client.run` are now validated (:dpy-issue:`953`, :dpy-issue:`2170`)" + +msgid "The Discord error code is now shown in the exception message for :exc:`HTTPException`." +msgstr "The Discord error code is now shown in the exception message for :exc:`HTTPException`." + +msgid "Internal tasks launched by the library will now have their own custom ``__repr__``." +msgstr "Internal tasks launched by the library will now have their own custom ``__repr__``." + +msgid "All public facing types should now have a proper and more detailed ``__repr__``." +msgstr "All public facing types should now have a proper and more detailed ``__repr__``." + +msgid "|tasks| Errors are now logged via the standard :mod:`py:logging` module." +msgstr "|tasks| Errors are now logged via the standard :mod:`py:logging` module." + +msgid "v1.1.1" +msgstr "v1.1.1" + +msgid "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" +msgstr "Webhooks do not overwrite data on retrying their HTTP requests (:dpy-issue:`2140`)" + +msgid "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." +msgstr "Add back signal handling to :meth:`Client.run` due to issues some users had with proper cleanup." + +msgid "v1.1.0" +msgstr "v1.1.0" + +msgid "**There is a new extension dedicated to making background tasks easier.**" +msgstr "**There is a new extension dedicated to making background tasks easier.**" + +msgid "You can check the documentation here: :ref:`ext_tasks_api`." +msgstr "You can check the documentation here: :ref:`ext_tasks_api`." + +msgid "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" +msgstr "Add :attr:`Permissions.stream` permission. (:dpy-issue:`2077`)" + +msgid "Add equality comparison and hash support to :class:`Asset`" +msgstr "Add equality comparison and hash support to :class:`Asset`" + +msgid "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" +msgstr "Add ``compute_prune_members`` parameter to :meth:`Guild.prune_members` (:dpy-issue:`2085`)" + +msgid "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" +msgstr "Add :attr:`Client.cached_messages` attribute to fetch the message cache (:dpy-issue:`2086`)" + +msgid "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" +msgstr "Add :meth:`abc.GuildChannel.clone` to clone a guild channel. (:dpy-issue:`2093`)" + +msgid "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" +msgstr "Add ``delay`` keyword-only argument to :meth:`Message.delete` (:dpy-issue:`2094`)" + +msgid "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" +msgstr "Add support for ``<:name:id>`` when adding reactions (:dpy-issue:`2095`)" + +msgid "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" +msgstr "Add :meth:`Asset.read` to fetch the bytes content of an asset (:dpy-issue:`2107`)" + +msgid "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" +msgstr "Add :meth:`Attachment.read` to fetch the bytes content of an attachment (:dpy-issue:`2118`)" + +msgid "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." +msgstr "Add support for voice kicking by passing ``None`` to :meth:`Member.move_to`." + +msgid "``discord.ext.commands``" +msgstr "``discord.ext.commands``" + +msgid "Add new :func:`~.commands.dm_only` check." +msgstr "Add new :func:`~.commands.dm_only` check." + +msgid "Support callable converters in :data:`~.commands.Greedy`" +msgstr "Support callable converters in :data:`~.commands.Greedy`" + +msgid "Add new :class:`~.commands.MessageConverter`." +msgstr "Add new :class:`~.commands.MessageConverter`." + +msgid "This allows you to use :class:`Message` as a type hint in functions." +msgstr "This allows you to use :class:`Message` as a type hint in functions." + +msgid "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" +msgstr "Allow passing ``cls`` in the :func:`~.commands.group` decorator (:dpy-issue:`2061`)" + +msgid "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" +msgstr "Add :attr:`.Command.parents` to fetch the parents of a command (:dpy-issue:`2104`)" + +msgid "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." +msgstr "Fix :exc:`AttributeError` when using ``__repr__`` on :class:`Widget`." + +msgid "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." +msgstr "Fix issue with :attr:`abc.GuildChannel.overwrites` returning ``None`` for keys." + +msgid "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." +msgstr "Remove incorrect legacy NSFW checks in e.g. :meth:`TextChannel.is_nsfw`." + +msgid "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." +msgstr "Fix :exc:`UnboundLocalError` when :class:`RequestsWebhookAdapter` raises an error." + +msgid "Fix bug where updating your own user did not update your member instances." +msgstr "Fix bug where updating your own user did not update your member instances." + +msgid "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" +msgstr "Tighten constraints of ``__eq__`` in :class:`Spotify` objects (:dpy-issue:`2113`, :dpy-issue:`2117`)" + +msgid "Fix lambda converters in a non-module context (e.g. ``eval``)." +msgstr "Fix lambda converters in a non-module context (e.g. ``eval``)." + +msgid "Use message creation time for reference time when computing cooldowns." +msgstr "Use message creation time for reference time when computing cooldowns." + +msgid "This prevents cooldowns from triggering during e.g. a RESUME session." +msgstr "This prevents cooldowns from triggering during e.g. a RESUME session." + +msgid "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" +msgstr "Fix the default :func:`on_command_error` to work with new-style cogs (:dpy-issue:`2094`)" + +msgid "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." +msgstr "DM channels are now recognised as NSFW in :func:`~.commands.is_nsfw` check." + +msgid "Fix race condition with help commands (:dpy-issue:`2123`)" +msgstr "Fix race condition with help commands (:dpy-issue:`2123`)" + +msgid "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" +msgstr "Fix cog descriptions not showing in :class:`~.commands.MinimalHelpCommand` (:dpy-issue:`2139`)" + +msgid "Improve the performance of internal enum creation in the library by about 5x." +msgstr "Improve the performance of internal enum creation in the library by about 5x." + +msgid "Make the output of ``python -m discord --version`` a bit more useful." +msgstr "Make the output of ``python -m discord --version`` a bit more useful." + +msgid "The loop cleanup facility has been rewritten again." +msgstr "The loop cleanup facility has been rewritten again." + +msgid "The signal handling in :meth:`Client.run` has been removed." +msgstr "The signal handling in :meth:`Client.run` has been removed." + +msgid "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" +msgstr "Custom exception classes are now used for all default checks in the library (:dpy-issue:`2101`)" + +msgid "v1.0.1" +msgstr "v1.0.1" + +msgid "Fix issue with speaking state being cast to ``int`` when it was invalid." +msgstr "Fix issue with speaking state being cast to ``int`` when it was invalid." + +msgid "Fix some issues with loop cleanup that some users experienced on Linux machines." +msgstr "Fix some issues with loop cleanup that some users experienced on Linux machines." + +msgid "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" +msgstr "Fix voice handshake race condition (:dpy-issue:`2056`, :dpy-issue:`2063`)" + +msgid "v1.0.0" +msgstr "v1.0.0" + +msgid "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." +msgstr "The changeset for this version are too big to be listed here, for more information please see :ref:`the migrating page `." + +msgid "v0.16.6" +msgstr "v0.16.6" + +msgid "Fix issue with :meth:`Client.create_server` that made it stop working." +msgstr "Fix issue with :meth:`Client.create_server` that made it stop working." + +msgid "Fix main thread being blocked upon calling ``StreamPlayer.stop``." +msgstr "Fix main thread being blocked upon calling ``StreamPlayer.stop``." + +msgid "Handle HEARTBEAT_ACK and resume gracefully when it occurs." +msgstr "Handle HEARTBEAT_ACK and resume gracefully when it occurs." + +msgid "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." +msgstr "Fix race condition when pre-emptively rate limiting that caused releasing an already released lock." + +msgid "Fix invalid state errors when immediately cancelling a coroutine." +msgstr "Fix invalid state errors when immediately cancelling a coroutine." + +msgid "v0.16.1" +msgstr "v0.16.1" + +msgid "This release is just a bug fix release with some better rate limit implementation." +msgstr "This release is just a bug fix release with some better rate limit implementation." + +msgid "Servers are now properly chunked for user bots." +msgstr "Servers are now properly chunked for user bots." + +msgid "The CDN URL is now used instead of the API URL for assets." +msgstr "The CDN URL is now used instead of the API URL for assets." + +msgid "Rate limit implementation now tries to use header information if possible." +msgstr "Rate limit implementation now tries to use header information if possible." + +msgid "Event loop is now properly propagated (:dpy-issue:`420`)" +msgstr "Event loop is now properly propagated (:dpy-issue:`420`)" + +msgid "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." +msgstr "Allow falsey values in :meth:`Client.send_message` and :meth:`Client.send_file`." + +msgid "v0.16.0" +msgstr "v0.16.0" + +msgid "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." +msgstr "Add :attr:`Channel.overwrites` to get all the permission overwrites of a channel." + +msgid "Add :attr:`Server.features` to get information about partnered servers." +msgstr "Add :attr:`Server.features` to get information about partnered servers." + +msgid "Timeout when waiting for offline members while triggering :func:`on_ready`." +msgstr "Timeout when waiting for offline members while triggering :func:`on_ready`." + +msgid "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." +msgstr "The fact that we did not timeout caused a gigantic memory leak in the library that caused thousands of duplicate :class:`Member` instances causing big memory spikes." + +msgid "Discard null sequences in the gateway." +msgstr "Discard null sequences in the gateway." + +msgid "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." +msgstr "The fact these were not discarded meant that :func:`on_ready` kept being called instead of :func:`on_resumed`. Since this has been corrected, in most cases :func:`on_ready` will be called once or twice with :func:`on_resumed` being called much more often." + +msgid "v0.15.1" +msgstr "v0.15.1" + +msgid "Fix crash on duplicate or out of order reactions." +msgstr "Fix crash on duplicate or out of order reactions." + +msgid "v0.15.0" +msgstr "v0.15.0" + +msgid "Rich Embeds for messages are now supported." +msgstr "Rich Embeds for messages are now supported." + +msgid "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." +msgstr "To do so, create your own :class:`Embed` and pass the instance to the ``embed`` keyword argument to :meth:`Client.send_message` or :meth:`Client.edit_message`." + +msgid "Add :meth:`Client.clear_reactions` to remove all reactions from a message." +msgstr "Add :meth:`Client.clear_reactions` to remove all reactions from a message." + +msgid "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." +msgstr "Add support for MESSAGE_REACTION_REMOVE_ALL event, under :func:`on_reaction_clear`." + +msgid "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." +msgstr "Add :meth:`Permissions.update` and :meth:`PermissionOverwrite.update` for bulk permission updates." + +msgid "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." +msgstr "This allows you to use e.g. ``p.update(read_messages=True, send_messages=False)`` in a single line." + +msgid "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." +msgstr "Add :meth:`PermissionOverwrite.is_empty` to check if the overwrite is empty (i.e. has no overwrites set explicitly as true or false)." + +msgid "For the command extension, the following changed:" +msgstr "For the command extension, the following changed:" + +msgid "``Context`` is no longer slotted to facilitate setting dynamic attributes." +msgstr "``Context`` is no longer slotted to facilitate setting dynamic attributes." + +msgid "v0.14.3" +msgstr "v0.14.3" + +msgid "Fix crash when dealing with MESSAGE_REACTION_REMOVE" +msgstr "Fix crash when dealing with MESSAGE_REACTION_REMOVE" + +msgid "Fix incorrect buckets for reactions." +msgstr "Fix incorrect buckets for reactions." + +msgid "v0.14.2" +msgstr "v0.14.2" + +msgid ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." +msgstr ":meth:`Client.wait_for_reaction` now returns a namedtuple with ``reaction`` and ``user`` attributes." + +msgid "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." +msgstr "This is for better support in the case that ``None`` is returned since tuple unpacking can lead to issues." + +msgid "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." +msgstr "Fix bug that disallowed ``None`` to be passed for ``emoji`` parameter in :meth:`Client.wait_for_reaction`." + +msgid "v0.14.1" +msgstr "v0.14.1" + +msgid "Bug fixes" +msgstr "Bug fixes" + +msgid "Fix bug with `Reaction` not being visible at import." +msgstr "Fix bug with `Reaction` not being visible at import." + +msgid "This was also breaking the documentation." +msgstr "This was also breaking the documentation." + +msgid "v0.14.0" +msgstr "v0.14.0" + +msgid "This update adds new API features and a couple of bug fixes." +msgstr "This update adds new API features and a couple of bug fixes." + +msgid "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" +msgstr "Add support for Manage Webhooks permission under :attr:`Permissions.manage_webhooks`" + +msgid "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." +msgstr "Add support for ``around`` argument in 3.5+ :meth:`Client.logs_from`." + +msgid "Add support for reactions." +msgstr "Add support for reactions." + +msgid ":meth:`Client.add_reaction` to add a reactions" +msgstr ":meth:`Client.add_reaction` to add a reactions" + +msgid ":meth:`Client.remove_reaction` to remove a reaction." +msgstr ":meth:`Client.remove_reaction` to remove a reaction." + +msgid ":meth:`Client.get_reaction_users` to get the users that reacted to a message." +msgstr ":meth:`Client.get_reaction_users` to get the users that reacted to a message." + +msgid ":attr:`Permissions.add_reactions` permission bit support." +msgstr ":attr:`Permissions.add_reactions` permission bit support." + +msgid "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." +msgstr "Two new events, :func:`on_reaction_add` and :func:`on_reaction_remove`." + +msgid ":attr:`Message.reactions` to get reactions from a message." +msgstr ":attr:`Message.reactions` to get reactions from a message." + +msgid ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." +msgstr ":meth:`Client.wait_for_reaction` to wait for a reaction from a user." + +msgid "Fix bug with Paginator still allowing lines that are too long." +msgstr "Fix bug with Paginator still allowing lines that are too long." + +msgid "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." +msgstr "Fix the :attr:`Permissions.manage_emojis` bit being incorrect." + +msgid "v0.13.0" +msgstr "v0.13.0" + +msgid "This is a backwards compatible update with new features." +msgstr "This is a backwards compatible update with new features." + +msgid "Add the ability to manage emojis." +msgstr "Add the ability to manage emojis." + +msgid ":meth:`Client.create_custom_emoji` to create new emoji." +msgstr ":meth:`Client.create_custom_emoji` to create new emoji." + +msgid ":meth:`Client.edit_custom_emoji` to edit an old emoji." +msgstr ":meth:`Client.edit_custom_emoji` to edit an old emoji." + +msgid ":meth:`Client.delete_custom_emoji` to delete a custom emoji." +msgstr ":meth:`Client.delete_custom_emoji` to delete a custom emoji." + +msgid "Add new :attr:`Permissions.manage_emojis` toggle." +msgstr "Add new :attr:`Permissions.manage_emojis` toggle." + +msgid "This applies for :class:`PermissionOverwrite` as well." +msgstr "This applies for :class:`PermissionOverwrite` as well." + +msgid "Add new statuses for :class:`Status`." +msgstr "Add new statuses for :class:`Status`." + +msgid ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." +msgstr ":attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\\) for Do Not Disturb." + +msgid ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." +msgstr ":attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat)." + +msgid "Deprecate :meth:`Client.change_status`" +msgstr "Deprecate :meth:`Client.change_status`" + +msgid "Use :meth:`Client.change_presence` instead for better more up to date functionality." +msgstr "Use :meth:`Client.change_presence` instead for better more up to date functionality." + +msgid "This method is subject for removal in a future API version." +msgstr "This method is subject for removal in a future API version." + +msgid "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." +msgstr "Add :meth:`Client.change_presence` for changing your status with the new Discord API change." + +msgid "This is the only method that allows changing your status to invisible or do not disturb." +msgstr "This is the only method that allows changing your status to invisible or do not disturb." + +msgid "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" +msgstr "Paginator pages do not exceed their max_size anymore (:dpy-issue:`340`)" + +msgid "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." +msgstr "Do Not Disturb users no longer show up offline due to the new :class:`Status` changes." + +msgid "v0.12.0" +msgstr "v0.12.0" + +msgid "This is a bug fix update that also comes with new features." +msgstr "This is a bug fix update that also comes with new features." + +msgid "Add custom emoji support." +msgstr "Add custom emoji support." + +msgid "Adds a new class to represent a custom Emoji named :class:`Emoji`" +msgstr "Adds a new class to represent a custom Emoji named :class:`Emoji`" + +msgid "Adds a utility generator function, :meth:`Client.get_all_emojis`." +msgstr "Adds a utility generator function, :meth:`Client.get_all_emojis`." + +msgid "Adds a list of emojis on a server, :attr:`Server.emojis`." +msgstr "Adds a list of emojis on a server, :attr:`Server.emojis`." + +msgid "Adds a new event, :func:`on_server_emojis_update`." +msgstr "Adds a new event, :func:`on_server_emojis_update`." + +msgid "Add new server regions to :class:`ServerRegion`" +msgstr "Add new server regions to :class:`ServerRegion`" + +msgid ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." +msgstr ":attr:`ServerRegion.eu_central` and :attr:`ServerRegion.eu_west`." + +msgid "Add support for new pinned system message under :attr:`MessageType.pins_add`." +msgstr "Add support for new pinned system message under :attr:`MessageType.pins_add`." + +msgid "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." +msgstr "Add order comparisons for :class:`Role` to allow it to be compared with regards to hierarchy." + +msgid "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." +msgstr "This means that you can now do ``role_a > role_b`` etc to check if ``role_b`` is lower in the hierarchy." + +msgid "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." +msgstr "Add :attr:`Server.role_hierarchy` to get the server's role hierarchy." + +msgid "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." +msgstr "Add :attr:`Member.server_permissions` to get a member's server permissions without their channel specific overwrites." + +msgid "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." +msgstr "Add :meth:`Client.get_user_info` to retrieve a user's info from their ID." + +msgid "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." +msgstr "Add a new ``Player`` property, ``Player.error`` to fetch the error that stopped the player." + +msgid "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." +msgstr "To help with this change, a player's ``after`` function can now take a single parameter denoting the current player." + +msgid "Add support for server verification levels." +msgstr "Add support for server verification levels." + +msgid "Adds a new enum called :class:`VerificationLevel`." +msgstr "Adds a new enum called :class:`VerificationLevel`." + +msgid "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." +msgstr "This enum can be used in :meth:`Client.edit_server` under the ``verification_level`` keyword argument." + +msgid "Adds a new attribute in the server, :attr:`Server.verification_level`." +msgstr "Adds a new attribute in the server, :attr:`Server.verification_level`." + +msgid "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." +msgstr "Add :attr:`Server.voice_client` shortcut property for :meth:`Client.voice_client_in`." + +msgid "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." +msgstr "This is technically old (was added in v0.10.0) but was undocumented until v0.12.0." + +msgid "For the command extension, the following are new:" +msgstr "For the command extension, the following are new:" + +msgid "Add custom emoji converter." +msgstr "Add custom emoji converter." + +msgid "All default converters that can take IDs can now convert via ID." +msgstr "All default converters that can take IDs can now convert via ID." + +msgid "Add coroutine support for ``Bot.command_prefix``." +msgstr "Add coroutine support for ``Bot.command_prefix``." + +msgid "Add a method to reset command cooldown." +msgstr "Add a method to reset command cooldown." + +msgid "Fix bug that caused the library to not work with the latest ``websockets`` library." +msgstr "Fix bug that caused the library to not work with the latest ``websockets`` library." + +msgid "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" +msgstr "Fix bug that leaked keep alive threads (:dpy-issue:`309`)" + +msgid "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." +msgstr "Fix bug that disallowed :class:`ServerRegion` from being used in :meth:`Client.edit_server`." + +msgid "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." +msgstr "Fix bug in :meth:`Channel.permissions_for` that caused permission resolution to happen out of order." + +msgid "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." +msgstr "Fix bug in :attr:`Member.top_role` that did not account for same-position roles." + +msgid "v0.11.0" +msgstr "v0.11.0" + +msgid "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." +msgstr "This is a minor bug fix update that comes with a gateway update (v5 -> v6)." + +msgid "Breaking Changes" +msgstr "Breaking Changes" + +msgid "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." +msgstr "``Permissions.change_nicknames`` has been renamed to :attr:`Permissions.change_nickname` to match the UI." + +msgid "Add the ability to prune members via :meth:`Client.prune_members`." +msgstr "Add the ability to prune members via :meth:`Client.prune_members`." + +msgid "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." +msgstr "Switch the websocket gateway version to v6 from v5. This allows the library to work with group DMs and 1-on-1 calls." + +msgid "Add :attr:`AppInfo.owner` attribute." +msgstr "Add :attr:`AppInfo.owner` attribute." + +msgid "Add :class:`CallMessage` for group voice call messages." +msgstr "Add :class:`CallMessage` for group voice call messages." + +msgid "Add :class:`GroupCall` for group voice call information." +msgstr "Add :class:`GroupCall` for group voice call information." + +msgid "Add :attr:`Message.system_content` to get the system message." +msgstr "Add :attr:`Message.system_content` to get the system message." + +msgid "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." +msgstr "Add the remaining VIP servers and the Brazil servers into :class:`ServerRegion` enum." + +msgid "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." +msgstr "Add ``stderr`` argument to :meth:`VoiceClient.create_ffmpeg_player` to redirect stderr." + +msgid "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." +msgstr "The library now handles implicit permission resolution in :meth:`Channel.permissions_for`." + +msgid "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." +msgstr "Add :attr:`Server.mfa_level` to query a server's 2FA requirement." + +msgid "Add :attr:`Permissions.external_emojis` permission." +msgstr "Add :attr:`Permissions.external_emojis` permission." + +msgid "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." +msgstr "Add :attr:`Member.voice` attribute that refers to a :class:`VoiceState`." + +msgid "For backwards compatibility, the member object will have properties mirroring the old behaviour." +msgstr "For backwards compatibility, the member object will have properties mirroring the old behaviour." + +msgid "Command cooldown system with the ``cooldown`` decorator." +msgstr "Command cooldown system with the ``cooldown`` decorator." + +msgid "``UserInputError`` exception for the hierarchy for user input related errors." +msgstr "``UserInputError`` exception for the hierarchy for user input related errors." + +msgid ":attr:`Client.email` is now saved when using a token for user accounts." +msgstr ":attr:`Client.email` is now saved when using a token for user accounts." + +msgid "Fix issue when removing roles out of order." +msgstr "Fix issue when removing roles out of order." + +msgid "Fix bug where discriminators would not update." +msgstr "Fix bug where discriminators would not update." + +msgid "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." +msgstr "Handle cases where ``HEARTBEAT`` opcode is received. This caused bots to disconnect seemingly randomly." + +msgid "For the command extension, the following bug fixes apply:" +msgstr "For the command extension, the following bug fixes apply:" + +msgid "``Bot.check`` decorator is actually a decorator not requiring parentheses." +msgstr "``Bot.check`` decorator is actually a decorator not requiring parentheses." + +msgid "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." +msgstr "``Bot.remove_command`` and ``Group.remove_command`` no longer throw if the command doesn't exist." + +msgid "Command names are no longer forced to be ``lower()``." +msgstr "Command names are no longer forced to be ``lower()``." + +msgid "Fix a bug where Member and User converters failed to work in private message contexts." +msgstr "Fix a bug where Member and User converters failed to work in private message contexts." + +msgid "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." +msgstr "``HelpFormatter`` now ignores hidden commands when deciding the maximum width." + +msgid "v0.10.0" +msgstr "v0.10.0" + +msgid "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." +msgstr "For breaking changes, see `0.10.0 migration `_. The breaking changes listed there will not be enumerated below. Since this version is rather a big departure from v0.9.2, this change log will be non-exhaustive." + +msgid "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." +msgstr "The library is now fully ``asyncio`` compatible, allowing you to write non-blocking code a lot more easily." + +msgid "The library now fully handles 429s and unconditionally retries on 502s." +msgstr "The library now fully handles 429s and unconditionally retries on 502s." + +msgid "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." +msgstr "A new command extension module was added but is currently undocumented. Figuring it out is left as an exercise to the reader." + +msgid "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." +msgstr "Two new exception types, :exc:`Forbidden` and :exc:`NotFound` to denote permission errors or 404 errors." + +msgid "Added :meth:`Client.delete_invite` to revoke invites." +msgstr "Added :meth:`Client.delete_invite` to revoke invites." + +msgid "Added support for sending voice. Check :class:`VoiceClient` for more details." +msgstr "Added support for sending voice. Check :class:`VoiceClient` for more details." + +msgid "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." +msgstr "Added :meth:`Client.wait_for_message` coroutine to aid with follow up commands." + +msgid "Added :data:`version_info` named tuple to check version info of the library." +msgstr "Added :data:`version_info` named tuple to check version info of the library." + +msgid "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." +msgstr "Login credentials are now cached to have a faster login experience. You can disable this by passing in ``cache_auth=False`` when constructing a :class:`Client`." + +msgid "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." +msgstr "New utility function, :func:`discord.utils.get` to simplify retrieval of items based on attributes." + +msgid "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." +msgstr "All data classes now support ``!=``, ``==``, ``hash(obj)`` and ``str(obj)``." + +msgid "Added :meth:`Client.get_bans` to get banned members from a server." +msgstr "Added :meth:`Client.get_bans` to get banned members from a server." + +msgid "Added :meth:`Client.invites_from` to get currently active invites in a server." +msgstr "Added :meth:`Client.invites_from` to get currently active invites in a server." + +msgid "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." +msgstr "Added :attr:`Server.me` attribute to get the :class:`Member` version of :attr:`Client.user`." + +msgid "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." +msgstr "Most data classes now support a ``hash(obj)`` function to allow you to use them in ``set`` or ``dict`` classes or subclasses." + +msgid "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." +msgstr "Add :meth:`Message.clean_content` to get a text version of the content with the user and channel mentioned changed into their names." + +msgid "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." +msgstr "Added a way to remove the messages of the user that just got banned in :meth:`Client.ban`." + +msgid "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." +msgstr "Added :meth:`Client.wait_until_ready` to facilitate easy creation of tasks that require the client cache to be ready." + +msgid "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." +msgstr "Added :meth:`Client.wait_until_login` to facilitate easy creation of tasks that require the client to be logged in." + +msgid "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." +msgstr "Add :class:`discord.Game` to represent any game with custom text to send to :meth:`Client.change_status`." + +msgid "Add :attr:`Message.nonce` attribute." +msgstr "Add :attr:`Message.nonce` attribute." + +msgid "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." +msgstr "Add :meth:`Member.permissions_in` as another way of doing :meth:`Channel.permissions_for`." + +msgid "Add :meth:`Client.move_member` to move a member to another voice channel." +msgstr "Add :meth:`Client.move_member` to move a member to another voice channel." + +msgid "You can now create a server via :meth:`Client.create_server`." +msgstr "You can now create a server via :meth:`Client.create_server`." + +msgid "Added :meth:`Client.edit_server` to edit existing servers." +msgstr "Added :meth:`Client.edit_server` to edit existing servers." + +msgid "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." +msgstr "Added :meth:`Client.server_voice_state` to server mute or server deafen a member." + +msgid "If you are being rate limited, the library will now handle it for you." +msgstr "If you are being rate limited, the library will now handle it for you." + +msgid "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." +msgstr "Add :func:`on_member_ban` and :func:`on_member_unban` events that trigger when a member is banned/unbanned." + +msgid "Performance Improvements" +msgstr "Performance Improvements" + +msgid "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." +msgstr "All data classes now use ``__slots__`` which greatly reduce the memory usage of things kept in cache." + +msgid "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." +msgstr "Due to the usage of ``asyncio``, the CPU usage of the library has gone down significantly." + +msgid "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." +msgstr "A lot of the internal cache lists were changed into dictionaries to change the ``O(n)`` lookup into ``O(1)``." + +msgid "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." +msgstr "Compressed READY is now on by default. This means if you're on a lot of servers (or maybe even a few) you would receive performance improvements by having to download and process less data." + +msgid "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." +msgstr "While minor, change regex from ``\\d+`` to ``[0-9]+`` to avoid unnecessary unicode character lookups." + +msgid "Fix bug where guilds being updated did not edit the items in cache." +msgstr "Fix bug where guilds being updated did not edit the items in cache." + +msgid "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." +msgstr "Fix bug where ``member.roles`` were empty upon joining instead of having the ``@everyone`` role." + +msgid "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." +msgstr "Fix bug where :meth:`Role.is_everyone` was not being set properly when the role was being edited." + +msgid ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." +msgstr ":meth:`Client.logs_from` now handles cases where limit > 100 to sidestep the discord API limitation." + +msgid "Fix bug where a role being deleted would trigger a ``ValueError``." +msgstr "Fix bug where a role being deleted would trigger a ``ValueError``." + +msgid "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." +msgstr "Fix bug where :meth:`Permissions.kick_members` and :meth:`Permissions.ban_members` were flipped." + +msgid "Mentions are now triggered normally. This was changed due to the way discord handles it internally." +msgstr "Mentions are now triggered normally. This was changed due to the way discord handles it internally." + +msgid "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." +msgstr "Fix issue when a :class:`Message` would attempt to upgrade a :attr:`Message.server` when the channel is a :class:`Object`." + +msgid "Unavailable servers were not being added into cache, this has been corrected." +msgstr "Unavailable servers were not being added into cache, this has been corrected." + diff --git a/docs/locales/zh/LC_MESSAGES/quickstart.po b/docs/locales/zh/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..018b5372f2 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Quickstart" + +msgid "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." +msgstr "This page gives a brief introduction to the library. It assumes you have the library installed. If you don't, check the :ref:`installing` portion." + +msgid "A Minimal Bot" +msgstr "A Minimal Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Let's make a bot that responds to a specific message and walk you through it." + +msgid "It looks something like this:" +msgstr "It looks something like this:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." + +msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." +msgstr "Let's name this file ``example_bot.py``. Make sure not to name it ``discord.py`` as that'll conflict with the library." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "There's a lot going on here, so let's walk you through it step by step:" + +msgid "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." +msgstr "The first line just imports the library, if this raises a `ModuleNotFoundError` or `ImportError` then head on over to :ref:`installing` section to properly install." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." + +msgid "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." +msgstr "We then use the :meth:`Client.event` decorator to register an event. This library has many events. Since this library is asynchronous, we do things in a \"callback\" style manner." + +msgid "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." +msgstr "A callback is essentially a function that is called when something happens. In our case, the :func:`on_ready` event is called when the bot has finished logging in and setting things up and the :func:`on_message` event is called when the bot has received a message." + +msgid "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." +msgstr "Since the :func:`on_message` event triggers for *every* message received, we have to make sure that we ignore messages from ourselves. We do this by checking if the :attr:`Message.author` is the same as the :attr:`Client.user`." + +msgid "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." +msgstr "Afterwards, we check if the :class:`Message.content` starts with ``'$hello'``. If it does, then we send a message in the channel it was used in with ``'Hello!'``. This is a basic way of handling commands, which can be later automated with the :doc:`./ext/commands/index` framework." + +msgid "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." +msgstr "Finally, we run the bot with our login token. If you need help getting your token or creating a bot, look in the :ref:`discord-intro` section." + +msgid "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." +msgstr "Now that we've made a bot, we have to *run* the bot. Luckily, this is simple since this is just a Python script, we can run it directly." + +msgid "On Windows:" +msgstr "On Windows:" + +msgid "On other systems:" +msgstr "On other systems:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Now you can try playing around with your basic bot." + +msgid "A Minimal Bot with Slash Commands" +msgstr "A Minimal Bot with Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "As a continuation, let's create a bot that registers a simple slash command!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Let's look at the differences compared to the previous example, step-by-step:" + +msgid "The first line remains unchanged." +msgstr "The first line remains unchanged." + +msgid "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." +msgstr "Next, we create an instance of :class:`.Bot`. This is different from :class:`.Client`, as it supports slash command creation and other features, while inheriting all the features of :class:`.Client`." + +msgid "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." +msgstr "We then use the :meth:`.Bot.slash_command` decorator to register a new slash command. The ``guild_ids`` attribute contains a list of guilds where this command will be active. If you omit it, the command will be globally available, and may take up to an hour to register." + +msgid "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." +msgstr "Afterwards, we trigger a response to the slash command in the form of a text reply. Please note that all slash commands must have some form of response, otherwise they will fail." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Finally, we, once again, run the bot with our login token." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Congratulations! Now you have created your first slash command!" + diff --git a/docs/locales/zh/LC_MESSAGES/version_guarantees.po b/docs/locales/zh/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..d4ec0cb270 --- /dev/null +++ b/docs/locales/zh/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=1; plural=0;\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Guarantees" +msgstr "版本保证" + +msgid "The library follows the `semantic versioning principle `_ which means that the major version is updated every time there is an incompatible API change. However due to the lack of guarantees on the Discord side when it comes to breaking changes along with the fairly dynamic nature of Python it can be hard to discern what can be considered a breaking change and what isn't." +msgstr "书库遵循`语义版本化原则 `_ ,这意味着每次有不兼容的 API 更改时,主要版本都会更新。 然而,由于Discord方面缺乏保障,加上Python相当活跃的性质,很难看出什么可以被视为是一种突破性的变化,什么是什么是没有的。" + +msgid "The first thing to keep in mind is that breaking changes only apply to **publicly documented functions and classes**. If it's not listed in the documentation here then it is not part of the public API and is thus bound to change. This includes attributes that start with an underscore or functions without an underscore that are not documented." +msgstr "首先要牢记的是,破裂的更改只适用于**公开记载的函数和类**。 如果它没有列在文档中,那么它不是公共API的一部分,因此必然会改变。 这包括以下划线开头的属性或没有文件记录的下划线的函数。" + +msgid "The examples below are non-exhaustive." +msgstr "以下例子并非详尽无遗。" + +msgid "Examples of Breaking Changes" +msgstr "打破更改的例子" + +msgid "Changing the default parameter value to something else." +msgstr "更改默认参数值为其他值。" + +msgid "Renaming a function without an alias to an old function." +msgstr "将一个没有别名的函数重命名为旧函数。" + +msgid "Adding or removing parameters to an event." +msgstr "添加或删除参数到一个事件。" + +msgid "Examples of Non-Breaking Changes" +msgstr "不打破更改的例子" + +msgid "Adding or removing private underscored attributes." +msgstr "添加或删除私有强调属性。" + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Adding an element into the ``__slots__`` of a data class." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "更改函数的行为以修复漏洞。" + +msgid "Changes in the documentation." +msgstr "5. 文件的更改。" + +msgid "Modifying the internal HTTP handling." +msgstr "修改内部HTTP处理程序。" + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "升级依赖关系到一个新版本,主要或其他版本。" + diff --git a/docs/make.bat b/docs/make.bat index aedd246e52..cc9a036a79 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -5,7 +5,7 @@ REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) -set BUILDDIR=_build +set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( diff --git a/requirements/_locale.txt b/requirements/_locale.txt new file mode 100644 index 0000000000..3f7eae7305 --- /dev/null +++ b/requirements/_locale.txt @@ -0,0 +1,2 @@ +-r all.txt +build==1.2.1 diff --git a/requirements/docs.txt b/requirements/docs.txt index d309bbdf31..82431eb83e 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,8 +1,10 @@ -sphinx==5.3.0 +sphinx==8.0.2 sphinxcontrib_trio==1.1.2 -sphinxcontrib-websupport==1.2.4 -myst-parser==1.0.0 +sphinxcontrib-websupport==2.0.0 +myst-parser[linkify]==4.0.0 sphinxext-opengraph==0.9.1 sphinx-copybutton==0.5.2 -furo==2023.3.23 -sphinx-autodoc-typehints==1.23.0 +furo==2024.8.6 +sphinx-autodoc-typehints==2.2.3 +sphinx-intl==2.2.0 +typing_extensions==4.12.2